7.162 problem 1753 (book 6.162)

Internal problem ID [9327]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 6, non-linear second order
Problem number: 1753 (book 6.162).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_xy]]

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

Solution by Maple

Time used: 0.078 (sec). Leaf size: 37

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

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

Solution by Mathematica

Time used: 0.129 (sec). Leaf size: 26

DSolve[a*y[x]^2 - 5*y'[x]^2 + 4*y[x]*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to c_2 \text {sech}^4\left (\frac {1}{4} \sqrt {a} (x-4 c_1)\right ) \\ \end{align*}