Taylor Expansions and Approximation in Applied Contexts
00 · Symbol Glossary
$L(x)$L of x — linearization
The degree-1 Taylor polynomial T1(x) (Chapter 11), renamed L(x) here to emphasize its role as the best straight-line approximation to f near a point.
$\Delta x$Delta x — input perturbation
A small change applied to the input of a function, distinct from dx in that it need not be infinitesimally small — used throughout this chapter to represent a realistic-sized error or shift.
$\Delta f \approx f'(a)\,\Delta x$propagated change (linear approximation)
The estimated change in f's output caused by a small change Δx in its input, using only the first-derivative term of the Taylor polynomial (Chapter 11).
01 · Linearization
Chapter 11 built the Taylor polynomial Tn(x) and bounded its error with the Lagrange remainder. The simplest, most-used case in practice is n=1: approximating a function by its tangent line.
Definition — Linearization
The linearization of f at a is T1(x) from Chapter 11, given a new name to emphasize its use:
L(x)=f(a)+f′(a)(x−a)
For x near a: f(x)≈L(x), with error bounded by Chapter 11's formula (with n=1): ∣R1(x)∣≤2!M∣x−a∣2, where M bounds ∣f′′∣ between a and x.
Step-by-step — Linearize $f(x)=\sqrt{x}$ at $a=25$ and estimate $\sqrt{26}$
1
Compute f(a) and f′(a):f(25)=25=5. f′(x)=21x−1/2 (Chapter 02 power rule), so f′(25)=2251=101.
2
Build the linearization:L(x)=5+101(x−25).
3
Substitute x=26:L(26)=5+101(1)=5.1.
4
Bound the error using Chapter 11's remainder formula:f′′(x)=−41x−3/2, so ∣f′′(x)∣=4x3/21, decreasing for larger x; on [25,26] its largest value is at x=25: M=4(125)1=5001=0.002.
5
Apply the bound with n=1, ∣x−a∣=1:∣R1(26)∣≤2!0.002(1)2=0.001.
6
Check against the true value:26≈5.0990; the estimate 5.1 has actual error ≈0.0010, matching the bound from step 5 almost exactly.
02 · Quadratic Approximation
Including one more term from the Taylor polynomial (Chapter 10, Section 03) improves accuracy, at the cost of a slightly more complex formula.
Definition — Quadratic Approximation
Q(x)=f(a)+f′(a)(x−a)+2f′′(a)(x−a)2
This is T2(x) from Chapter 11, with error bounded by ∣R2(x)∣≤3!M∣x−a∣3 where M bounds ∣f′′′∣.
Step-by-step — Quadratic approximation of $\sqrt{x}$ at $a=25$, re-estimating $\sqrt{26}$
1
**Reuse f(25)=5, f′(25)=0.1 from Section 01.
2
Compute f′′(25):f′′(x)=−41x−3/2 (Section 01, step 4), so f′′(25)=−4(125)1=−0.002.
Compare to the true value 26≈5.09902: the quadratic estimate's error is about 0.00002, roughly 50× smaller than the linear estimate's error from Section 01 — one extra term meaningfully tightens the approximation.
03 · Error Propagation
Linearization has a second, equally important use: estimating how an error or uncertainty in an input propagates into an error in the output of a function applied to it.
If x carries a small error or perturbation Δx, the resulting change in f(x) is approximately
Δf≈f′(a)Δx
— exactly Section 01's linearization formula, read as "change in output ≈ slope × change in input."
Step-by-step — Propagate a pricing input error through $f(x) = x^3$
1
Set up the scenario: a quantity x=10 is measured with a possible error of Δx=0.2; find the approximate resulting error in f(x)=x3.
2
Differentiate:f′(x)=3x2 (Chapter 02 power rule), so f′(10)=300.
3
Apply the propagated-error formula:Δf≈f′(10)⋅Δx=300(0.2)=60.
4
Check against the exact change:f(10.2)−f(10)=10.23−103=1061.208−1000=61.208. The linear estimate (60) is close to the exact change (61.208) but not identical — the gap (1.208) is exactly the higher-order remainder terms the linear approximation ignores.
❌ Trusting the linear approximation far from the center point
Applying the same linearization from Section 01 (L(x)=5+0.1(x−25) for x) to estimate 100 instead of 26: L(100)=5+0.1(75)=5+7.5=12.5.
Why it breaks: the true value is 100=10, so the linear estimate is off by 2.5 — far worse than Section 01's error of about 0.001 at x=26. Chapter 11's error bound formula explicitly grows with ∣x−a∣n+1; here ∣x−a∣=∣100−25∣=75, dramatically larger than the ∣x−a∣=1 used validly in Section 01.
Consequence: a linearization (or any fixed-order Taylor approximation) is only trustworthy for xclose to the center a — the error bound's dependence on ∣x−a∣n+1 means accuracy degrades rapidly, not gracefully, as x moves away from a. Always check that the intended input is close to the center before relying on a linear or quadratic approximation.
04 · Quant Application — Price Sensitivity to a Changing Input
A quantity's sensitivity to a changing driver is a direct linear/quadratic approximation problem, exactly as in Sections 01–02.
Example — Approximating a price change from first and second derivatives
A bond's price as a function of the prevailing yield y is P(y), currently at y=0.04 (i.e. 4%) with P(0.04)=1000 dollars. Suppose P′(0.04)=−4200 and P′′(0.04)=38,000 (values obtained from the pricing model, not derived here). Estimate the price if the yield rises to y=0.045 (a Δy=0.005 increase), using the quadratic approximation from Section 02:
The linear term alone (−21) already captures most of the price move (bond prices fall as yields rise, consistent with P′(0.04)<0); the quadratic term (+0.475) is a smaller correction that slightly offsets the linear estimate — in finance, these two terms are traditionally named duration (the linear, first-derivative sensitivity) and convexity (the quadratic, second-derivative correction), but the underlying mathematics is exactly Section 02's Taylor approximation, nothing more.
05 · Small-Input Approximations
Certain Taylor approximations are common enough, for small enough inputs, to be used as standing rules of thumb.
Definition — Small-Angle Approximations
For x near 0 (in radians — Chapter 02's trig derivatives were built on limit facts stated in radians, and these approximations inherit that requirement):
sinx≈xcosx≈1−2x2
Both follow directly from truncating the Maclaurin series (Chapter 10, 11) after the first nonzero term.
Step-by-step — Bound the error of sin(x) ≈ x at x = 0.1
1
Identify this as a Taylor approximation with a=0, n=1:sinx≈x is T1(x) for f(x)=sinx (since f(0)=0, f′(0)=cos0=1, giving T1(x)=0+1⋅x=x, Chapter 02, Section 09).
2
Apply Chapter 11's error bound with M bounding ∣f′′∣=∣−sinx∣≤1 always:∣R1(0.1)∣≤2!1(0.1)2=20.01=0.005.
3
Check against the true value:sin(0.1)≈0.09983; the approximation 0.1 has actual error ≈0.00017, comfortably inside the bound of 0.005.
❌ Applying the small-angle approximation with degrees instead of radians
Estimating sin(10°) using sinx≈x by plugging in x=10 directly: sin(10°)≈?10.
Why it breaks: Chapter 02, Section 09 built dxd[sinx]=cosx using the limit fact limh→0hsinh=1, which is only true when h is measured in radians — in degrees, that limit evaluates to a different constant entirely (related to π/180), so the entire derivative (and hence the whole Taylor series built from it) assumed radian input from the start.
Consequence:10° in radians is 10×180π≈0.1745, and sin(10°)=sin(0.1745 rad)≈0.1736 — reasonably close to 0.1745 (small-angle approximation applied correctly, in radians). But treating "10" as if it were already in radians and writing sin(10°)≈10 is wrong by roughly a factor of 57 — the small-angle approximation is only valid once the angle is converted to radians first.
06 · Exercises
EXERCISE 20.1
Compute f(a) and f′(a) at a nearby convenient point, then build and evaluate the linearization.
f(x)=3x near a=8: f(8)=2, f′(x)=31x−2/3, f′(8)=31(4)−1=121. L(x)=2+121(x−8). Estimate 39: L(9)=2+121(1)=2+0.0833=2.0833. (True value 39≈2.0801.)
Use linearization to estimate 39, centering at a=8.
EXERCISE 20.2
Add the quadratic term to Exercise 20.1's linearization, using the second derivative evaluated at the same center point.
f′′(x)=−92x−5/3, f′′(8)=−92(32)−1=−2882=−1441. Q(x)=2+121(x−8)−2881(x−8)2. At x=9: Q(9)=2+0.0833−2881(1)=2.0833−0.00347≈2.0799, closer to the true value 2.0801 than the linear estimate.
Use the quadratic approximation to re-estimate 39 from Exercise 20.1, and compare accuracy.
EXERCISE 20.3
Differentiate to find the sensitivity (rate of change), then multiply by the given input perturbation.
f(x)=x2, x=5, Δx=0.1. f′(x)=2x, f′(5)=10. Δf≈10(0.1)=1. Exact: f(5.1)−f(5)=26.01−25=1.01 — the linear estimate is close, off by 0.01.
Estimate the propagated change in f(x)=x2 at x=5 when Δx=0.1, and compare to the exact change.
EXERCISE 20.4
Recall which factor in the Taylor error bound formula grows as the input moves away from the center, and by how much.
The error bound ∣Rn(x)∣≤(n+1)!M∣x−a∣n+1 (Chapter 11) grows with the (n+1)-th power of the distance from the center a. So doubling the distance ∣x−a∣ increases the worst-case error bound by a factor of 2n+1 — for a linearization (n=1), that's a factor of 4; moving far from the center degrades accuracy rapidly, not proportionally.
Explain, using Chapter 11's error bound formula, why a linear approximation becomes unreliable "rapidly" (not just gradually) as the input moves away from the center point.
EXERCISE 20.5
This is the small-angle cosine approximation from Section 05 — apply it directly, making sure the input is in radians.
Estimate cos(0.2) (radians) using cosx≈1−2x2: 1−2(0.2)2=1−20.04=1−0.02=0.98. True value cos(0.2)≈0.98007 — accurate to about 0.00007.
Use the small-angle approximation to estimate cos(0.2) (in radians), and compare to the true value cos(0.2)≈0.98007.
EXERCISE 20.6
Apply the same linear-plus-quadratic sensitivity formula from Section 04, using the given first and second derivative values.
A portfolio's value V(r) as a function of an interest rate r has V(0.03)=50,000, V′(0.03)=−180,000, V′′(0.03)=900,000. Estimate ΔV for Δr=0.002: ΔV≈V′(0.03)Δr+2V′′(0.03)(Δr)2=(−180,000)(0.002)+2900,000(0.002)2=−360+450(0.000004)=−360+0.0018≈−359.998. The linear term dominates almost entirely here; the quadratic correction is negligible at this small Δr.
A portfolio's value V(r) has V(0.03)=50,000, V′(0.03)=−180,000, V′′(0.03)=900,000. Estimate the change in value ΔV if the rate rises by Δr=0.002.
07 · Chapter Summary
Concept
Formula / Rule
Linearization
L(x)=f(a)+f′(a)(x−a); error ≤2!M∣x−a∣2
Quadratic approximation
Q(x)=L(x)+2f′′(a)(x−a)2; error ≤3!M∣x−a∣3
Propagated error
Δf≈f′(a)Δx
Accuracy vs. distance from center
Error bound grows with ∣x−a∣n+1 — degrades rapidly, not gradually
Price sensitivity (linear + quadratic)
ΔP≈P′(y)Δy+2P′′(y)(Δy)2
Small-angle approximations
sinx≈x, cosx≈1−2x2 for small xin radians
This closes the full 20-chapter Calculus sequence: limits and derivatives (01–05), integrals (06–08), series and Taylor approximation (09–12, 20), curves and multivariable calculus (13–17), and differential equations (18–19) — the complete single- and multi-variable toolkit, from first principles through applied approximation.