7.193 problem 1784 (book 6.193)

Internal problem ID [9358]

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

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_y_y1]]

\[ \boxed {\left (x +y^{2}\right ) y^{\prime \prime }-2 \left (x -y^{2}\right ) {y^{\prime }}^{3}+y^{\prime } \left (1+4 y^{\prime } y\right )=0} \]

Solution by Maple

Time used: 0.312 (sec). Leaf size: 41

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

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

Solution by Mathematica

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

DSolve[-2*(x - y[x]^2)*y'[x]^3 + y'[x]*(1 + 4*y[x]*y'[x]) + (x + y[x]^2)*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\[ \text {Solve}\left [x=-y(x)^2+c_2 e^{e^{-c_1} y(x)},y(x)\right ] \]