28.7 problem 805

Internal problem ID [3535]

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

CAS Maple gives this as type [[_1st_order, _with_linear_symmetries]]

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 3.724 (sec). Leaf size: 262

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

\begin{align*} \text {Solve}\left [\frac {1}{4} \left (\frac {\sqrt {a} x \sqrt {a x^4-4 y(x)}}{\sqrt {a x^2 \left (a x^4-4 y(x)\right )}}+1\right ) \log (y(x))-\frac {\sqrt {a} x \sqrt {a x^4-4 y(x)} \log \left (\sqrt {a x^4-4 y(x)}+\sqrt {a} x^2\right )}{2 \sqrt {a x^2 \left (a x^4-4 y(x)\right )}}=c_1,y(x)\right ] \\ \text {Solve}\left [\frac {\sqrt {a} x \sqrt {a x^4-4 y(x)} \log \left (\sqrt {a x^4-4 y(x)}+\sqrt {a} x^2\right )}{2 \sqrt {a x^2 \left (a x^4-4 y(x)\right )}}+\frac {1}{4} \left (1-\frac {\sqrt {a} x \sqrt {a x^4-4 y(x)}}{\sqrt {a x^2 \left (a x^4-4 y(x)\right )}}\right ) \log (y(x))=c_1,y(x)\right ] \\ y(x)\to \frac {a x^4}{4} \\ \end{align*}