Linear approximation

Near its point of tangency a tangent can stand in for the curve1. We approximate f(x)=1+xf(x) = \sqrt{1 + x} around x=0x = 0.

Finding the tangent

From f(0)=1f(0) = 1 and f(x)=121+xf'(x) = \dfrac{1}{2\sqrt{1 + x}} we get f(0)=12f'(0) = \dfrac{1}{2}, so the tangent is the following line.

y=1+x2y = 1 + \frac{x}{2}

In general one approximates f(x)f(a)+f(a)(xa)f(x) \approx f(a) + f'(a)(x - a) around x=ax = a. That is a linear approximation.

Accuracy

xx1+x\sqrt{1+x}Approximation 1+x21 + \dfrac{x}{2}Error
0.010.011.00498761.00498761.0051.0050.00001240.0000124
0.10.11.0488091.0488091.051.050.00120.0012
111.414211.414211.51.50.0860.086

Shrinking xx by a factor of ten shrinks the error by a factor of a hundred, because the error is of the order of (xa)2(x - a)^2. It breaks down at a distance, so the approximation serves only near the point of tangency.

Using it to compute

From 101=101.0110×1.005=10.05\sqrt{101} = 10\sqrt{1.01} \approx 10 \times 1.005 = 10.05, a number very close to the true value 10.04987610.049876 comes out by mental arithmetic.

How physics uses it

  • The pendulum approximation sinθθ\sin\theta \approx \theta
  • The relativistic 11v2/c21+v22c2\dfrac{1}{\sqrt{1 - v^2/c^2}} \approx 1 + \dfrac{v^2}{2c^2}
  • The thin-lens approximation in optics

However unwieldy the original expression, over a small range it can be replaced by a line or by a quadratic.

Improving the accuracy

Adding a term improves it.

1+x1+x2x28\sqrt{1 + x} \approx 1 + \frac{x}{2} - \frac{x^2}{8}

At x=1x = 1 the error shrinks from 0.0860.086 to 0.0390.039. Continuing in this direction gives the Taylor expansion, and the coefficient 18-\dfrac{1}{8} of the quadratic term comes from f(0)2\dfrac{f''(0)}{2}2.

The curve on the graph is y=1+xy = \sqrt{1 + x}, the line is the tangent y=1+x2y = 1 + \dfrac{x}{2}, and the large dot is the point of tangency (0,1)(0, 1).

  1. Linear approximation, Wikipedia
  2. Taylor series, Wikipedia