3.5 problem 10.4.8 (e)

Internal problem ID [4559]

Book: Basic Training in Mathematics. By R. Shankar. Plenum Press. NY. 1995
Section: Chapter 10, Differential equations. Section 10.4, ODEs with variable Coefficients. Second order and Homogeneous. page 318
Problem number: 10.4.8 (e).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler]]

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.006 (sec). Leaf size: 15

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

\begin{align*} y(x)\to x (c_2 \log (x)+c_1) \\ \end{align*}