Internal
problem
ID
[12234]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
939
Date
solved
:
Wednesday, October 01, 2025 at 01:16:10 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _rational, [_Abel, `2nd type`, `class C`]]
ode:=diff(y(x),x) = (-32*x*y(x)+16*x^3+16*x^2-32*x-64*y(x)^3+48*x^2*y(x)^2+96*x*y(x)^2-12*y(x)*x^4-48*x^3*y(x)-48*x^2*y(x)+x^6+6*x^5+12*x^4)/(-64*y(x)+16*x^2+32*x-64); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (-32*x + 16*x^2 + 16*x^3 + 12*x^4 + 6*x^5 + x^6 - 32*x*y[x] - 48*x^2*y[x] - 48*x^3*y[x] - 12*x^4*y[x] + 96*x*y[x]^2 + 48*x^2*y[x]^2 - 64*y[x]^3)/(-64 + 32*x + 16*x^2 - 64*y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (x**6 + 6*x**5 - 12*x**4*y(x) + 12*x**4 - 48*x**3*y(x) + 16*x**3 + 48*x**2*y(x)**2 - 48*x**2*y(x) + 16*x**2 + 96*x*y(x)**2 - 32*x*y(x) - 32*x - 64*y(x)**3)/(16*x**2 + 32*x - 64*y(x) - 64),0) ics = {} dsolve(ode,func=y(x),ics=ics)