1.52 problem 52

Internal problem ID [6614]

Book: First order enumerated odes
Section: section 1
Problem number: 52.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [_separable]

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

Solution by Maple

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

dsolve(diff(y(x),x)^2=y(x)^2/x,y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.064 (sec). Leaf size: 38

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

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