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.
PadeApproximant, the result no longer is1/(1-x}. For instancePadeApproximant[neu, {x, 0, {8, 8}}]returnsneu, as one might expect. – bbgodfrey Mar 09 '22 at 15:17