Try it yourself:


pade(): rational approximation from a series

pade() builds a Padé approximation: a ratio of two polynomials chosen to match terms of a power series. Rational approximations can represent poles and often behave better than a truncated polynomial away from the expansion point.

When it helps

Use Padé approximation for symbolic analysis, control models, and numerical estimates where a Taylor series converges slowly. Select numerator and denominator orders based on the available series and the desired behavior.

Related functions

Use derivative() to obtain series information, simplify() to reduce the rational result, resolve() to inspect poles, and numeric() to compare approximations.

Caveat

A Padé approximant is not automatically accurate everywhere. Check it near singularities and against the original function over the range you actually need.

Try Padé in Calcul.io

Start with one of the editable examples above, then replace its arguments with your own values. Keeping the function on a separate calculator line makes the input and result easy to compare. For a longer workflow, assign the result to a variable or reference that line in the next expression.

Check the shown signature before adding optional arguments, and use the related-function links to compare operations with similar purposes.

All functions