60.1.409 problem 420

Internal problem ID [10423]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, linear first order
Problem number : 420
Date solved : Wednesday, March 05, 2025 at 10:47:37 AM
CAS classification : [[_homogeneous, `class G`], _rational, _dAlembert]

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

Maple. Time used: 0.042 (sec). Leaf size: 788
ode:=x*diff(y(x),x)^2-2*y(x)*diff(y(x),x)+a = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} \text {Solution too large to show}\end{align*}

Mathematica. Time used: 60.123 (sec). Leaf size: 1553
ode=a - 2*y[x]*D[y[x],x] + x*D[y[x],x]^2==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} \text {Solution too large to show}\end{align*}

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