Internal
problem
ID
[13283]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
Miscellaneous
Review.
Exercises
page
60
Problem
number
:
12
Date
solved
:
Wednesday, March 05, 2025 at 09:33:32 PM
CAS
classification
:
[_separable]
ode:=x^2*diff(y(x),x)+x*y(x) = x*y(x)^3; dsolve(ode,y(x), singsol=all);
ode=x^2*D[y[x],x]+x*y[x]==x*y[x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*Derivative(y(x), x) - x*y(x)**3 + x*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)