Parametric Surfaces
Parametric Equations and Surface Patches
A parametric surface works by using two parameters to trace out a surface in 3D space. You define a vector-valued function that takes each point in a 2D domain and maps it to a point in .
Each point on the surface corresponds to a pair of parameter values within a specified domain. A surface patch is the portion of the surface you get by restricting and to a bounded range. Think of it as cutting out a piece of the full surface by limiting the parameter window.
Example (unit sphere): Set , , , with and . Here sweeps around the equator (longitude) and sweeps from the north pole to the south pole (colatitude). Fixing and varying traces out a circle of latitude; fixing and varying traces a meridian.
One thing to watch: parametric representations aren't always one-to-one everywhere. The sphere parametrization above collapses to a single point at (north pole) and (south pole) regardless of . These are not defects of the sphere itself, just artifacts of the parametrization.
Parameter Space and Coordinate Functions
The parameter space (or parameter domain) is the region in the -plane over which and range. It's typically a rectangle, but it can be any connected region.
The three coordinate functions , , are the scalar components of . They do the actual work of placing each pair at a specific location in space.
Example (torus): A torus with major radius (center of the tube to the center of the torus) and minor radius (radius of the tube) has the parametrization:
with and . The parameter controls rotation around the central axis of the torus, while controls rotation around the tube itself. The parameter domain is a rectangle in the -plane, but opposite edges get identified, which is why the torus is topologically a "rolled-up" rectangle.

Coordinate Systems
Cartesian, Cylindrical, and Spherical Coordinates
Different coordinate systems make certain parametrizations much easier to write down. Choosing the right system for a given surface can save significant work.
Cartesian coordinates use three perpendicular axes. They're the default, but they aren't always the most natural choice for curved surfaces.
Cylindrical coordinates use a radial distance from the -axis, an angle in the -plane measured from the positive -axis, and the usual height .
- Conversion to Cartesian: , ,
Cylindrical coordinates are the natural choice for surfaces with axial symmetry about the -axis, such as cylinders and cones. For instance, the cylinder is simply in cylindrical coordinates, giving the parametrization .
Spherical coordinates use a distance from the origin, an azimuthal angle in the -plane, and a polar angle measured from the positive -axis.
- Conversion to Cartesian: , ,
Spherical coordinates are ideal for surfaces centered at the origin, like spheres and cones defined by a fixed polar angle.
Convention warning: Some textbooks swap the roles of and , or use for the azimuthal angle and for the polar angle. Always check which convention your course uses before plugging into formulas.
Worked example: Convert the spherical point to Cartesian.
So the Cartesian point is .

Surface Representations
Level Surfaces and Implicit Equations
Not every surface starts life as a parametric equation. A level surface is defined implicitly by an equation , where is a constant. Every point satisfying that equation lies on the surface.
Example: The equation defines the unit sphere. Here , and the sphere is the level surface at . Choosing different values of gives concentric spheres of radius .
Implicit equations define surfaces without giving you an explicit parametrization. This is useful for visualization (plotting several level surfaces of at different -values reveals the structure of a scalar field), but for computing surface integrals or areas you'll usually need to convert to a parametric form.
Example: The level surfaces of are the surfaces . Each one is a circular paraboloid (bowl opening upward) shifted vertically by . Stacking several of these for different -values shows how the function varies through space.
Going between representations: You can often convert an implicit surface to a parametric one. For the paraboloid , set and to get . Alternatively, using cylindrical coordinates gives , which is often cleaner for integration because it exploits the surface's rotational symmetry.