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 surface in 3D has at every smooth point a unique tangent plane (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:
Note that is itself the (unnormalised) outward normal to the sphere at , since the sphere is centered at the origin — the gradient pointed in the same direction.
Where it’s useful
The tangent plane is the local linear approximation of a surface, so it appears wherever you need first-order behaviour:
- Linear approximation of multivariable functions. where is the tangent plane equation. Used for error estimation, 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
The 1D analog is straightforward to compare:
| Concept | 1D (tangent line) | 2D (tangent plane) |
|---|---|---|
| Underlying object | Curve | 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 |
In both cases the underlying idea is the same: a single piece of linear geometry that captures all the local first-order information.
In context
Tangent planes appear in parameterised surfaces (where they come from ), in implicit-surface theory (where they come from ), and in graphs-of-functions (where they’re the first-order Taylor expansion). They feed forward into Scalar surface integral, Flux integral, and the right-hand side of Stokes’ theorem / Divergence theorem.