37.18 problem 1138

Internal problem ID [3824]

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

CAS Maple gives this as type [_Clairaut]

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

Solution by Maple

Time used: 0.256 (sec). Leaf size: 147

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

\begin{align*} y \relax (x ) = -\sqrt {1-x}\, \sqrt {\frac {1}{x}}\, x -\arcsin \left (\sqrt {\frac {1}{x}}\, x \right ) \\ y \relax (x ) = \sqrt {1-x}\, \sqrt {\frac {1}{x}}\, x +\arcsin \left (\sqrt {\frac {1}{x}}\, x \right ) \\ y \relax (x ) = -\sqrt {x +1}\, \sqrt {-\frac {1}{x}}\, x -\arcsin \left (\sqrt {-\frac {1}{x}}\, x \right ) \\ y \relax (x ) = \sqrt {x +1}\, \sqrt {-\frac {1}{x}}\, x +\arcsin \left (\sqrt {-\frac {1}{x}}\, x \right ) \\ y \relax (x ) = c_{1} x -\arcsin \left (\frac {1}{\sqrt {c_{1}^{2}+1}}\right ) \\ y \relax (x ) = c_{1} x +\arcsin \left (\frac {1}{\sqrt {c_{1}^{2}+1}}\right ) \\ \end{align*}

Solution by Mathematica

Time used: 0.336 (sec). Leaf size: 71

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

\begin{align*} y(x)\to c_1 x-\frac {1}{2} \text {ArcCos}\left (1-\frac {2}{1+c_1{}^2}\right ) \\ y(x)\to \frac {1}{2} \text {ArcCos}\left (1-\frac {2}{1+c_1{}^2}\right )+c_1 x \\ y(x)\to -\frac {\pi }{2} \\ y(x)\to \frac {\pi }{2} \\ \end{align*}