Tangent Planes and Linear Approximations
Tangent planes and linear approximations let you replace a complicated surface with a simple flat one near a specific point. This is the multivariable version of the same idea from Calc I, where you used the tangent line to approximate a curve. Here, partial derivatives define a tangent plane that hugs the surface at a given point, and you can use that plane to estimate nearby function values without plugging into the original (often messy) function.
Tangent Planes and Linear Approximations

Tangent plane equation for surfaces
A tangent plane touches a surface at a single point and lies flat against it there, just like a tangent line touches a curve. It's the best possible flat surface to approximate the shape near that point.
To write the equation, you need two things:
- The point of tangency , where
- The partial derivatives and , which capture how the surface slopes in the - and -directions
The tangent plane equation is:
Notice the structure: each partial derivative multiplies the displacement in its corresponding variable. If both partial derivatives are zero, the tangent plane is horizontal.
Steps to find a tangent plane:
- Identify the point and compute .
- Find and using standard differentiation rules (power rule, chain rule, etc.).
- Evaluate both partial derivatives at .
- Plug everything into the tangent plane equation above.
For example, if at the point , you get and , so the tangent plane is .

Function approximation using tangent planes
The tangent plane doubles as a tool for estimating function values. Because the plane hugs the surface near the point of tangency, you can plug a nearby into the plane equation instead of the original function and get a reasonable estimate.
Rearranging the tangent plane equation gives the linearization (or linear approximation):
This is often written as and called the linearization of at .
The approximation works best when is close to . As you move farther away, the surface curves away from the plane and the estimate gets worse. Think of it like zooming in on a topographic map: up close, the terrain looks flat, but zoom out and the hills become obvious.
Normal lines to surfaces
The normal line is perpendicular to the tangent plane at the point of tangency. It points straight "out" from the surface, like a flagpole sticking out of a hillside.
The direction of the normal line comes directly from the tangent plane equation. For a surface , the direction vector of the normal line is:
This vector is normal to the tangent plane because the plane has the form , and the coefficients of in a plane equation give its normal vector.
The parametric equations of the normal line are:
where is the parameter. At you're at the point of tangency; as varies, you move along the line in both directions.
Steps to find the normal line:
- Compute and and evaluate them at .
- Form the direction vector .
- Write the parametric equations using the point and the direction vector.
Linear approximations for multivariable functions
Everything above extends naturally to functions of three or more variables. You can't visualize a tangent "plane" in 4D, but the algebra works the same way.
For a function , the linear approximation at a base point is:
Each partial derivative captures the rate of change along one coordinate axis, and the full approximation combines all of them. The pattern generalizes to any number of variables: one term per variable, each involving that variable's partial derivative.
Steps for a three-variable linear approximation:
- Choose the base point and compute .
- Find , , and , then evaluate each at the base point.
- Substitute into the formula above.
- Plug in the point you want to estimate.
As with two variables, accuracy drops off as you move farther from the base point. The linear approximation captures only first-order behavior; it misses curvature entirely. For better accuracy far from the base point, you'd need higher-order (quadratic) approximations, which show up later with Taylor series in several variables.