3.5 problem 10.4.8 (e)

Internal problem ID [4560]

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]]

Solve \begin {gather*} \boxed {x^{2} y^{\prime \prime }-x y^{\prime }+y=0} \end {gather*}

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 \relax (x ) = c_{1} x +c_{2} x \ln \relax (x ) \]

Solution by Mathematica

Time used: 0.008 (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*}