Taylors Inequality
Ever wonder how calculators find values like

What Is Taylor's Inequality?
Taylor's Inequality is a mathematical rule that gives you an upper bound, or a 'worst-case scenario,' for the error you make when you approximate a complicated function with a simpler polynomial. Think of it as a safety net. While an approximation gets you close to the real answer, Taylor's Inequality tells you exactly how close you are guaranteed to be. It provides a cap on the error, ensuring it will never be larger than a certain calculated value.
Imagine you have a complex, curvy graph, like
This line is a polynomial approximation (specifically, a degree-1 polynomial). We can write the relationship as:
Actual Function Value = Polynomial Approximation + Error
Or, rearranging it:
Error = Actual Function Value - Polynomial Approximation
The error, sometimes called the remainder
Why Is Bounding the Error So Important?
Knowing the exact value of something is a luxury we don't always have. In the real world, we rely on estimations and models. Bounding the error is about managing uncertainty and ensuring safety and reliability.
Consider these scenarios:
- Engineering a Bridge: An engineer calculates the maximum stress a beam can handle. The calculation might be an approximation based on a complex model. An error bound ensures the 'worst-case scenario' for stress is accounted for, preventing a collapse. They don't need the exact stress to 10 decimal places; they need to know it will never exceed a safe limit.
- GPS Navigation: Your phone's GPS calculates your position using signals from satellites. These calculations involve tiny relativistic effects described by complex equations. The software uses polynomial approximations to solve these equations quickly. An error bound guarantees that the calculated position is within, say, 5 meters of your actual position.
- Computer Graphics: In a video game, the path of a thrown object follows a parabola, but realistic lighting and wind effects are much more complex. Programmers use simpler polynomial approximations to calculate these effects in real-time. Error bounds ensure that the visual result looks smooth and believable, without objects suddenly jumping or behaving erratically.
In all these cases, an approximation is useful, but a guarantee about the error is essential. Taylor's Inequality provides that mathematical guarantee.
How Can We Estimate the Maximum Error?
The size of the error when you approximate a curve with a straight line depends on two main things:
- Distance: How far are you moving away from your initial point of approximation (the 'center')? The farther you go, the more the curve and the line will diverge, and the larger the error will be.
- Curviness: How sharply is the original function bending? Approximating a gentle wave is easy, but approximating a sharp, tight corner is much harder. The error grows faster for functions that are more 'bendy'.
To capture this mathematically, we need a way to measure 'bendiness'. In calculus, this is done with something called the second derivative, but we can think of it intuitively. Let's call the 'maximum bendiness' on our interval the letter
If we use a linear approximation (a tangent line) centered at a point
Let's break this down:
is the absolute value of the error from our 1st-degree polynomial (linear) approximation. is the maximum 'bendiness' of the function on the interval between and . is the center point where our approximation is based. is the point where we are estimating the function's value. represents the square of the distance from the center. Notice that this term makes the error grow much faster as you move away from .
Worked Example: Bounding the Error for a Parabola
Let's see how this works with a function we know well: a parabola. This is a great starting example because its 'bendiness' is constant.
Consider the function
Step 1: Find the linear approximation (tangent line) at
First, find the point on the graph:
Next, find the slope. For a polynomial, we can use the power rule from calculus (or just be given this information). The derivative is
Using the point-slope form, the tangent line
Step 2: Find the 'maximum bendiness' (M).
The 'bendiness' is related to the second derivative. The first derivative is
Step 3: Apply Taylor's Inequality.
We want to find the error bound at
Using the formula:
Step 4: Check the actual error.
Actual value:
Approximation value:
Actual error =
In this case, the error bound was exactly equal to the actual error! This is a special property of quadratic functions.
Worked Example: Estimating the Square Root of 10
Now for a more practical problem: approximating an irrational number. This is where Taylor's Inequality truly shines by giving us a confidence level in our answer.
Estimate the value of
Step 1: Choose a function and a center.
The function is
The point on the graph is
Step 2: Find the linear approximation.
The slope of
At our center
The tangent line is
Our approximation for
Step 3: Find the 'maximum bendiness' (M).
For
The magnitude of the bendiness is
So,
Step 4: Apply Taylor's Inequality.
Step 5: Check the result.
A calculator gives
The actual error is
Our bound worked!

Worked Example: The Small-Angle Approximation for Sine
In physics and engineering, it's very common to approximate
Use a linear approximation for
Step 1: Find the linear approximation.
Our center is
The slope of
The tangent line is
So, our approximation for
Step 2: Find the 'maximum bendiness' (M).
The derivatives of
What is the maximum possible value of
Luckily, we know that the values of
Step 3: Apply Taylor's Inequality.
Using
Step 4: Check the result.
A calculator gives
The actual error is
Our bound holds easily:
What Are Some Common Mistakes to Avoid?
When working with Taylor's Inequality, a few common trip-ups can occur. Being aware of them can save you a lot of confusion.
| Mistake | Why It's Wrong | How to Fix It |
|---|---|---|
| Forgetting the Interval for M | The value | Always identify your interval |
| Using the Wrong Formula Term | Mixing up the terms, for example, using | Write the full formula down before you plug in numbers. Double-check each component: |
| Confusing the Error with the Approximation | Taylor's Inequality calculates the bound on the error, not the value of the approximation itself. Students sometimes report the error bound as the answer to 'estimate the value'. | Remember there are two parts to the problem: first, find the approximation (e.g., |
| Using Degrees Instead of Radians | The formulas for the derivatives of trigonometric functions like | Always convert angles to radians before using these formulas. Remember |
Taylor's Inequality: A Quick Reference
Here is a quick summary of the key ideas for finding the error of a linear approximation.
- Objective: To find a guaranteed maximum error when approximating a function
with a simpler polynomial, like a tangent line . - The Error Term: The error is the difference between the actual function and the approximation,
. - The Key Insight: The error depends on the distance from the approximation's center point (
) and the 'bendiness' of the function on the interval. - The Formula: The absolute error for a linear approximation is bounded by:
Where:
is the point where the approximation is centered. is the point where you are making your estimate. is the maximum value of the function's 'bendiness' (the absolute value of its second derivative) on the interval between and .
Frequently Asked Questions
Why can't we just use a calculator to find the value?
That's a great question! Taylor's Inequality helps us understand *how* a calculator works. Calculators and computers don't have a giant list of values; they use polynomial approximations to compute them very quickly. Understanding the error bound is crucial for the people who program those devices to ensure the answers are accurate.
What does 'bounding the error' actually mean?
Bounding the error means finding a 'worst-case scenario.' We are calculating a number that the actual error is guaranteed to be less than or equal to. Your approximation might be much better than the bound suggests, but it will never be worse.
Is 'maximum bendiness' a real mathematical term?
'Maximum bendiness' is an intuitive way to describe the concept for this lesson. In formal calculus, this concept is called the 'maximum value of the absolute second derivative' on an interval. Our term captures the same idea: how sharply the function's slope is changing.
Does the approximation get better if I choose a closer center point?
Yes, absolutely. The error formula has the term
Is this used in the real world?
All the time. It's fundamental to scientific computing, engineering, physics, and even finance. Anywhere a complex system is modeled with a simpler equation, Taylor's Inequality is used to understand the limitations and accuracy of that model.
What happens if I use a more complicated polynomial, like a quadratic?
Using a more complicated polynomial (like a quadratic that matches the curve's value, slope, and bendiness) will almost always give you a much better approximation. The formula for the error bound also changes, becoming slightly more complex, but it follows the same core principles.
Does the error bound always have to be positive?
Yes. The error itself,