6.18 problem 18

Internal problem ID [138]

Book: Differential equations and linear algebra, 3rd ed., Edwards and Penney
Section: Chapter 1 review problems. Page 78
Problem number: 18.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_homogeneous, `class A`], _rational, _Bernoulli]

\[ \boxed {2 x^{2} y-x^{3} y^{\prime }-y^{3}=0} \]

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.194 (sec). Leaf size: 43

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

\begin{align*} y(x)\to -\frac {x^2}{\sqrt {x^2+c_1}} y(x)\to \frac {x^2}{\sqrt {x^2+c_1}} y(x)\to 0 \end{align*}