Internal
problem
ID
[19209]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
50
(page
56)
Date
solved
:
Thursday, October 02, 2025 at 03:43:45 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(x),x) = k*y(x)+f(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==k*y[x]+f[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(-k*y(x) - f(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)