applications of derivatives
Linear Approximation and Differentials
You should know: derivative
Overview
Linear approximation (also called linearization) uses the tangent line to approximate f(x) near a point a: L(x) = f(a) + f'(a)*(x-a). Near a, f(x) ~= L(x). This approximation is valid when x is close to a and f is smooth. The related concept of differentials: if y = f(x), then dy = f'(x)*dx formalizes how a small change dx in x causes a change dy in y. Linear approximation underlies Newton's method, numerical root-finding, and sensitivity analysis in applied mathematics.
Intuition
Zoom in on any smooth function near a point: the graph looks more and more like a straight line (the tangent line). The tangent line IS the linear approximation. For x close to a, f(x) ~= f(a) + f'(a)*(x-a) because the tangent line and the curve are nearly indistinguishable at small scale. Example: sqrt(4.1) ~= sqrt(4) + (1/(2*sqrt(4)))*(4.1-4) = 2 + (1/4)*0.1 = 2.025. The true value is 2.0248... -- excellent approximation!
Formal Definition
If f is differentiable at a, the linearization (linear approximation) of f at a is: L(x) = f(a) + f'(a)*(x-a). This is the first-order Taylor polynomial. The error: f(x) - L(x) = o(|x-a|) as x->a, meaning the error grows slower than linearly in |x-a|. If f'' is continuous, the error is O(|x-a|^2): |f(x)-L(x)| <= (M/2)*(x-a)^2 where M = max|f''| on [a,x]. Differentials: if y=f(x), the differential is dy = f'(x) dx, interpreting dx as an increment and dy as the corresponding tangent-line increment.
Notation
| Notation | Meaning |
|---|---|
| Linearization (tangent line) | |
| Differentials | |
| Actual change in y |
Theorems
Worked Examples
- 1
f(x) = (1+x)^5 near a=0. f(0) = 1, f'(x) = 5(1+x)^4, f'(0) = 5.
- 2
L(x) = 1 + 5x. With x = 0.02: L(0.02) = 1 + 0.1 = 1.1.
- 3
True value: (1.02)^5 = 1.1040808... The approximation 1.10 has error ~0.004.
✓ Answer
(1.02)^5 ~= 1.10 (true value: 1.1041).
Practice Problems
Use linear approximation to estimate sin(0.1) (radians). What is the error bound if |f''| <= 1 on [0, 0.1]?
Common Mistakes
Confusing dy (the differential) with Delta y (the actual change).
dy = f'(x)*dx is the change in the tangent line (linear approximation), not the actual change in f. The actual change is Delta y = f(x + Delta x) - f(x). They are equal only to first order: Delta y = dy + O((Delta x)^2). For small dx, dy ~= Delta y, which is why differentials are useful for approximations. But they are not exactly equal.
Quiz
Historical Background
The tangent line as a local approximation to a curve was implicit in Leibniz's and Newton's development of calculus. Leibniz introduced the notation dy, dx for differentials (1684). The idea that every smooth curve 'looks linear' under sufficient magnification is captured precisely by differentiability. Linear approximation is formalized in the first-order Taylor expansion, which generalizes to higher dimensions (Jacobians) and higher orders (Taylor series).
- 1684
Leibniz introduces differential notation dy, dx
Gottfried Wilhelm Leibniz
- 1715
Taylor series developed, generalizing linear approximation to all orders
Brook Taylor
- 1860s
Rigorous analysis: linearization defined via derivative (Weierstrass)
Karl Weierstrass
Summary
- Linearization: L(x) = f(a) + f'(a)*(x-a) is the best linear approximation to f near a.
- Error: |f(x)-L(x)| is O((x-a)^2) when f'' exists and is bounded.
- Differentials: dy = f'(x)*dx relates small input changes to output changes.
- Standard approximations near 0: sin(x)~=x, cos(x)~=1, e^x~=1+x, (1+x)^n~=1+nx.
References
- BookStewart, J. Calculus: Early Transcendentals. 8th ed. Cengage, 2015.
- BookSpivak, M. Calculus. 4th ed. Publish or Perish, 2008.
Mathematics