Internal
problem
ID
[17854]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
60
(page
103)
Date
solved
:
Thursday, March 13, 2025 at 11:01:06 AM
CAS
classification
:
[_linear]
ode:=diff(y(x),x) = 2*x*y(x)-x^3+x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==2*x*y[x]-x^3+x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**3 - 2*x*y(x) - x + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)