24.1 problem 739

Internal problem ID [15483]

Book: A book of problems in ordinary differential equations. M.L. KRASNOV, A.L. KISELYOV, G.I. MARKARENKO. MIR, MOSCOW. 1983
Section: Chapter 2 (Higher order ODE’s). Section 18.2. Expanding a solution in generalized power series. Bessels equation. Exercises page 177
Problem number: 739.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]

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

Solution by Maple

Time used: 0.016 (sec). Leaf size: 44

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

\[ y = c_{1} \sqrt {x}\, \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}+\operatorname {O}\left (x^{6}\right )\right )+c_{2} \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}+\operatorname {O}\left (x^{6}\right )\right ) \]

Solution by Mathematica

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

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

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