1.10 problem 2.2 (j)

Internal problem ID [13252]

Book: Ordinary Differential Equations. An introduction to the fundamentals. Kenneth B. Howell. second edition. CRC Press. FL, USA. 2020
Section: Chapter 2. Integration and differential equations. Additional exercises. page 32
Problem number: 2.2 (j).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _missing_y]]

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

Solution by Maple

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

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

\[ y \left (x \right ) = c_{1} +\frac {c_{2}}{x^{2}} \]

Solution by Mathematica

Time used: 0.025 (sec). Leaf size: 17

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

\[ y(x)\to c_2-\frac {c_1}{2 x^2} \]