20.12 problem 557

Internal problem ID [3809]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 20
Problem number: 557.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_exact, _rational, [_Abel, `2nd type`, `class B`]]

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

Solution by Maple

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

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

\begin{align*} y \left (x \right ) = \frac {-3 x^{2}+\sqrt {-3 x^{5}+9 x^{4}-12 c_{1} x}}{6 x} y \left (x \right ) = -\frac {3 x^{2}+\sqrt {-3 x^{5}+9 x^{4}-12 c_{1} x}}{6 x} \end{align*}

Solution by Mathematica

Time used: 0.481 (sec). Leaf size: 75

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

\begin{align*} y(x)\to -\frac {3 x^2+\sqrt {-3 x^5+9 x^4+36 c_1 x}}{6 x} y(x)\to \frac {-3 x^2+\sqrt {-3 x^5+9 x^4+36 c_1 x}}{6 x} \end{align*}