13.310 min read
Local Linear Approximation for Vector-Valued Functions
Just as scalar functions are locally approximated by affine functions, vector-valued functions are locally approximated by affine maps (linear map plus constant). The LLA of at is:
This means: near the point , the vector-valued function behaves like the linear (actually affine) function . Geometrically, the Jacobian matrix is the best linear approximation to near — it captures how infinitesimal input changes map to infinitesimal output changes.
The approximation error satisfies when is differentiable at .
Formal View
Definition 13.3 — LLA for Vector-Valued Functions
The local linear approximation of at is the affine map
is differentiable at if .
Why This Matters
The LLA for vector-valued functions is the engine of the multivariable chain rule and automatic differentiation.
- Forward-mode automatic differentiation propagates perturbations through function compositions using the LLA
- Newton's method for nonlinear systems uses the Jacobian to linearize the system
- Sensitivity analysis: how does a vector output change when a vector input changes slightly?
Quiz
Question 1
The LLA of at is . For , this gives:
Question 2
The Jacobian is the unique matrix such that .
Common Mistakes
- Forgetting the constant term — the LLA is affine, not linear.
- Using the LLA far from where the approximation breaks down.
- Confusing the LLA (vector-valued) with the tangent plane (the graph of the scalar LLA).