multivariable calculus
Tangent Planes and Linear Approximation
You should know: partial derivatives, gradient
Overview
Just as a tangent LINE gives the best linear approximation to a single-variable function at a point, a tangent PLANE gives the best linear approximation to a surface z = f(x,y) at a point. The tangent plane touches the surface at one point and matches both partial derivatives there, hugging the surface closely nearby. This lets us replace a complicated surface with a simple flat plane for small movements away from the point of tangency — the linear approximation (or linearization) L(x,y), which underlies error estimation, optimization algorithms, and the very definition of differentiability in several variables.
Intuition
Standing on a smooth hilltop and looking at just your immediate surroundings, the ground looks essentially flat — that flat approximation IS the tangent plane. Formally, it is built from the same information a tangent line uses (a point and a slope), except now there are two independent 'slopes' (the partial derivatives in the x and y directions), so the tangent object needs to be a plane, not a line, to capture both. Near the point of tangency, the plane and the surface are nearly indistinguishable, which is exactly why the linear approximation is useful: it turns a hard nonlinear computation into simple arithmetic with only a small, controllable error.
Formal Definition
If f has continuous partial derivatives at (a,b), the tangent plane to z=f(x,y) at the point (a, b, f(a,b)) is:
Same expression as the tangent plane, viewed as a function L(x,y) approximating f(x,y)
The change in the tangent plane's height for small changes dx, dy — used to estimate propagated error
Notation
| Notation | Meaning |
|---|---|
| Linearization of f at (a,b): the tangent-plane formula treated as an approximating function | |
| Total differential — the exact change along the tangent plane for small dx, dy | |
| Actual change in f; dz approximates Δz for small Δx, Δy |
Derivation
The tangent plane is derived by requiring it to be a plane through (a,b,f(a,b)) that matches both partial derivatives of f there, since any plane through that point has the form z = f(a,b)+A(x-a)+B(y-b):
General equation of a (non-vertical) plane through the point (a,b,f(a,b))
For the plane to be tangent, its slopes in the x- and y-directions must match f's partial derivatives exactly at (a,b)
Substituting A=f_x(a,b), B=f_y(a,b) gives the tangent plane formula
Properties
Normal vector to the tangent plane
Linearization is exact at the base point
Error estimate via differentials
Theorems
Applications
3D Visualization
Worked Examples
Compute f(1,2) and the partial derivatives.
Substitute into the tangent plane formula.
Simplify: 5 + 2x - 2 + 4y - 8 = 2x + 4y - 5.
Answer: z = 2x + 4y − 5
Practice Problems
Find the tangent plane to f(x,y) = xy at the point (2, 3).
Use linear approximation to estimate √(4.02² + 2.97²) using f(x,y)=√(x²+y²) linearized at (4,3) (note f(4,3)=5).
Ohm's law gives power P = I²R. If a measured current I=2 A and resistance R=8 Ω each have possible error ±0.05, estimate the maximum error in computed power using the total differential.
Common Mistakes
Confusing the tangent plane formula with a first-order Taylor polynomial in only one variable, forgetting the second partial-derivative term entirely.
The tangent plane MUST include both f_x(a,b)(x-a) AND f_y(a,b)(y-b) — omitting either term collapses the plane into a line and loses information about one direction of the surface.
Believing the linear approximation is exact for any size of Δx, Δy.
L(x,y) ≈ f(x,y) is only accurate for SMALL Δx, Δy near (a,b); the approximation error grows (often quadratically) as you move farther from the point of tangency.
Computing the normal vector to the tangent plane as (f_x, f_y, 1) instead of (f_x, f_y, -1).
Writing the surface as F(x,y,z)=f(x,y)-z=0 and taking ∇F gives (f_x, f_y, -1) — the sign on the z-component is negative, not positive.
Quiz
Flashcards
Summary
- The tangent plane z = f(a,b) + f_x(a,b)(x-a) + f_y(a,b)(y-b) is the best flat approximation to a surface at a point.
- The linearization L(x,y) uses this same formula to approximate f(x,y) for points near (a,b).
- The total differential dz = f_x dx + f_y dy estimates the change in f for small changes dx, dy, underlying propagated-error analysis.
- The normal vector to the tangent plane is (f_x, f_y, -1), used for surface normals in graphics and optimization.
- Accuracy of the linear approximation degrades as you move farther from the point of tangency.
References
- BookStewart, J. Calculus: Early Transcendentals, 8th ed. Ch. 14.4.
Mathematics