2.18 problem 7.3.104 (d)

Internal problem ID [4779]

Book: Notes on Diffy Qs. Differential Equations for Engineers. By by Jiri Lebl, 2013.
Section: Chapter 7. POWER SERIES METHODS. 7.3.2 The method of Frobenius. Exercises. page 300
Problem number: 7.3.104 (d).
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*} With the expansion point for the power series method at \(x = 0\).

Solution by Maple

Time used: 0.062 (sec). Leaf size: 25

Order:=6; 
dsolve(x^2*diff(y(x),x$2)-x*diff(y(x),x)+y(x)=0,y(x),type='series',x=0);
 

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

Solution by Mathematica

Time used: 0.003 (sec). Leaf size: 14

AsymptoticDSolveValue[x^2*y''[x]-x*y'[x]+y[x]==0,y[x],{x,0,5}]
 

\[ y(x)\to c_1 x+c_2 x \log (x) \]