2.18 problem 7.3.104 (d)

Internal problem ID [4778]

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

\[ \boxed {x^{2} y^{\prime \prime }-y^{\prime } x +y=0} \] With the expansion point for the power series method at \(x = 0\).

Solution by Maple

Time used: 0.0 (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 \left (x \right ) = x \left (\ln \left (x \right ) c_{2} +c_{1} \right )+O\left (x^{6}\right ) \]

Solution by Mathematica

Time used: 0.002 (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) \]