Fiveable

5๏ธโƒฃMultivariable Calculus Unit 3 Review

QR code for Multivariable Calculus practice questions

3.5 Tangent Planes and Linear Approximations

3.5 Tangent Planes and Linear Approximations

Written by the Fiveable Content Team โ€ข Last updated August 2025
Written by the Fiveable Content Team โ€ข Last updated August 2025

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, Multivariable Calculus - Wikiversity

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 (x0,y0,z0)(x_0, y_0, z_0), where z0=f(x0,y0)z_0 = f(x_0, y_0)
  • The partial derivatives fx(x0,y0)f_x(x_0, y_0) and fy(x0,y0)f_y(x_0, y_0), which capture how the surface slopes in the xx- and yy-directions

The tangent plane equation is:

zโˆ’z0=fx(x0,y0)(xโˆ’x0)+fy(x0,y0)(yโˆ’y0)z - z_0 = f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)

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:

  1. Identify the point (x0,y0)(x_0, y_0) and compute z0=f(x0,y0)z_0 = f(x_0, y_0).
  2. Find fx(x,y)f_x(x, y) and fy(x,y)f_y(x, y) using standard differentiation rules (power rule, chain rule, etc.).
  3. Evaluate both partial derivatives at (x0,y0)(x_0, y_0).
  4. Plug everything into the tangent plane equation above.

For example, if f(x,y)=x2+y2f(x,y) = x^2 + y^2 at the point (1,1,2)(1, 1, 2), you get fx=2x=2f_x = 2x = 2 and fy=2y=2f_y = 2y = 2, so the tangent plane is zโˆ’2=2(xโˆ’1)+2(yโˆ’1)z - 2 = 2(x - 1) + 2(y - 1).

Tangent plane equation for surfaces, Tangent Planes and Linear Approximations ยท Calculus

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 (x,y)(x, y) 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):

f(x,y)โ‰ˆf(x0,y0)+fx(x0,y0)(xโˆ’x0)+fy(x0,y0)(yโˆ’y0)f(x, y) \approx f(x_0, y_0) + f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)

This is often written as L(x,y)L(x, y) and called the linearization of ff at (x0,y0)(x_0, y_0).

The approximation works best when (x,y)(x, y) is close to (x0,y0)(x_0, y_0). 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 z=f(x,y)z = f(x,y), the direction vector of the normal line is:

โŸจfx(x0,y0),โ€…โ€Šfy(x0,y0),โ€…โ€Šโˆ’1โŸฉ\langle f_x(x_0, y_0),\; f_y(x_0, y_0),\; -1 \rangle

This vector is normal to the tangent plane because the plane has the form fx(xโˆ’x0)+fy(yโˆ’y0)โˆ’(zโˆ’z0)=0f_x(x - x_0) + f_y(y - y_0) - (z - z_0) = 0, and the coefficients of x,y,zx, y, z in a plane equation give its normal vector.

The parametric equations of the normal line are:

x=x0+tโ€‰fx(x0,y0)x = x_0 + t\,f_x(x_0, y_0) y=y0+tโ€‰fy(x0,y0)y = y_0 + t\,f_y(x_0, y_0) z=z0โˆ’tz = z_0 - t

where tt is the parameter. At t=0t = 0 you're at the point of tangency; as tt varies, you move along the line in both directions.

Steps to find the normal line:

  1. Compute fxf_x and fyf_y and evaluate them at (x0,y0)(x_0, y_0).
  2. Form the direction vector โŸจfx,fy,โˆ’1โŸฉ\langle f_x, f_y, -1 \rangle.
  3. Write the parametric equations using the point (x0,y0,z0)(x_0, y_0, z_0) 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 f(x,y,z)f(x, y, z), the linear approximation at a base point (x0,y0,z0)(x_0, y_0, z_0) is:

f(x,y,z)โ‰ˆf(x0,y0,z0)+fx(x0,y0,z0)(xโˆ’x0)+fy(x0,y0,z0)(yโˆ’y0)+fz(x0,y0,z0)(zโˆ’z0)f(x, y, z) \approx f(x_0, y_0, z_0) + f_x(x_0, y_0, z_0)(x - x_0) + f_y(x_0, y_0, z_0)(y - y_0) + f_z(x_0, y_0, z_0)(z - z_0)

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:

  1. Choose the base point (x0,y0,z0)(x_0, y_0, z_0) and compute f(x0,y0,z0)f(x_0, y_0, z_0).
  2. Find fxf_x, fyf_y, and fzf_z, then evaluate each at the base point.
  3. Substitute into the formula above.
  4. 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.