Tangent Planes and Normal Vectors
A tangent plane is the flat surface that best approximates a smooth surface at a given point. If you zoom in far enough on a smooth surface near that point, the surface and its tangent plane become nearly indistinguishable. Understanding tangent planes is essential for linear approximation in multiple variables and for analyzing how surfaces behave locally.
Finding tangent planes relies on partial derivatives and gradient vectors. This section covers how to compute the equation of a tangent plane, how gradients connect to normal vectors, and how level surfaces tie everything together.
Defining Tangent Planes and Normal Vectors
A tangent plane to a surface at a point is the plane that just touches the surface at that point and matches the surface's "tilt" in every direction. For a smooth surface, the tangent plane contains all the tangent lines to curves on the surface passing through that point.
A normal vector is a vector perpendicular to the tangent plane at the point of tangency. Once you know a normal vector and the point, the tangent plane is fully determined.
- The normal vector is computed using partial derivatives of the surface equation (details below).
- Every nonzero scalar multiple of is also a valid normal vector, so the normal direction is unique but the vector itself is not.
Finding the Equation of a Tangent Plane
The general equation of a tangent plane at with normal vector is:
Case 1: Surface given as
Rewrite the surface as . The normal vector at is then , and the tangent plane equation becomes:
Step-by-step process:
- Compute and .
- Evaluate both at the point .
- Plug into the formula above, using .
Example: Find the tangent plane to at .
- , .
- At : , .
- Tangent plane: , which simplifies to .
The normal vector here is .
Case 2: Surface given implicitly as
Use the gradient evaluated at the point as the normal vector. The tangent plane equation is:
This is the more general approach and works for any smooth surface, including level surfaces.

Partial Derivatives and Gradients
Partial Derivatives in Multivariable Functions
Partial derivatives measure the rate of change of a function with respect to one variable while all other variables are held constant.
- is computed by differentiating with respect to , treating as constants.
- does the same but with respect to .
For tangent planes, partial derivatives tell you the slope of the surface in the - and -directions independently. Together they determine how the surface tilts at a point.

Gradient Vector and Its Applications
The gradient vector of a function is:
Two key properties make the gradient central to tangent plane problems:
- points in the direction of greatest rate of increase of .
- is perpendicular to the level surface at every point on that surface. This means the gradient is the normal vector you need for the tangent plane.
Example: For , the gradient is . At , this gives , which serves as the normal vector to the tangent plane.
Level Surfaces
Understanding Level Surfaces
A level surface of a function is the set of all points where takes a constant value:
These are the 3D analog of contour lines (level curves) for functions of two variables. Each value of gives a different surface.
Example: For , the level surfaces are spheres centered at the origin. The level surface is a sphere of radius 2; is a sphere of radius 3.
Relationship between Level Surfaces and Gradient Vectors
The gradient at any point on a level surface is perpendicular to that surface. This is the fundamental link between gradients and tangent planes:
- To find the tangent plane to a level surface at a point, compute at that point and use it as the normal vector.
- This works because any curve lying on the level surface has a tangent vector perpendicular to , so must be normal to the surface.
Example: For at the point on the level surface :
- . At : .
- Tangent plane: , which simplifies to .
The gradient points radially outward from the origin, which makes geometric sense for a sphere.