8.10 problem 1846

Internal problem ID [9425]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 7, non-linear third and higher order
Problem number: 1846.
ODE order: 3.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {2 y^{\prime } y^{\prime \prime \prime }-3 \left (y^{\prime }\right )^{2}=0} \end {gather*}

Solution by Maple

Time used: 0.015 (sec). Leaf size: 28

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

\begin{align*} y \relax (x ) = c_{1}+c_{2} {\mathrm e}^{\frac {\sqrt {6}\, x}{2}}+c_{3} {\mathrm e}^{-\frac {\sqrt {6}\, x}{2}} \\ y \relax (x ) = c_{1} \\ \end{align*}

Solution by Mathematica

Time used: 0.025 (sec). Leaf size: 51

DSolve[-3*y'[x]^2 + 2*y'[x]*Derivative[3][y][x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to c_1 \\ y(x)\to \sqrt {\frac {2}{3}} e^{-\sqrt {\frac {3}{2}} x} \left (c_1 e^{\sqrt {6} x}-c_2\right )+c_3 \\ \end{align*}