0

Is it possible to rewrite this integral $I=\int\limits_{x = 0}^\infty {2\sqrt {a - \frac{b}{x}} {K_1}\left( {2\sqrt {a - \frac{b}{x}} } \right){x^{M - 1}}\exp \left( { - \frac{x}{c}} \right)dx}$ as non elementary function (For exaple $Ei(x)$, $Li(x)$) ?

${K_1}\left( x \right)$ is the modified Bessel function of the second kind.

$a,b,c$ are positive real number and $M$ is a positive integer

It is ok if someone can help me express the integral $I$ as an infinite series. I have also think of using the expansion ${e^x} = \sum\limits_{k = 0}^\infty {\frac{{{x^k}}}{{k!}}}$ to deal with the exponential term but I cannot proceed.

For clarification, I am an engineer working in Telecommunications. This integral is something come out of the Probability the signal fall below some decoding threshold.

Thank you for your enthusiasm !

1 Answers1

1

No way to find a closed form.

I found an approximation which uses $K_2$, too $$\int_0^{\infty } 2 x^{M-1} \sqrt{a-\frac{b}{x}} K_1\left(2 \sqrt{a-\frac{b}{x}}\right)e^{-x/c} dx\approx \\2 c^{M-1} \Gamma (M-1) \left(b K_2\left(2 \sqrt{a}\right)-\frac{K_1\left(2 \sqrt{a}\right) (b-a c (M-1))}{\sqrt{a}}\right)$$

Mathematica code

Integrate[
  Series[2 E^(-(x/c)) Sqrt[a - b/x] x^(-1 + M)
      BesselK[1, 2 Sqrt[a - b/x]], {x, Infinity, 1}] // Normal, {x, 0,
    Infinity}] // FullSimplify

At $x\to\infty$

$$2 x^{M-1} \sqrt{a-\frac{b}{x}} K_1\left(2 \sqrt{a-\frac{b}{x}}\right)e^{-x/c}\sim \\e^{-\frac{x}{c}} x^{M-1} \left(\frac{2 b \left(\sqrt{a} K_2\left(2 \sqrt{a}\right)-K_1\left(2 \sqrt{a}\right)\right)}{\sqrt{a} x}+2 \sqrt{a} K_1\left(2 \sqrt{a}\right)\right)$$

Raffaele
  • 26,371