13.4 problem Ex 4

Internal problem ID [11213]

Book: An elementary treatise on differential equations by Abraham Cohen. DC heath publishers. 1906
Section: Chapter IV, differential equations of the first order and higher degree than the first. Article 24. Equations solvable for \(p\). Page 49
Problem number: Ex 4.
ODE order: 1.
ODE degree: 2.

CAS Maple gives this as type [_linear]

\[ \boxed {\left (2 y^{\prime } x -y\right )^{2}=8 x^{3}} \]

Solution by Maple

Time used: 0.297 (sec). Leaf size: 30

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

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

Solution by Mathematica

Time used: 0.128 (sec). Leaf size: 42

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

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