Estimate function values near a point using tangent line linearization. Perfect for quick approximations and understanding differentials.
Linear approximation (or linearization) uses the tangent line at a known point to estimate the function's value at nearby points. It's the first‑order Taylor expansion and is widely used in science, engineering, and finance to simplify complex calculations.
Definition: For a differentiable function f, the linear approximation near x = a is:
L(x) = f(a) + f'(a)·(x - a)
The error (remainder) is approximately ½f''(c)(x-a)² for some c between a and x.
| Function | Linearization L(x) | Valid near |
|---|---|---|
| sin(x) ≈ x | L(x)=x | x=0 |
| cos(x) ≈ 1 | L(x)=1 | x=0 |
| eˣ ≈ 1 + x | L(x)=1+x | x=0 |
| ln(1+x) ≈ x | L(x)=x | x=0 |
| (1+x)ᵏ ≈ 1 + kx | L(x)=1+kx | x=0 |
| √(1+x) ≈ 1 + x/2 | L(x)=1+0.5x | x=0 |
Calculator features:
sqrt(x) – square rootexp(x) – eˣlog(x) – natural logsin(x), cos(x), tan(x)x^n – powerabs(x) – absolute value