Internal
problem
ID
[2927]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
8,
page
34
Problem
number
:
15
Date
solved
:
Tuesday, September 30, 2025 at 06:08:37 AM
CAS
classification
:
[[_homogeneous, `class G`], _exact, _rational, [_Abel, `2nd type`, `class B`]]
ode:=y(x)*(2+x^3*y(x))/x^3 = (1-2*x^3*y(x))/x^2*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=y[x]*(2+x^3*y[x])/x^3==(1-2*x^3*y[x])/x^2*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2*x**3*y(x) - 1)*Derivative(y(x), x)/x**2 + (x**3*y(x) + 2)*y(x)/x**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)