$$R(x) = \frac{\sum_{j = 0}^m a_{j} x^j}{1+\sum_{k=1}^n b_k x^k}$$
I've started computing these to approximate my coefficients for a regression and others have been asking me how the Padé approximant works and why it is written how it is. I don't get why we add one to the sum in the denominator instead of just taking care of it as part of the summation in the denominator.
Numerical Recipes in C, where I got this function, doesn't really explain how it works or why. Wikipedia doesn't really cover this topic. Both just state the theorem and go on. I've requested those books through my university library but they are in the mail.
Is it just a historical holdover?
Thank you for your time.
Instead of computing $f (x) $ by its Taylor expansion
$$f (x)=\sum_{i=0}^{n+m}c_ix^i+o (x^{n+m}) $$
we use a rational approximation with the same precision.
$$f (x)\approx \frac {P_m (x)}{Q_n (x)} $$
with $Q_n (0)=1$ and
$$P_m (x)-f (x)Q_(x)=o (x^{n+m}) .$$