I calculated the Padé Approximation of Neumann Series by hand, and then by Mathematica for different orders (from {0, 0} to some higher numbers), using the code below, in general:
neu = 1 + x + x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8;
PadeApproximant[neu, {x, 0, {1, 1}}]
I got exactly the same results. It must be good news, but according to some articles, I should get different results for different orders of this approximation. For any order higher than {1, 1}, such as {2, 1}, {2, 2}, {3, 2}, ..., the result is $\frac{1}{1-x}$ (which is of course the result for the summation of an infinite number of terms of Neumann series). I just need to be sure that these results are correct and it makes sense that after {1, 1}, no progress happens in this approximation at all. Thank you very much in advance.
Since this question is posed in Mathematica format, I first answer it in Mathematica format. Consider
Now, for
f[x]given byneu, the first eightDerivatives evaluated atx = 0are equal ton!, and for higher derivatives by0. So, clearly the expression above cannot have a denominator proportional to(1 - x). In fact, it is given byOn the other hand, if
neuwere a ninth order series, then the result would beMore generally,
1/(1 - x)is obtained for other Pade Approximations ofneuthat do not involve 9th or higher order derivatives (and, of course, have at least first order denominators). The results were obtained with MathematicaA verbal explanation of these results is that
neuis equal to1/(1 - x)nearx = 0to eight order, but not to higher order. So, low order Pade approximations equal1/(1 - x), but high order Pade approximations are better approximated byneuitself. I hope this is helpful.