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