31.27 problem 927

Internal problem ID [3653]

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

CAS Maple gives this as type [_quadrature]

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

Solution by Maple

Time used: 0.047 (sec). Leaf size: 31

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

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

Solution by Mathematica

Time used: 0.004 (sec). Leaf size: 39

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

\begin{align*} y(x)\to -\frac {2 \sqrt {a}}{\sqrt {x}}+c_1 \\ y(x)\to \frac {2 \sqrt {a}}{\sqrt {x}}+c_1 \\ \end{align*}