9.2 problem Ex 2

Internal problem ID [11167]

Book: An elementary treatise on differential equations by Abraham Cohen. DC heath publishers. 1906
Section: Chapter 2, differential equations of the first order and the first degree. Article 16. Integrating factors by inspection. Page 23
Problem number: Ex 2.
ODE order: 1.
ODE degree: 1.

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

\[ \boxed {\frac {y^{\prime } x -y}{\sqrt {x^{2}-y^{2}}}-y^{\prime } x=0} \]

Solution by Maple

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

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

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

Solution by Mathematica

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

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

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