ODE
\[ -y'(x) \left (a-b x^2+y(x)^2\right )-b x y(x)+x y(x) y'(x)^2=0 \] ODE Classification
[_rational]
Book solution method
The method of Lagrange
Mathematica ✗
cpu = 600. (sec), leaf count = 0 , timed out
$Aborted
Maple ✗
cpu = 0.01 (sec), leaf count = 0 , exception
time expired
Mathematica raw input
DSolve[-(b*x*y[x]) - (a - b*x^2 + y[x]^2)*y'[x] + x*y[x]*y'[x]^2 == 0,y[x],x]
Mathematica raw output
$Aborted
Maple raw input
dsolve(x*y(x)*diff(y(x),x)^2-(a-b*x^2+y(x)^2)*diff(y(x),x)-b*x*y(x) = 0, y(x),'implicit')
Maple raw output
time expired