60.1.467 problem 480

Internal problem ID [10481]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, linear first order
Problem number : 480
Date solved : Sunday, March 30, 2025 at 05:00:25 PM
CAS classification : [_rational]

\begin{align*} \left (a y-x^{2}\right ) {y^{\prime }}^{2}+2 x y {y^{\prime }}^{2}-y^{2}&=0 \end{align*}

Maple
ode:=(a*y(x)-x^2)*diff(y(x),x)^2+2*x*y(x)*diff(y(x),x)^2-y(x)^2 = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=-y[x]^2 + 2*x*y[x]*D[y[x],x]^2 + (-x^2 + a*y[x])*D[y[x],x]^2==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
y = Function("y") 
ode = Eq(2*x*y(x)*Derivative(y(x), x)**2 + (a*y(x) - x**2)*Derivative(y(x), x)**2 - y(x)**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out