8.4 problem 202

Internal problem ID [15090]

Book: A book of problems in ordinary differential equations. M.L. KRASNOV, A.L. KISELYOV, G.I. MARKARENKO. MIR, MOSCOW. 1983
Section: Section 8. First order not solved for the derivative. Exercises page 67
Problem number: 202.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [_separable]

\[ \boxed {x^{2} {y^{\prime }}^{2}+3 x y y^{\prime }+2 y^{2}=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 17

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

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

Solution by Mathematica

Time used: 0.04 (sec). Leaf size: 26

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

\begin{align*} y(x)\to \frac {c_1}{x^2} \\ y(x)\to \frac {c_1}{x} \\ y(x)\to 0 \\ \end{align*}