8.25 problem 25

Internal problem ID [4379]

Book: Mathematical Methods in the Physical Sciences. third edition. Mary L. Boas. John Wiley. 2006
Section: Chapter 8, Ordinary differential equations. Section 13. Miscellaneous problems. page 466
Problem number: 25.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_separable]

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

Solution by Maple

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

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

\[ y \left (x \right ) = \frac {2}{x^{3}} \]

Solution by Mathematica

Time used: 0.034 (sec). Leaf size: 10

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

\begin{align*} y(x)\to \frac {2}{x^3} \\ \end{align*}