Approximation Error
How good is the local linear approximation? The approximation error is . For a differentiable function, this error shrinks faster than linearly as .
More precisely, the scaled error as . This is the precise statement that the linear approximation is "first-order accurate" — the error is (little-oh notation, meaning it goes to zero faster than linearly).
This characterization is often taken as the definition of differentiability: is differentiable at with derivative iff there exists a number such that as . This formulation generalizes to multiple dimensions cleanly.
Formal View
Little-oh notation: means . This formalizes "the error is negligible compared to the step size."
Interactive Visualization
Local Linear Approximation
Why This Matters
The scaled error characterization of differentiability extends perfectly to multiple dimensions — it is the definition of the Jacobian.
- In numerical analysis: finite difference approximations have error (first-order) or (second-order); this chapter's result says the LLA has error.
- The definition of the Fréchet derivative (Chapter 11's Jacobian) uses exactly this scaled error condition.
- Taylor series: the scaled-error result is the first step toward the full Taylor expansion.
Quiz
For a differentiable , the scaled error as .
The notation as means:
Common Mistakes
- Confusing (big-oh: bounded by ) with (little-oh: ) — the LLA error is , which is stronger.
- Thinking the LLA error is always small — it is small RELATIVE to near , but can be large far away.