Part 19 - Surface integrals

Introduction

In this part we’ll cover surface integrals.

Let’s first start with tanget planes to surfaces.

Tangent planes to surfaces.

Suppose SS is a parametric surface with parameterization r:DR2R3r: D \subset \mathbb{R}^2 \rarr \mathbb{R}^3.

r(u,v)=x(u,v)i+y(u,v)j+z(u,v)k\vec{r}(u, v) = x(u, v) \vec{i} + y(u, v) \vec{j} + z(u, v) \vec{k}

We define ru(u,v)\vec{r_u}(u, v) as:

ru=xu(u,v)i+yu(u,v)j+zu(u,v)k\vec{r_u} = x_u(u, v) \vec{i} + y_u(u, v) \vec{j} + z_u(u, v) \vec{k}

And for the partial derivate of vv:

rv=xv(u,v)i+yv(u,v)j+zv(u,v)k\vec{r_v} = x_v(u, v) \vec{i} + y_v(u, v) \vec{j} + z_v(u, v) \vec{k}
Definition 1 (Tangent plane)

The tangent plane, π\pi, to SS, at the point r(u0,v0)r(u_0, v_0) is the plane that contains ru(u0,v0)r_u(u_0, v_0) and rv(u0,v0)r_v(u_0, v_0).

Equivalently, it is the plane perpendicular to the cross product of ru(u0,v0)r_u(u_0, v_0) and rv(u0,v0r_v(u_0, v_0, which goes through r(u0,v0)r(u_0, v_0).

Example 1

Find the tangent plane to x=u2,y=v2,z=u+2vx = u^2, y = v^2, z = u + 2v. At the point (1,1,3)(1, 1, 3).

r(u,v)=u2,v2,u+2v\vec{r}(u, v) = \langle u^2, v^2, u + 2v \rangleru(u,v)=2u,0,1\vec{r_u}(u, v) = \langle 2u, 0, 1 \ranglerv(u,v)=0,2v,2\vec{r_v}(u, v) = \langle 0, 2v, 2 \rangleru(u,v)×rv(u,v)=ijk2u0102v2=(02)(12v),(2u2)(10),(2u2v)(00)=2v,2u,4uv\vec{r_u}(u, v) \times \vec{r_v}(u, v) = \begin{vmatrix} i & j & k \newline 2u & 0 & 1 \newline 0 & 2v & 2 \end{vmatrix} = \langle (0 \cdot 2) - (1 \cdot 2v), -(2u \cdot 2) - (1 \cdot 0), (2u \cdot 2v) - (0 \cdot 0) \rangle = \langle -2v, -2u, 4uv \rangleru(1,1)×rv(1,1)=2,2,4\vec{r_u}(1, 1) \times \vec{r_v}(1, 1) = \langle -2, -2, 4 \rangle

Therefore:

π=2(x1)4(y1)+4(z3)\pi = -2(x - 1) - 4(y - 1) + 4(z - 3)2x+24y+4+4z12=0-2x +2 - 4y + 4 + 4z - 12 = 0x2y+2z=3-x -2y + 2z = 3

Surface area

Let r:DR3r: D \rarr \mathbb{R}^3 be a parameterization for a surface, SS.

Definition 2 (Surface area)Area(s)=Dru×rv dx dy\text{Area}(s) = \iint_D | \vec{r_u} \times \vec{r_v} |\ dx\ dy
Example 2

Find the area of the paraboloid

z=x2+y2z = x^2 + y^2

Below the plane z=9z = 9.

We can parameterize such as:

r(u,v)=u,v,u2+v2\vec{r}(u, v) = \langle u, v, u^2 + v^2 \rangleD={(u,v)R2u2+v29}D = \{(u, v) \in \mathbb{R}^2 | u^2 + v^2 \leq 9 \}ru(u,v)=1,0,2u\vec{r_u}(u, v) = \langle 1, 0, 2u \ranglerv(u,v)=0,1,2v\vec{r_v}(u, v) = \langle 0, 1, 2v \rangleru×rv=ijk102u012v=(02v)(2u1),(12v)(2u0),(11)(00)=2u,2v,1\vec{r_u} \times \vec{r_v} = \begin{vmatrix} i & j & k \newline 1 & 0 & 2u \newline 0 & 1 & 2v \end{vmatrix} = \langle (0 \cdot 2v) - (2u \cdot 1), -(1 \cdot 2v) - (2u \cdot 0), (1 \cdot 1) - (0 \cdot 0) \rangle = \langle -2u, -2v, 1 \rangleru×rv=4u2+4v2+1| \vec{r_u} \times \vec{r_v} | = \sqrt{4u^2 + 4v^2 + 1}

Let’s also change to polar coordinates, since we have a circle:

S={(r,θ)0r3,0θ2π}S = \{(r, \theta) | 0 \leq r \leq 3, 0 \leq \theta \leq 2\pi \}Dru×rv du dv=S4r+1r dr dθ=02π03r4r+1 dr dθ=2π03r4r+1 dr\iint_D | \vec{r_u} \times \vec{r_v} |\ du\ dv = \iint_S \sqrt{4r + 1} \cdot r\ dr\ d\theta = \int_0^{2\pi} \int_0^3 r\sqrt{4r + 1}\ dr\ d\theta = 2\pi \int_0^3 r\sqrt{4r + 1}\ dr

Let u=4r+1u = 4r + 1, du=4 drdu = 4\ dr, u(0)=1u(0) = 1 and u(3)=13u(3) = 13.

2π113ru dr2\pi \int_1^{13} r \sqrt{u}\ dr2π113(u1)u du2\pi \int_1^{13} (u - 1) \sqrt{u}\ du2π113u32u du2\pi \int_1^{13} u^{\frac{3}{2}} - \sqrt{u}\ du2π[2u5252u323u=1u=13]2\pi \left[ \dfrac{2 u^{\frac{5}{2}}}{5} - \dfrac{2 u^{\frac{3}{2}}}{3} \bigg\rvert_{u = 1}^{u = 13} \right]2π[2u5252u323u=1u=13]2\pi \left[ \dfrac{2 u^{\frac{5}{2}}}{5} - \dfrac{2 u^{\frac{3}{2}}}{3} \bigg\rvert_{u = 1}^{u = 13} \right]2π[(213525213323)(2152521323)]2\pi \left[ \left(\dfrac{2 \cdot 13^{\frac{5}{2}}}{5} - \dfrac{2 \cdot 13^{\frac{3}{2}}}{3}\right) - \left(\dfrac{2 \cdot 1^{\frac{5}{2}}}{5} - \dfrac{2 \cdot 1^{\frac{3}{2}}}{3}\right) \right]2π[(213525213323)(2523)]2\pi \left[ \left(\dfrac{2 \cdot 13^{\frac{5}{2}}}{5} - \dfrac{2 \cdot 13^{\frac{3}{2}}}{3}\right) - \left(\dfrac{2}{5} - \dfrac{2}{3}\right) \right]

Yeah I’m just going to leave it at that…

Surface integrals

Definition 3 (Surface integral)

Let r:DR3r: D \rarr \mathbb{R}^3 be a parameterization of a surface, SS.

Let f:SRf: S \rarr \mathbb{R} be a function, then:

Sf(x,y,z) dS=Df(r(u,v)) ru×rv du dv\iint_S f(x, y, z)\ dS = \iint_D f(\vec{r}(u, v))\ | \vec{r_u} \times \vec{r_v} |\ du\ dv
Example 3

Compute Sx2 dS\iint_S x^2\ dS where SS is the unit sphere in R3\mathbb{R}^3.

S={(x,y,z)x2+y2+z2=1}S = \{(x, y, z) | x^2 + y^2 + z^2 = 1 \}

We could use spherical, but since we know that the radius is 1, rr is useless, therefore we can use “polar” coordinates.

r(ϕ,θ)=sin(ϕ) cos(θ),sin(ϕ) sin(θ),cos(ϕ)  0ϕπ,0θ2π\vec{r}(\phi, \theta) = \langle sin(\phi)\ cos(\theta), sin(\phi)\ sin(\theta), cos(\phi) \rangle \ | \ 0 \leq \phi \leq \pi, 0 \leq \theta \leq 2\pi

Which means:

rϕ=cos(ϕ) cos(θ),cos(ϕ) sin(θ),sin(ϕ)\vec{r_{\phi}} = \langle cos(\phi)\ cos(\theta), cos(\phi)\ sin(\theta), -sin(\phi) \ranglerθ=sin(ϕ) sin(θ),sin(ϕ) cos(θ),0\vec{r_{\theta}} = \langle -sin(\phi)\ sin(\theta), sin(\phi)\ cos(\theta), 0 \ranglerϕ×rθ=ijkcos(ϕ) cos(θ)cos(ϕ) sin(θ)sin(ϕ)sin(ϕ) sin(θ)sin(ϕ) cos(θ)0\vec{r_{\phi}} \times \vec{r_{\theta}} = \begin{vmatrix} i & j & k \newline cos(\phi)\ cos(\theta) & cos(\phi)\ sin(\theta) & -sin(\phi) \newline -sin(\phi)\ sin(\theta) & sin(\phi)\ cos(\theta) & 0 \end{vmatrix}sin2(ϕ) cos(θ),sin2(ϕ) sin(θ),cos2(θ) cos(ϕ) sin(ϕ)+sin2(θ) cos(ϕ) sin(ϕ)\langle -sin^2(\phi)\ cos(\theta), sin^2(\phi)\ sin(\theta), cos^2(\theta)\ cos(\phi)\ sin(\phi) + sin^2(\theta)\ cos(\phi)\ sin(\phi) \ranglerphi×rθ==sin(ϕ)| \vec{r_{phi}} \times \vec{r_{\theta}} | = \ldots = sin(\phi)

CBA

Example 4

Evaluate Sy dS\iint_S y\ dS where S=z=x+y2S = z = x + y^2 for 0x10 \leq x \leq 1 and 0y20 \leq y \leq 2.

r(u,v)=u,v,u+v2\vec{r}(u, v) = \langle u, v, u + v^2 \rangleru(u,v)=1,0,1\vec{r_u}(u, v) = \langle 1, 0, 1 \ranglerv(u,v)=0,1,2v\vec{r_v}(u, v) = \langle 0, 1, 2v \rangleru×rv=ijk101012v=1,2v,1\vec{r_u} \times \vec{r_v} = \begin{vmatrix} i & j & k \newline 1 & 0 & 1 \newline 0 & 1 & 2v \end{vmatrix} = \langle 1, 2v, 1 \rangleru×rv=4v2+2| \vec{r_u} \times \vec{r_v} | = \sqrt{4v^2 + 2}Sy dS=0102 v4v2+2 dv du\iint_S y\ dS = \int_0^1 \int_0^2\ v \sqrt{4v^2 + 2}\ dv\ du02 v4v2+2 dv\int_0^2\ v \sqrt{4v^2 + 2}\ dv

Let u=4v2+2u = 4v^2 + 2, du=8v dvdu = 8v\ dv, u(0)=2u(0) = 2 and u(2)=18u(2) = 18.

18218 u du\dfrac{1}{8} \int_2^{18}\ \sqrt{u}\ du18[2u323u=2u=18]\dfrac{1}{8} \left[ \dfrac{2 u^{\frac{3}{2}}}{3} \bigg\rvert_{u = 2}^{u = 18} \right]18[(218323)(22323)]\dfrac{1}{8} \left[ \left(\dfrac{2 \cdot 18^{\frac{3}{2}}}{3} \right) - \left(\dfrac{2 \cdot 2^{\frac{3}{2}}}{3} \right) \right]

Good enough :]