Tangent Plane Explained- Pauls Online Notes and Study Guide

What Is a Tangent Plane?

A tangent plane is the flat surface that touches a curved surface at exactly one point. Think of it like a sheet of glass barely resting on a hill — it only makes contact at a single peak or valley point. In calculus, this plane gives you the best linear approximation of a surface near that point.

You find tangent planes the same way you find tangent lines in 2D: through derivatives. But now you're working with functions of two variables, so you need partial derivatives instead of ordinary ones.

The Formula

For a surface defined by z = f(x, y), the tangent plane at point (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 a single equation. The geometry underneath is simple — you're using the slopes in the x and y directions to build a flat surface that locally matches the curved one.

Step-by-Step: Finding a Tangent Plane

Step 1: Verify the Function is Differentiable

Before anything else, check that your function actually has partial derivatives at your point. If it doesn't, stop here — you can't build what isn't there.

Step 2: Compute Both Partial Derivatives

Find ∂f/∂x and ∂f/∂y. Treat the other variable like a constant each time.

Step 3: Evaluate at Your Point

Plug (a, b) into both partial derivatives. Also find f(a, b) for the right side of the equation.

Step 4: Plug Into the Formula

Substitute everything into z - f(a,b) = fₓ(a,b)(x - a) + fᵧ(a,b)(y - b). Simplify if needed.

Worked Example

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

Step 1: Find f(1, 2) = 1² + 2(1)(2) - 2² = 1 + 4 - 4 = 1

Step 2: Compute partials.

Step 3: Evaluate at (1, 2).

Step 4: Plug in.

z - 1 = 6(x - 1) + (-2)(y - 2)

z - 1 = 6x - 6 - 2y + 4

z = 6x - 2y - 1

That's your tangent plane. You can verify: at (1, 2), z = 6(1) - 2(2) - 1 = 1 ✓

Tangent Plane vs. Tangent Line: The Comparison

Aspect2D Tangent Line3D Tangent Plane
Applies toCurves y = f(x)Surfaces z = f(x,y)
RequiresOne derivative f'(a)Two partials fₓ(a,b), fᵧ(a,b)
Formulay - f(a) = f'(a)(x - a)z - f(a,b) = fₓ(a,b)(x-a) + fᵧ(a,b)(y-b)
ApproximatesFunction near x = aFunction near (a, b)

Why This Matters

Tangent planes show up in optimization problems, physics, and engineering. When you linearize a surface, you're approximating a complicated function with something you can actually work with. Newton's method in multiple dimensions uses this idea. So does gradient descent in machine learning.

The plane also gives you the equation of the normal vector: ⟨fₓ(a,b), fᵧ(a,b), -1⟩. If you need the line perpendicular to the surface, that's where you find it.

Getting Started: Your Checklist

Common Mistakes

Forgetting to evaluate the partials at the point. Students often compute fₓ and fᵧ correctly but then leave them as expressions in x and y. They need numbers by the time you substitute.

Mixing up the signs. The formula is (x - a) and (y - b), not (a - x). Watch where your minus signs land.

Not checking differentiability first. If the function has a corner or cusp at your point, no tangent plane exists. The math won't save you from a geometric impossibility.

Where to Practice

Pauls Online Notes covers tangent planes in the Calculus III section with worked problems and additional explanations. Work through his examples until the process feels automatic. The formula is straightforward — the skill comes from executing it without dropping terms.