25.33 problem 730

Internal problem ID [3468]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 25
Problem number: 730.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [y=_G(x,y')]

Solve \begin {gather*} \boxed {x \left (1-\sqrt {x^{2}-y^{2}}\right ) y^{\prime }-y=0} \end {gather*}

Solution by Maple

Time used: 0.025 (sec). Leaf size: 27

dsolve(x*(1-sqrt(x^2-y(x)^2))*diff(y(x),x) = y(x),y(x), singsol=all)
 

\[ y \relax (x )-\arctan \left (\frac {y \relax (x )}{\sqrt {x^{2}-y \relax (x )^{2}}}\right )-c_{1} = 0 \]

Solution by Mathematica

Time used: 0.502 (sec). Leaf size: 29

DSolve[x(1-Sqrt[x^2-y[x]^2])y'[x]==y[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ \text {Solve}\left [\text {ArcTan}\left (\frac {\sqrt {x^2-y(x)^2}}{y(x)}\right )+y(x)=c_1,y(x)\right ] \]