Internal
problem
ID
[12056]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
759
Date
solved
:
Sunday, October 12, 2025 at 02:15:00 AM
CAS
classification
:
[_rational]
ode:=diff(y(x),x) = -1/243*I*(54*I*x^2+81*y(x)^4+18*x^4*y(x)^2+x^8)*x/y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == ((-1/243*I)*x*((54*I)*x^2 + x^8 + 18*x^4*y[x]^2 + 81*y[x]^4))/y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*(x**8 + 18*x**4*y(x)**2 + x**2*complex(0, 54) + 81*y(x)**4)*complex(0, 1/243)/y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -x*(-x**8 - 18*x**4*y(x)**2 - x**2*complex(0, 54) - 81*y(x)**4)*complex(0, 1/243)/y(x) + Derivative(y(x), x) cannot be solved by the factorable group method