30.35 problem 895

Internal problem ID [4131]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 30
Problem number: 895.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [_separable]

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

Solution by Maple

Time used: 0.156 (sec). Leaf size: 52

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

\begin{align*} y \left (x \right ) &= -1 \\ y \left (x \right ) &= 1 \\ y \left (x \right ) &= 0 \\ y \left (x \right ) &= \csc \left (-\ln \left (x \right )+c_{1} \right ) \operatorname {csgn}\left (\sec \left (-\ln \left (x \right )+c_{1} \right )\right ) \\ y \left (x \right ) &= -\csc \left (-\ln \left (x \right )+c_{1} \right ) \operatorname {csgn}\left (\sec \left (-\ln \left (x \right )+c_{1} \right )\right ) \\ \end{align*}

Solution by Mathematica

Time used: 1.724 (sec). Leaf size: 88

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

\begin{align*} y(x)\to -\sqrt {\sec ^2(-\log (x)+c_1)} \\ y(x)\to \sqrt {\sec ^2(-\log (x)+c_1)} \\ y(x)\to -\sqrt {\sec ^2(\log (x)+c_1)} \\ y(x)\to \sqrt {\sec ^2(\log (x)+c_1)} \\ y(x)\to -1 \\ y(x)\to 0 \\ y(x)\to 1 \\ \end{align*}