Tested tool guide
Tested browser tools
Checked August 16, 2026
What Taylor Series Explorer does, with a checked example
The plotted curve is your function; the overlaid curve is a Taylor polynomial that gains one term at a time. Pick a function such as e^x or sin(x) and set a center; every added term is the next derivative order of the expansion, so the polynomial hugs the function near the center and falls away as you move off it. The tool shades the interval of convergence, making the radius visible at a glance. The usual surprise: the interval does not depend on how many terms you add - outside it, extra terms make the error worse.
Worked example
A concrete input and expected output from the current implementation.
Input
f(x) = e^x, center a = 0, degree 4; check the value at x = 0.5
->
Expected output
P4(x) = 1 + x + x^2/2 + x^3/6 + x^4/24. At x = 0.5 the polynomial gives 1.6484375 against e^0.5 = 1.6487213, an error of about 2.8e-4. The plotted curves are visually overlapping between x = -1 and x = 1 and separate visibly past x = 2; the convergence interval covers the whole plot, which is right for e^x.
The Maclaurin coefficients are 1/n! because every derivative of e^x equals 1 at the center 0. Four terms already match e^0.5 to three decimals, and the remaining gap is the tail of the series, dominated by the first omitted term 0.5^5/120 = 0.000260, which is the size of the error the plot shows.