Internal
problem
ID
[10925]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
929
Date
solved
:
Sunday, March 30, 2025 at 07:23:51 PM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class C`]]
ode:=diff(y(x),x) = -1/32/y(x)*(16*x*y(x)^3-8*y(x)^3-8*y(x)+8*x*y(x)^2-2*x^2*y(x)^3-8+12*x*y(x)-6*x^2*y(x)^2+x^3*y(x)^3)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (1/4 + y[x]/4 - (3*x*y[x])/8 - (x*y[x]^2)/4 + (3*x^2*y[x]^2)/16 + y[x]^3/4 - (x*y[x]^3)/2 + (x^2*y[x]^3)/16 - (x^3*y[x]^3)/32)/(x*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**3*y(x)**3 - 2*x**2*y(x)**3 - 6*x**2*y(x)**2 + 16*x*y(x)**3 + 8*x*y(x)**2 + 12*x*y(x) - 8*y(x)**3 - 8*y(x) - 8)/(32*x*y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out