[Math] Taylor Series of Ratio of Bessel Functions

special functionstaylor expansion

In attempting to solve a recursion relation I have used a generating function method. This resulted in a differential equation to which I have the solution, and now I need to calculate the Taylor series around $z=0$. The solution involves Bessel functions of $1/z$, and hence I am not sure how to calculate the complete Taylor Series (or if it is even possible). The function is

$$f(z) = \frac{z}{2}+\frac{I_{-\frac23}(\frac2{3z}) + I_{\frac43}(\frac2{3z}) }{2 I_{\frac13}(\frac2{3z})}$$

where $I_{\alpha}(x)$ is the modified Bessel function of the first kind. I have attempted to calculate the Taylor coefficients numerically and it appears that they do exist (and are roughly what they recursion relation gives).

Is it possible to calculate the complete Taylor series of this function, and if so how would you go about it?

Edit: My apologies, I've made a typo in the function! There should be a 2 in the bessel function denominator. (Which there now is)

Best Answer

This isn't a complete solution, but it might help: You can rewrite this using the recurrence relations

$$I_\nu(z)=\frac z{2\nu}\left(I_{\nu-1}(z)-I_{\nu+1}(z)\right)$$

and

$$I'_\nu(z)=\frac12\left(I_{\nu-1}(z)+I_{\nu+1}(z)\right)\;.$$

For instance, this yields

$$ \begin{eqnarray} f(z) &=& \frac z2+\frac{I'_{\frac13}\left(\frac2{3z}\right)}{I_{\frac13}\left(\frac2{3z}\right)} \\ &=& \frac z2+\left(\log I_{\frac13}\right)'\left(\frac2{3z}\right) \end{eqnarray}$$

and

$$ \begin{eqnarray} f(z) &=& \frac z2+\frac{2I_{-\frac23}\left(\frac2{3z}\right)-zI_{\frac13}\left(\frac2{3z}\right)}{2I_{\frac13}\left(\frac2{3z}\right)} \\ &=& \frac{I_{-\frac23}\left(\frac2{3z}\right)}{I_{\frac13}\left(\frac2{3z}\right)}\;. \end{eqnarray} $$

Related Question