I try to calculate the following integral by Maple 18:
int(BesselK(1, x)/x^3, x);
The result is:
(1/16)*MeijerG([[1], []], [[-1/2, -3/2], [0]], (1/4)*x^2)
However, when I calculate the derivation of the above result, I didn't get the same expression representation:
diff((1/16)*MeijerG([[1], []], [[-1/2, -3/2], [0]], (1/4)*x^2), x)
= (1/8)*MeijerG([[], []], [[-1/2, -3/2], []], (1/4)*x^2)/x
How do I tell Maple to expresse the result by modified bessel function instead of MeijerG function?
Thanks!