37.1 problem Ex 1

Internal problem ID [11331]
Internal file name [OUTPUT/10317_Tuesday_December_27_2022_04_07_32_AM_86152449/index.tex]

Book: An elementary treatise on differential equations by Abraham Cohen. DC heath publishers. 1906
Section: Chapter IX, Miscellaneous methods for solving equations of higher order than first. Article 61. Transformation of variables. Page 143
Problem number: Ex 1.
ODE order: 2.
ODE degree: 1.

The type(s) of ODE detected by this program : "unknown"

Maple gives the following as the ode type

[[_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_y_y1], [_2nd_order, _reducible, _mu_xy]]

Unable to solve or complete the solution.

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

Maple trace

`Methods for second order ODEs: 
--- Trying classification methods --- 
trying 2nd order Liouville 
trying 2nd order WeierstrassP 
trying 2nd order JacobiSN 
differential order: 2; trying a linearization to 3rd order 
trying 2nd order ODE linearizable_by_differentiation 
trying 2nd order, 2 integrating factors of the form mu(x,y) 
trying a quadrature 
checking if the LODE has constant coefficients 
checking if the LODE is of Euler type 
<- LODE of Euler type successful 
<- 2nd order, 2 integrating factors of the form mu(x,y) successful`
 

Solution by Maple

Time used: 0.047 (sec). Leaf size: 44

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

\begin{align*} y \left (x \right ) &= 0 \\ y \left (x \right ) &= \sqrt {2}\, \sqrt {-x \left (c_{1} x -c_{2} \right )} \\ y \left (x \right ) &= -\sqrt {2}\, \sqrt {-x \left (c_{1} x -c_{2} \right )} \\ \end{align*}

Solution by Mathematica

Time used: 0.388 (sec). Leaf size: 23

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

\[ y(x)\to c_2 \sqrt {x} \sqrt {2 x+c_1} \]