7.23 problem 1613 (6.23)

Internal problem ID [9188]

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

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

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

Solution by Maple

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

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

\[ y \left (x \right ) = \operatorname {WeierstrassP}\left (-\frac {{\mathrm e}^{-a x}}{a}+c_{1} , 0, c_{2}\right ) {\mathrm e}^{-2 a x} \]

Solution by Mathematica

Time used: 0.923 (sec). Leaf size: 35

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

\begin{align*} y(x)\to a^2 c_1{}^2 e^{-2 a x} \wp \left (e^{-a x} c_1+c_2;0,-1\right ) \\ \end{align*}