Finding the Equation of a Tangent Plane- Tutorial

What Is a Tangent Plane and Why Should You Care?

A tangent plane is the flat surface that just touches a curved surface at a single point. Think of it like pressing a sheet of glass against a balloon — the glass touches at one point and follows the curve's slope right there.

In calculus, tangent planes let you approximate multivariable functions near a given point. They're the 3D equivalent of linear approximation for single-variable functions.

You'll need this for:

The Formula You Actually Need

Given a function z = f(x, y) and a point (a, b), the tangent plane at (a, b, f(a, b)) is:

z - f(a,b) = fₓ(a,b)(x - a) + fᵧ(a,b)(y - b)

Where:

That's it. Two partial derivatives plugged into one formula. Everything else is just algebra.

Step-by-Step: Finding the Tangent Plane

Step 1: Find Your Point

You need (a, b) on the xy-plane. The z-value is simply f(a, b). Write down the point (a, b, f(a, b)).

Step 2: Compute the Partial Derivatives

Find fₓ(x, y) by treating y as constant and differentiating with respect to x. Then find fᵧ(x, y) by treating x as constant.

Step 3: Evaluate at Your Point

Plug (a, b) into both partial derivatives. You need the numerical values fₓ(a, b) and fᵧ(a, b).

Step 4: Plug Into the Formula

Substitute everything into z - f(a,b) = fₓ(a,b)(x - a) + fᵧ(a,b)(y - b). Simplify to get z on one side.

Example: Let's Do One Fully

Find the tangent plane to z = x² + 3xy - 2y² at the point (1, 2).

Step 1: Find z at the point

f(1, 2) = 1² + 3(1)(2) - 2(2)² = 1 + 6 - 8 = -1

Point: (1, 2, -1)

Step 2: Partial derivatives

fₓ = 2x + 3y

fᵧ = 3x - 4y

Step 3: Evaluate at (1, 2)

fₓ(1, 2) = 2(1) + 3(2) = 2 + 6 = 8

fᵧ(1, 2) = 3(1) - 4(2) = 3 - 8 = -5

Step 4: Plug in

z - (-1) = 8(x - 1) + (-5)(y - 2)

z + 1 = 8x - 8 - 5y + 10

z = 8x - 5y + 3

Done. That's your tangent plane.

Common Mistakes That Cost You Points

Tangent Plane vs. Linear Approximation

Concept Dimension Formula
Linear approximation (1D) Line tangent to curve L(x) = f(a) + f'(a)(x - a)
Tangent plane (2D) Plane tangent to surface z = f(a,b) + fₓ(a,b)(x-a) + fᵧ(a,b)(y-b)

The pattern is identical. The tangent plane is just the multivariable extension of linear approximation.

When Tangent Plane Approximation Actually Works

Tangent planes give good approximations only very close to (a, b). The further you get from your point, the worse the error.

For surfaces with high curvature, the approximation breaks down fast. For relatively flat regions near your point, it's solid.

Use it when you need a quick estimate or when the function is too complicated to work with directly. Don't use it for large distances from your base point.

Quick Reference Cheat Sheet

Memorize the formula. Practice partial derivatives. That's 90% of this topic right there.