Internal
problem
ID
[10914]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
918
Date
solved
:
Sunday, March 30, 2025 at 07:22:49 PM
CAS
classification
:
[_rational]
ode:=diff(y(x),x) = 2*y(x)^8/(y(x)^5+2*y(x)^6+2*y(x)^2+16*y(x)^4*x+32*y(x)^6*x^2+2+24*x*y(x)^2+96*x^2*y(x)^4+128*x^3*y(x)^6); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (2*y[x]^8)/(2 + 2*y[x]^2 + 24*x*y[x]^2 + 16*x*y[x]^4 + 96*x^2*y[x]^4 + y[x]^5 + 2*y[x]^6 + 32*x^2*y[x]^6 + 128*x^3*y[x]^6); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 2*y(x)**8/(128*x**3*y(x)**6 + 32*x**2*y(x)**6 + 96*x**2*y(x)**4 + 16*x*y(x)**4 + 24*x*y(x)**2 + 2*y(x)**6 + y(x)**5 + 2*y(x)**2 + 2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out