Andromeda
Note

Linearization

Definition

Linearization is the process of replacing a complex, non-linear function with a linear one (its tangent line) that behaves similarly near a specific point of interest.

Why It Matters

Nonlinearity is the truth, but linearity is the usable tool. Linearization allows us to “zoom in” on a complex curve until it looks like a straight line, providing an accurate, simple approximation that powers almost all real-world engineering and control systems.

Core Concepts

  • Linearization Formula: L(x)=f(a)+f(a)(xa)L(x) = f(a) + f'(a)(x - a).
    • How to read: “The linearization L of x equals f of a plus f prime of a times the quantity x minus a.”
    • Meaning / when to use: Equation of the tangent line at x=ax = a; matches value and slope there — good for small perturbations near aa.
  • Center (aa): The specific point where the approximation is exact (L(a)=f(a)L(a) = f(a)).
  • Approximation: f(x)L(x)f(x) \approx L(x) for xx values near aa.
  • Common Forms (at x=0x=0):
    • sinxx\sin x \approx x
    • ex1+xe^x \approx 1 + x
    • (1+x)k1+kx(1 + x)^k \approx 1 + kx
    • How to read: “The sine of x is approximately x, e to the x is approximately one plus x, and the quantity one plus x to the k is approximately one plus k times x.”
    • Meaning: First-order Taylor polynomials at zero — error is O(x2)O(x^2), so the smaller x|x|, the better the estimate (small angles, tiny rate changes, binomial expansions).

Connected Concepts