30.39 problem 899

Internal problem ID [3627]

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

CAS Maple gives this as type [_rational, [_1st_order, _with_symmetry_[F(x),G(x)*y+H(x)]]]

Solve \begin {gather*} \boxed {x^{2} \left (y^{\prime }\right )^{2}-2 x y^{\prime } y-x^{4}+\left (-x^{2}+1\right ) y^{2}=0} \end {gather*}

Solution by Maple

Time used: 0.275 (sec). Leaf size: 51

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

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

Solution by Mathematica

Time used: 42.23 (sec). Leaf size: 99

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

\begin{align*} y(x)\to -\frac {x \tanh (x-c_1)}{\sqrt {\text {sech}^2(x-c_1)}} \\ y(x)\to \frac {x \tanh (x-c_1)}{\sqrt {\text {sech}^2(x-c_1)}} \\ y(x)\to -\frac {x \tanh (x+c_1)}{\sqrt {\text {sech}^2(x+c_1)}} \\ y(x)\to \frac {x \tanh (x+c_1)}{\sqrt {\text {sech}^2(x+c_1)}} \\ \end{align*}