3.4 problem 6

Internal problem ID [4904]

Book: ADVANCED ENGINEERING MATHEMATICS. ERWIN KREYSZIG, HERBERT KREYSZIG, EDWARD J. NORMINTON. 10th edition. John Wiley USA. 2011
Section: Chapter 5. Series Solutions of ODEs. Special Functions. Problem set 5.4. Bessels Equation page 195
Problem number: 6.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

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

Solution by Maple

Time used: 0.047 (sec). Leaf size: 47

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

\[ y \relax (x ) = c_{1} x^{\frac {1}{4}} \left (1-\frac {1}{2} x +\frac {1}{24} x^{2}-\frac {1}{720} x^{3}+\frac {1}{40320} x^{4}-\frac {1}{3628800} x^{5}+\mathrm {O}\left (x^{6}\right )\right )+c_{2} x^{\frac {3}{4}} \left (1-\frac {1}{6} x +\frac {1}{120} x^{2}-\frac {1}{5040} x^{3}+\frac {1}{362880} x^{4}-\frac {1}{39916800} x^{5}+\mathrm {O}\left (x^{6}\right )\right ) \]

Solution by Mathematica

Time used: 0.004 (sec). Leaf size: 90

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

\[ y(x)\to c_2 \sqrt [4]{x} \left (-\frac {x^5}{3628800}+\frac {x^4}{40320}-\frac {x^3}{720}+\frac {x^2}{24}-\frac {x}{2}+1\right )+c_1 x^{3/4} \left (-\frac {x^5}{39916800}+\frac {x^4}{362880}-\frac {x^3}{5040}+\frac {x^2}{120}-\frac {x}{6}+1\right ) \]