Parameterization and Surface Area
Parameterization lets you describe a 3D surface using just two parameters, essentially mapping a flat region in the -plane onto a curved surface in space. This is the foundation for computing surface area, because once you have a parameterization, you can use partial derivatives and cross products to measure how much the surface stretches and bends. These ideas connect directly to line integrals and set the stage for surface integrals and flux later in the course.
Parameterization of 3D Surfaces
A parametric surface is defined by a vector-valued function that takes two inputs and produces a point in 3D:
The parameters and range over some domain in the -plane. As varies across , the function traces out the surface in space.
Common parameterizations you should know:
- Planes: , where is a point on the plane and , are two non-parallel vectors lying in the plane. This is the surface analog of a parametric line.
- Spheres (radius ): , where is the polar angle (measured from the positive -axis) and is the azimuthal angle. Be careful: some textbooks swap the roles of and , so always check your convention.
- Cylinders (radius ): . Here wraps around the cylinder and runs along its height.
- Cones (half-angle ): . The radius of each circular cross-section grows linearly with .
When choosing a parameterization, look for the surface's natural symmetry. Spherical symmetry suggests using angles and ; cylindrical symmetry suggests and . For a surface given explicitly as , the simplest choice is to use and themselves as parameters.

Surface Area of Parametric Surfaces
The key idea: at each point on the surface, the partial derivatives and are tangent vectors. Their cross product is normal to the surface, and its magnitude tells you how much area a tiny rectangle in the parameter domain gets stretched into on the surface.
The surface area formula is:
Step-by-step process for computing surface area:
- Write down the parameterization and identify the parameter domain .
- Compute the partial derivatives and , differentiating each component separately.
- Take the cross product . This gives a vector normal to the surface at each point.
- Find the magnitude . Simplify before integrating if possible; algebraic cleanup here saves a lot of pain in the integral.
- Evaluate the double integral over . Choose an integration order that matches the domain's shape, and use substitution or symmetry to simplify.

Surface Area Formula Derivation
The formula comes from approximating the surface with tiny parallelograms.
- Fix a point . A small change in the first parameter moves you along the surface by approximately . Similarly, moves you by .
- These two vectors span a small parallelogram on the surface. The area of a parallelogram with sides and is , so the patch has area approximately .
- Summing over all patches and taking the limit as gives the integral .
There's a more general way to express this using the Jacobian matrix:
This is a matrix (not square), so it doesn't have a traditional determinant. Instead, the area element is:
You can verify that , so this is equivalent to the cross product formula. The form is the more general version (it works in any dimension), but for surfaces in , the cross product approach is usually more practical.
Note: The original guide stated . That's not quite right since is and doesn't have a determinant. The correct relationship is .
Surface Area in Different Coordinate Systems
Choosing coordinates that match the surface's symmetry can dramatically simplify the integral.
Cartesian coordinates work best for surfaces given as . Use the parameterization , which gives:
This follows directly from the general formula. Compute and , take their cross product, and you get with magnitude .
Spherical coordinates are natural for surfaces with spherical symmetry (spheres, caps, portions of spheres). On a sphere of radius :
- Conversion: , ,
- Surface area element:
For example, the full sphere has , which is a good sanity check.
Cylindrical coordinates simplify calculations for cylinders and surfaces of revolution. On a cylinder of radius :
- Conversion: , ,
- Surface area element:
The lateral surface area of a cylinder of radius and height is then , matching the familiar formula.
When deciding which coordinate system to use, ask yourself: does the surface have a natural axis of symmetry? If it's round in cross-section, cylindrical or spherical coordinates will likely make the cross product and the resulting integral much cleaner than Cartesian.