7.182 problem 1773 (book 6.182)

Internal problem ID [9347]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1773 (book 6.182).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_xy]]

\[ \boxed {x^{2} \left (x -y\right ) y^{\prime \prime }+a \left (y^{\prime } x -y\right )^{2}=0} \]

Solution by Maple

Time used: 0.094 (sec). Leaf size: 45

dsolve(x^2*(x-y(x))*diff(diff(y(x),x),x)+a*(x*diff(y(x),x)-y(x))^2=0,y(x), singsol=all)
 

\begin{align*} y \left (x \right ) = x \\ y \left (x \right ) = -\operatorname {RootOf}\left (a x c_{1} \textit {\_Z}^{a}-x c_{1} \textit {\_Z}^{a}-c_{2} a \,\textit {\_Z}^{a}+c_{2} \textit {\_Z}^{a}+x^{a} \textit {\_Z} \right )+x \\ \end{align*}

Solution by Mathematica

Time used: 0.426 (sec). Leaf size: 36

DSolve[a*(-y[x] + x*y'[x])^2 + x^2*(x - y[x])*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to x \left (1+\left (-\frac {(a-1) \left ((-1)^a c_1+c_2 x\right )}{x}\right ){}^{\frac {1}{1-a}}\right ) \\ \end{align*}