6.3 problem 12

Internal problem ID [5340]

Book: Schaums Outline. Theory and problems of Differential Equations, 1st edition. Frank Ayres. McGraw Hill 1952
Section: Chapter 10. Singular solutions, Extraneous loci. Supplemetary problems. Page 74
Problem number: 12.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [[_homogeneous, `class A`], _rational, _dAlembert]

\[ \boxed {x {y^{\prime }}^{2}-2 y^{\prime } y=-4 x} \]

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.271 (sec). Leaf size: 43

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

\begin{align*} y(x)\to -2 x \cosh (-\log (x)+c_1) \\ y(x)\to -2 x \cosh (\log (x)+c_1) \\ y(x)\to -2 x \\ y(x)\to 2 x \\ \end{align*}