19.3.11 problem 19

Internal problem ID [3554]
Book : Differential equations and linear algebra, Stephen W. Goode, second edition, 2000
Section : 1.8, page 68
Problem number : 19
Date solved : Sunday, March 30, 2025 at 01:50:06 AM
CAS classification : [[_homogeneous, `class A`], _rational, _dAlembert]

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

Maple. Time used: 0.045 (sec). Leaf size: 27
ode:=y(x)*diff(y(x),x) = (x^2+y(x)^2)^(1/2)-x; 
dsolve(ode,y(x), singsol=all);
 
\[ \frac {-c_1 y^{2}+\sqrt {x^{2}+y^{2}}+x}{y^{2}} = 0 \]
Mathematica. Time used: 0.375 (sec). Leaf size: 57
ode=y[x]*D[y[x],x]==Sqrt[x^2+y[x]^2]-x; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to -e^{\frac {c_1}{2}} \sqrt {2 x+e^{c_1}} \\ y(x)\to e^{\frac {c_1}{2}} \sqrt {2 x+e^{c_1}} \\ y(x)\to 0 \\ \end{align*}
Sympy. Time used: 76.464 (sec). Leaf size: 235
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x - sqrt(x**2 + y(x)**2) + y(x)*Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ \left [ y{\left (x \right )} = - \frac {\sqrt {2} \sqrt {- C_{1} - 2 \sqrt {2} x \sqrt {- C_{1}}}}{2}, \ y{\left (x \right )} = \frac {\sqrt {2} \sqrt {- C_{1} - 2 \sqrt {2} x \sqrt {- C_{1}}}}{2}, \ y{\left (x \right )} = - \frac {\sqrt {2} \sqrt {- C_{1} + 2 \sqrt {2} x \sqrt {- C_{1}}}}{2}, \ y{\left (x \right )} = \frac {\sqrt {2} \sqrt {- C_{1} + 2 \sqrt {2} x \sqrt {- C_{1}}}}{2}, \ y{\left (x \right )} = - \frac {\sqrt {2} \sqrt {- 2 \sqrt {2} \sqrt {C_{1}} x + C_{1}}}{2}, \ y{\left (x \right )} = \frac {\sqrt {2} \sqrt {- 2 \sqrt {2} \sqrt {C_{1}} x + C_{1}}}{2}, \ y{\left (x \right )} = - \frac {\sqrt {2} \sqrt {2 \sqrt {2} \sqrt {C_{1}} x + C_{1}}}{2}, \ y{\left (x \right )} = \frac {\sqrt {2} \sqrt {2 \sqrt {2} \sqrt {C_{1}} x + C_{1}}}{2}\right ] \]