14.26 problem 352

Internal problem ID [15210]

Book: A book of problems in ordinary differential equations. M.L. KRASNOV, A.L. KISELYOV, G.I. MARKARENKO. MIR, MOSCOW. 1983
Section: Chapter 2 (Higher order ODE’s). Section 14. Differential equations admitting of depression of their order. Exercises page 107
Problem number: 352.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_x], [_2nd_order, _exact, _nonlinear], _Lagerstrom, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]

\[ \boxed {y^{\prime \prime }-2 y y^{\prime }=0} \] With initial conditions \begin {align*} [y \left (0\right ) = 1, y^{\prime }\left (0\right ) = 1] \end {align*}

Solution by Maple

Time used: 0.046 (sec). Leaf size: 11

dsolve([diff(y(x),x$2)=2*y(x)*diff(y(x),x),y(0) = 1, D(y)(0) = 1],y(x), singsol=all)
 

\[ y = -\frac {1}{x -1} \]

Solution by Mathematica

Time used: 0.0 (sec). Leaf size: 0

DSolve[{y''[x]==2*y[x]*y'[x],{y[0]==1,y'[0]==1}},y[x],x,IncludeSingularSolutions -> True]
 

{}