82.18.19 problem Ex. 21

Internal problem ID [18841]
Book : Introductory Course On Differential Equations by Daniel A Murray. Longmans Green and Co. NY. 1924
Section : Chapter III. Equations of the first order but not of the first degree. Examples on chapter III. page 38
Problem number : Ex. 21
Date solved : Tuesday, January 28, 2025 at 12:26:39 PM
CAS classification : [_quadrature]

\begin{align*} {y^{\prime }}^{3}-\left (x^{2}+y x +y^{2}\right ) {y^{\prime }}^{2}+\left (x^{3} y+x^{2} y^{2}+x y^{3}\right ) y^{\prime }-x^{3} y^{3}&=0 \end{align*}

Solution by Maple

Time used: 0.004 (sec). Leaf size: 32

dsolve(diff(y(x),x)^3-(x^2+x*y(x)+y(x)^2)*diff(y(x),x)^2+(x^3*y(x)+x^2*y(x)^2+x*y(x)^3)*diff(y(x),x)-x^3*y(x)^3=0,y(x), singsol=all)
 
\begin{align*} y \left (x \right ) &= \frac {x^{3}}{3}+c_{1} \\ y \left (x \right ) &= \frac {1}{-x +c_{1}} \\ y \left (x \right ) &= c_{1} {\mathrm e}^{\frac {x^{2}}{2}} \\ \end{align*}

Solution by Mathematica

Time used: 0.130 (sec). Leaf size: 48

DSolve[D[y[x],x]^3-(x^2+x*y[x]+y[x]^2)*D[y[x],x]^2+(x^3*y[x]+x^2*y[x]^2+x*y[x]^3)*D[y[x],x]-x^3*y[x]^3==0,y[x],x,IncludeSingularSolutions -> True]
 
\begin{align*} y(x)\to -\frac {1}{x+c_1} \\ y(x)\to c_1 e^{\frac {x^2}{2}} \\ y(x)\to \frac {x^3}{3}+c_1 \\ y(x)\to 0 \\ \end{align*}