ConceptComplete

Parametrization Techniques

Effective computation of line and surface integrals requires choosing appropriate parametrizations adapted to the geometry of the curve or surface.


Parametrizing Curves

Definition

Common parametrizations for curves in R3\mathbb{R}^3:

  1. Line segment from a\mathbf{a} to b\mathbf{b}: r(t)=(1t)a+tb\mathbf{r}(t) = (1-t)\mathbf{a} + t\mathbf{b}, 0t10 \leq t \leq 1
  2. Circle of radius RR in the xyxy-plane: r(t)=(Rcost,Rsint,0)\mathbf{r}(t) = (R\cos t, R\sin t, 0), 0t2π0 \leq t \leq 2\pi
  3. Graph y=f(x)y = f(x): r(t)=(t,f(t))\mathbf{r}(t) = (t, f(t)), atba \leq t \leq b
  4. Helix: r(t)=(Rcost,Rsint,ct)\mathbf{r}(t) = (R\cos t, R\sin t, ct)
ExampleArc length of a helix

For r(t)=(cost,sint,t)\mathbf{r}(t) = (\cos t, \sin t, t) over [0,2π][0, 2\pi]: L=02πr(t)dt=02πsin2t+cos2t+1dt=02π2dt=2π2L = \int_0^{2\pi} \|\mathbf{r}'(t)\|\,dt = \int_0^{2\pi} \sqrt{\sin^2 t + \cos^2 t + 1}\,dt = \int_0^{2\pi} \sqrt{2}\,dt = 2\pi\sqrt{2}


Parametrizing Surfaces

Definition

Standard parametrizations for common surfaces:

  1. Sphere x2+y2+z2=R2x^2+y^2+z^2=R^2: r(ϕ,θ)=(Rsinϕcosθ,Rsinϕsinθ,Rcosϕ)\mathbf{r}(\phi,\theta) = (R\sin\phi\cos\theta, R\sin\phi\sin\theta, R\cos\phi)
  2. Cylinder x2+y2=R2x^2+y^2=R^2: r(θ,z)=(Rcosθ,Rsinθ,z)\mathbf{r}(\theta,z) = (R\cos\theta, R\sin\theta, z)
  3. Cone z=x2+y2z=\sqrt{x^2+y^2}: r(r,θ)=(rcosθ,rsinθ,r)\mathbf{r}(r,\theta) = (r\cos\theta, r\sin\theta, r)
  4. Graph z=f(x,y)z=f(x,y): r(x,y)=(x,y,f(x,y))\mathbf{r}(x,y) = (x, y, f(x,y))
  5. Surface of revolution (y=f(x)y = f(x) around xx-axis): r(x,θ)=(x,f(x)cosθ,f(x)sinθ)\mathbf{r}(x,\theta) = (x, f(x)\cos\theta, f(x)\sin\theta)
ExampleNormal vector for a graph

For the graph z=f(x,y)z = f(x,y) with parametrization r(x,y)=(x,y,f(x,y))\mathbf{r}(x,y) = (x, y, f(x,y)): rx×ry=(1,0,fx)×(0,1,fy)=(fx,fy,1)\mathbf{r}_x \times \mathbf{r}_y = (1, 0, f_x) \times (0, 1, f_y) = (-f_x, -f_y, 1) The upward-pointing unit normal is n^=(fx,fy,1)1+fx2+fy2\hat{\mathbf{n}} = \frac{(-f_x, -f_y, 1)}{\sqrt{1+f_x^2+f_y^2}}.


Reparametrization Invariance

Theorem11.1Reparametrization Invariance

Scalar line integrals Cfds\int_C f\,ds and scalar surface integrals SfdS\iint_S f\,dS are independent of the parametrization. Vector line integrals CFdr\int_C \mathbf{F} \cdot d\mathbf{r} and flux integrals SFdS\iint_S \mathbf{F} \cdot d\mathbf{S} are independent of the parametrization but depend on the orientation: reversing orientation changes their sign.

RemarkChoosing good parametrizations

The key to simplifying integral computations is choosing a parametrization that aligns with the symmetry of the problem. If the integrand or domain has circular symmetry, use polar/spherical parametrizations. If the surface is given as a graph, use (x,y)(x, y) as parameters. The right choice can turn an intractable integral into a routine computation.