Fiveable

5️⃣Multivariable Calculus Unit 6 Review

QR code for Multivariable Calculus practice questions

6.3 Surface Area and Parametric Surfaces

6.3 Surface Area and Parametric Surfaces

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025

Parameterization and Surface Area

Parameterization lets you describe a 3D surface using just two parameters, essentially mapping a flat region in the uvuv-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:

r(u,v)=x(u,v),  y(u,v),  z(u,v)\mathbf{r}(u,v) = \langle x(u,v),\; y(u,v),\; z(u,v) \rangle

The parameters uu and vv range over some domain DD in the uvuv-plane. As (u,v)(u,v) varies across DD, the function r\mathbf{r} traces out the surface in space.

Common parameterizations you should know:

  • Planes: r(u,v)=p+ua+vb\mathbf{r}(u,v) = \mathbf{p} + u\,\mathbf{a} + v\,\mathbf{b}, where p\mathbf{p} is a point on the plane and a\mathbf{a}, b\mathbf{b} are two non-parallel vectors lying in the plane. This is the surface analog of a parametric line.
  • Spheres (radius aa): r(θ,ϕ)=asinϕcosθ,  asinϕsinθ,  acosϕ\mathbf{r}(\theta,\phi) = \langle a\sin\phi\cos\theta,\; a\sin\phi\sin\theta,\; a\cos\phi \rangle, where ϕ[0,π]\phi \in [0,\pi] is the polar angle (measured from the positive zz-axis) and θ[0,2π)\theta \in [0,2\pi) is the azimuthal angle. Be careful: some textbooks swap the roles of θ\theta and ϕ\phi, so always check your convention.
  • Cylinders (radius aa): r(θ,z)=acosθ,  asinθ,  z\mathbf{r}(\theta,z) = \langle a\cos\theta,\; a\sin\theta,\; z \rangle. Here θ\theta wraps around the cylinder and zz runs along its height.
  • Cones (half-angle α\alpha): r(θ,z)=ztanαcosθ,  ztanαsinθ,  z\mathbf{r}(\theta,z) = \langle z\tan\alpha\cos\theta,\; z\tan\alpha\sin\theta,\; z \rangle. The radius of each circular cross-section grows linearly with zz.

When choosing a parameterization, look for the surface's natural symmetry. Spherical symmetry suggests using angles θ\theta and ϕ\phi; cylindrical symmetry suggests θ\theta and zz. For a surface given explicitly as z=f(x,y)z = f(x,y), the simplest choice is to use xx and yy themselves as parameters.

Parameterization of 3D surfaces, Vector Functions | Boundless Calculus

Surface Area of Parametric Surfaces

The key idea: at each point on the surface, the partial derivatives ru\mathbf{r}_u and rv\mathbf{r}_v are tangent vectors. Their cross product ru×rv\mathbf{r}_u \times \mathbf{r}_v is normal to the surface, and its magnitude tells you how much area a tiny rectangle du×dvdu \times dv in the parameter domain gets stretched into on the surface.

The surface area formula is:

SA=Dru×rvdudvSA = \iint_D |\mathbf{r}_u \times \mathbf{r}_v| \, du \, dv

Step-by-step process for computing surface area:

  1. Write down the parameterization r(u,v)\mathbf{r}(u,v) and identify the parameter domain DD.
  2. Compute the partial derivatives ru=ru\mathbf{r}_u = \frac{\partial \mathbf{r}}{\partial u} and rv=rv\mathbf{r}_v = \frac{\partial \mathbf{r}}{\partial v}, differentiating each component separately.
  3. Take the cross product ru×rv\mathbf{r}_u \times \mathbf{r}_v. This gives a vector normal to the surface at each point.
  4. Find the magnitude ru×rv|\mathbf{r}_u \times \mathbf{r}_v|. Simplify before integrating if possible; algebraic cleanup here saves a lot of pain in the integral.
  5. Evaluate the double integral over DD. Choose an integration order that matches the domain's shape, and use substitution or symmetry to simplify.
Parameterization of 3D surfaces, Quadric Surfaces · Calculus

Surface Area Formula Derivation

The formula comes from approximating the surface with tiny parallelograms.

  1. Fix a point (u0,v0)(u_0, v_0). A small change Δu\Delta u in the first parameter moves you along the surface by approximately ruΔu\mathbf{r}_u \,\Delta u. Similarly, Δv\Delta v moves you by rvΔv\mathbf{r}_v \,\Delta v.
  2. These two vectors span a small parallelogram on the surface. The area of a parallelogram with sides A\mathbf{A} and B\mathbf{B} is A×B|\mathbf{A} \times \mathbf{B}|, so the patch has area approximately ru×rvΔuΔv|\mathbf{r}_u \times \mathbf{r}_v|\,\Delta u\,\Delta v.
  3. Summing over all patches and taking the limit as Δu,Δv0\Delta u, \Delta v \to 0 gives the integral Dru×rvdudv\iint_D |\mathbf{r}_u \times \mathbf{r}_v|\,du\,dv.

There's a more general way to express this using the Jacobian matrix:

J=[xuxv$4pt]yuyv$4pt]zuzv]J = \begin{bmatrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \$4pt] \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \$4pt] \frac{\partial z}{\partial u} & \frac{\partial z}{\partial v} \end{bmatrix}

This is a 3×23 \times 2 matrix (not square), so it doesn't have a traditional determinant. Instead, the area element is:

dA=det(JTJ)dudvdA = \sqrt{\det(J^T J)}\, du\, dv

You can verify that det(JTJ)=ru×rv2\det(J^T J) = |\mathbf{r}_u \times \mathbf{r}_v|^2, so this is equivalent to the cross product formula. The JTJJ^T J form is the more general version (it works in any dimension), but for surfaces in R3\mathbb{R}^3, the cross product approach is usually more practical.

Note: The original guide stated ru×rv=det(J)\mathbf{r}_u \times \mathbf{r}_v = \det(J). That's not quite right since JJ is 3×23 \times 2 and doesn't have a determinant. The correct relationship is ru×rv=det(JTJ)|\mathbf{r}_u \times \mathbf{r}_v| = \sqrt{\det(J^T J)}.

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 z=f(x,y)z = f(x,y). Use the parameterization r(x,y)=x,  y,  f(x,y)\mathbf{r}(x,y) = \langle x,\; y,\; f(x,y) \rangle, which gives:

SA=D1+(fx)2+(fy)2  dxdySA = \iint_D \sqrt{1 + \left(\frac{\partial f}{\partial x}\right)^2 + \left(\frac{\partial f}{\partial y}\right)^2}\; dx\, dy

This follows directly from the general formula. Compute rx=1,0,fx\mathbf{r}_x = \langle 1, 0, f_x \rangle and ry=0,1,fy\mathbf{r}_y = \langle 0, 1, f_y \rangle, take their cross product, and you get fx,fy,1\langle -f_x, -f_y, 1 \rangle with magnitude 1+fx2+fy2\sqrt{1 + f_x^2 + f_y^2}.

Spherical coordinates are natural for surfaces with spherical symmetry (spheres, caps, portions of spheres). On a sphere of radius ρ\rho:

  • Conversion: x=ρsinϕcosθx = \rho\sin\phi\cos\theta, y=ρsinϕsinθy = \rho\sin\phi\sin\theta, z=ρcosϕz = \rho\cos\phi
  • Surface area element: dS=ρ2sinϕ  dθdϕdS = \rho^2 \sin\phi\; d\theta\, d\phi

For example, the full sphere has SA=02π0πρ2sinϕ  dϕdθ=4πρ2SA = \int_0^{2\pi}\int_0^{\pi} \rho^2 \sin\phi\; d\phi\, d\theta = 4\pi\rho^2, which is a good sanity check.

Cylindrical coordinates simplify calculations for cylinders and surfaces of revolution. On a cylinder of radius rr:

  • Conversion: x=rcosθx = r\cos\theta, y=rsinθy = r\sin\theta, z=zz = z
  • Surface area element: dS=r  dθdzdS = r\; d\theta\, dz

The lateral surface area of a cylinder of radius rr and height hh is then SA=02π0hr  dzdθ=2πrhSA = \int_0^{2\pi}\int_0^h r\; dz\, d\theta = 2\pi r h, 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.

Pep mascot
Upgrade your Fiveable account to print any study guide

Download study guides as beautiful PDFs See example

Print or share PDFs with your students

Always prints our latest, updated content

Mark up and annotate as you study

Click below to go to billing portal → update your plan → choose Yearly → and select "Fiveable Share Plan". Only pay the difference

Plan is open to all students, teachers, parents, etc
Pep mascot
Upgrade your Fiveable account to export vocabulary

Download study guides as beautiful PDFs See example

Print or share PDFs with your students

Always prints our latest, updated content

Mark up and annotate as you study

Plan is open to all students, teachers, parents, etc
report an error
description

screenshots help us find and fix the issue faster (optional)

add screenshot

2,589 studying →