7.180 problem 1771 (book 6.180)

Internal problem ID [10092]
Internal file name [OUTPUT/9039_Monday_June_06_2022_06_16_07_AM_21583386/index.tex]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1771 (book 6.180).
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} \left (-1+y\right ) y^{\prime \prime }-2 x^{2} {y^{\prime }}^{2}-2 x \left (-1+y\right ) y^{\prime }-2 y \left (-1+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: 30

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

\begin{align*} y \left (x \right ) &= 1 \\ y \left (x \right ) &= \frac {x \left (c_{1} x -c_{2} \right )}{c_{1} x^{2}-c_{2} x -1} \\ \end{align*}

Solution by Mathematica

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

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

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