Build precise Taylor polynomials for standard functions. See terms, values, and errors with practical clarity. Use exports and examples to verify every approximation carefully.
Choose a supported function, set the expansion center, pick the order, and evaluate the approximation at any valid point.
| Function | Center a | Order n | x | Approximation | Actual Value | Absolute Error |
|---|---|---|---|---|---|---|
| e^x | 0 | 5 | 1 | 2.716667 | 2.718282 | 0.001615 |
| sin(x) | 0 | 7 | 0.5 | 0.479426 | 0.479426 | 0.000000 |
| ln(1+x) | 0 | 5 | 0.3 | 0.262340 | 0.262364 | 0.000024 |
| 1/(1-x) | 0 | 6 | 0.4 | 1.663936 | 1.666667 | 0.002731 |
| Function | Derivative Pattern | Domain | Convergence Guide |
|---|---|---|---|
| e^x | Every derivative equals e^x. | All real values are valid. | Infinite radius of convergence. |
| sin(x) | Derivatives cycle: sin, cos, -sin, -cos. | All real values are valid. | Infinite radius of convergence. |
| cos(x) | Derivatives cycle: cos, -sin, -cos, sin. | All real values are valid. | Infinite radius of convergence. |
| sinh(x) | Derivatives alternate between sinh and cosh. | All real values are valid. | Infinite radius of convergence. |
| cosh(x) | Derivatives alternate between cosh and sinh. | All real values are valid. | Infinite radius of convergence. |
| ln(1+x) | For n >= 1: (-1)^(n-1)(n-1)! / (1+x)^n. | Requires x > -1 and center a > -1. | Radius equals |a + 1|. |
| 1 / (1-x) | n-th derivative: n! / (1-x)^(n+1). | Requires x != 1 and center a != 1. | Radius equals |1 - a|. |
| 1 / (1+x) | n-th derivative: (-1)^n n! / (1+x)^(n+1). | Requires x != -1 and center a != -1. | Radius equals |1 + a|. |
It builds a Taylor polynomial for a selected function around a chosen center, evaluates the approximation at x, and reports error measures.
A Maclaurin series is simply a Taylor series centered at zero. Any nonzero center produces a general Taylor expansion.
Higher-order polynomials include more local derivative information. That usually improves accuracy near the center, though distance from the center still matters.
Some functions have nearby singularities or limited convergence radii. When x is far from the center, the polynomial may converge slowly or fail.
It uses the first omitted term as a practical size check. It is useful for intuition, but it is not a guaranteed rigorous remainder bound.
The tool supports e^x, sin(x), cos(x), sinh(x), cosh(x), ln(1+x), 1/(1-x), and 1/(1+x).
Functions like ln(1+x) and rational forms are not defined everywhere. Invalid centers or evaluation points would make the derivatives or values undefined.
Yes. After calculating, use the CSV button for spreadsheets or the PDF button for a compact printable summary.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.