The formula this page uses
Pₙ(x) = Σ[k = 0…n] f⁽ᵏ⁾(a) · (x − a)ᵏ / k!
Build a Taylor or Maclaurin polynomial around any center, choose its degree, inspect every coefficient, and compare the approximation with the original function on an interactive graph.
Pₙ(x) = Σ[k = 0…n] f⁽ᵏ⁾(a) · (x − a)ᵏ / k!
The function and centre
Only the centre. A Maclaurin polynomial is a Taylor polynomial with a = 0, which is why every entry in the table above is written in plain powers of x rather than powers of (x − a).
Compare consecutive terms. In the e^0.5 example the x⁴ term contributes 0.0026 and the next would contribute about 0.00026, so the error is roughly the size of the first term you dropped. That estimate is the Lagrange remainder in practical form.
Because ln 0 is undefined and every derivative blows up there. Centring at a = 1 works because ln 1 = 0 and all the derivatives are clean whole numbers, which is what the second example uses.
Calculators and computers use it. There is no circuitry that knows sin 0.3 directly, so the machine evaluates a polynomial like x − x³/6 + x⁵/120 instead, which needs only multiplication and addition.
Use numerical results to explore and verify. For a proof or exact symbolic derivation, follow the linked step-by-step solver and check its assumptions.
Estimate local rate of change with centered finite differences and visualize the tangent line.
Use adaptive Simpson integration to estimate signed accumulated area over a finite interval.
Compare values approaching from both sides so one-sided disagreement remains visible.
Approximate a function near a center and compare the polynomial with the original curve.
Numerical-method note: Decimal results are estimates. Discontinuities, oscillation, very large values, and poorly scaled inputs can require symbolic analysis or tighter assumptions.
A calculator confirms an answer. Working the method yourself is what makes the next problem faster.