2.35 problem 36 (b)

Internal problem ID [4837]

Book: A FIRST COURSE IN DIFFERENTIAL EQUATIONS with Modeling Applications. Dennis G. Zill. 9th edition. Brooks/Cole. CA, USA.
Section: Chapter 6. SERIES SOLUTIONS OF LINEAR EQUATIONS. Exercises. 6.2 page 239
Problem number: 36 (b).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _exact, _linear, _homogeneous]]

Solve \begin {gather*} \boxed {x^{2} y^{\prime \prime }+\left (3 x -1\right ) y^{\prime }+y=0} \end {gather*} With the expansion point for the power series method at \(x = 0\).

Solution by Maple

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

\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.033 (sec). Leaf size: 43

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

\[ y(x)\to c_1 \left (120 x^5+24 x^4+6 x^3+2 x^2+x+1\right )+\frac {c_2 e^{-1/x}}{x} \]