Internal
problem
ID
[17834]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
39
(page
41)
Date
solved
:
Thursday, March 13, 2025 at 10:58:48 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=diff(y(x),x)*(x^2*y(x)^3+x*y(x)) = 1; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*(x^2*y[x]^3+x*y[x])==1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x**2*y(x)**3 + x*y(x))*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)