Internal
problem
ID
[12243]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
948
Date
solved
:
Wednesday, October 01, 2025 at 01:21:36 AM
CAS
classification
:
[_rational]
ode:=diff(y(x),x) = -216*y(x)/(-216*y(x)^4-252*y(x)^3-396*y(x)^2-216*y(x)+36*x^2-72*x*y(x)+60*y(x)^5-36*x*y(x)^3-72*x*y(x)^2-24*x*y(x)^4+4*y(x)^8+12*y(x)^7+33*y(x)^6); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (-216*y[x])/(36*x^2 - 216*y[x] - 72*x*y[x] - 396*y[x]^2 - 72*x*y[x]^2 - 252*y[x]^3 - 36*x*y[x]^3 - 216*y[x]^4 - 24*x*y[x]^4 + 60*y[x]^5 + 33*y[x]^6 + 12*y[x]^7 + 4*y[x]^8); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) + 216*y(x)/(36*x**2 - 24*x*y(x)**4 - 36*x*y(x)**3 - 72*x*y(x)**2 - 72*x*y(x) + 4*y(x)**8 + 12*y(x)**7 + 33*y(x)**6 + 60*y(x)**5 - 216*y(x)**4 - 252*y(x)**3 - 396*y(x)**2 - 216*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - 216*y(x)/(-36*x**2 + 24*x*y(x)**4 + 36*x*y(x)**3 + 72*x*y(x)**2 + 72*x*y(x) - 4*y(x)**8 - 12*y(x)**7 - 33*y(x)**6 - 60*y(x)**5 + 216*y(x)**4 + 252*y(x)**3 + 396*y(x)**2 + 216*y(x)) cannot be solved by the factorable group method