The tangent plane to a smooth surface at a point is the plane that best approximates the surface near . It’s the 2D analog of the tangent line to a 1D curve: the local linear approximation that touches the surface at and matches its first-order behaviour.

A smooth surface in 3D has a unique tangent plane at every point (and a unique unit normal direction, up to sign). Together they’re the surface’s local geometry, the flat ground a tiny insect would feel underfoot.

Two ways to specify a plane in 3D

A plane through point is determined by either:

  • A normal vector . Equation: .
  • Two non-parallel direction vectors . Parameterisation: .

Both forms come up below. Sometimes the surface description gives you the normal directly, sometimes the tangent vectors.

From a parameterised surface

For a parameterised surface at parameter point :

The two partial derivatives

are tangent vectors to the - and -coordinate curves through . They span the tangent plane.

The Cross product

is normal to the tangent plane. The plane equation:

with .

The smoothness condition is exactly what guarantees the tangent plane is well-defined: nonzero cross product means and aren’t parallel, so they span a plane (not a line).

From a graph

For a surface given as the graph of a function, parameterise as . Then , , and

Tangent plane at :

This is the first-order Taylor expansion of at . The tangent plane is the linear approximation for near .

Worked example. at . , . Tangent plane:

Check: at , the plane gives . Match.

From a level surface

For a surface defined implicitly by , the gradient is normal to the surface (because the gradient is perpendicular to level sets). So:

Tangent plane:

This is often the cleanest approach when the surface is given implicitly — no need to convert to a parameterisation or solve for .

Worked example. Sphere at . . Tangent plane:

is itself the (unnormalised) outward normal to the sphere at , since the sphere is centered at the origin, so the gradient points the same direction.

Where it’s useful

Being the local linear approximation, it shows up wherever first-order behaviour matters:

  • Linear approximation of multivariable functions. where is the tangent plane equation. Used for error estimation and derivative-based optimization in 2D.
  • Setting up surface flux integrals. The vector area element uses the tangent-plane normal.
  • Newton’s method in 2D. Iterate using the tangent plane as a local linearisation of the residual surface.
  • Computer graphics shading. Surface normals (taken from tangent planes) determine how light reflects off polygonal models.
  • Differential geometry foundations. The tangent plane at is the tangent space ; the family of tangent spaces over all is the tangent bundle.
  • Optimization on surfaces. Constrained optimization (Lagrange multipliers) characterises critical points by gradients lying in the surface’s normal direction, i.e. orthogonal to the tangent plane.

Versus tangent line

Side by side with the 1D case:

Concept1D (tangent line)2D (tangent plane)
Underlying objectCurve Surface
Tangent direction(s)One: Two:
Normal direction(s)Two (or any in the perpendicular plane)One (up to sign)
Equation form
First-order Taylor of

Same idea either way: one piece of linear geometry holding all the local first-order information.

In context

The three constructions above feed forward into Scalar surface integral, Flux integral, and the right-hand side of Stokes’ theorem / Divergence theorem.