Winter 2010 Final CC-BY-NC

Maintainer: admin

Available on WebCT (sample exam #2). Instructor-provided solutions are also available on WebCT, but they're fairly concise and don't really explain things (they're more of a way for you to check your answers). Also, the quality of the scans isn't great and they can be hard to read. This page attempts to fill in the gaps by providing a detailed solution with explanations for each question.

Note that this exam is the only one among the ones provided (and those available on Docuum) which features Professor Klemes as an examiner. Consequently, this exam appears to contain material that is most relevant to the version of the course in Winter 2012. Many of the other exams cover topics that don't appear to be on the syllabus any more.

1Question 1

Evaluate the double integral $\displaystyle \iint_D e^{x^2} \,dx\,dy$ where $D$ is the triangular region with vertices $(0, 0), (1, 0), (1, 1)$.

1.1Solution

This is a simple case of reversing the order of integration. If we draw out the region, we'll see that it looks like a triangle defined by the following limits: $x$ from 0 to 1, $y$ from 0 to $x$. (Note that we choose $y$ to be a function of $x$ rather than $x$ from 0 to $y$, $y$ from 0 to 1 because we want to integrate with respect to $y$ first, so that the derivative of $x^2$ will hopefully show up before we have to deal with $e^{x^2}$.)

The integral becomes the following:

$$\int_0^1 \int_0^x e^{x^2} \,dy\,dx = \int_0^1 x e^{x^2} \,dx$$

which is nice and manageable, once we tame it with the substitution $u = x^2$, $du = 2xdx$:

$$\frac{1}{2} \int_0^1 e^u \,du = \frac{1}{2} \left [ e^u \right ]_0^1 = \frac{e-1}{2}$$

1.2Accuracy and discussion

Agrees with the provided solution. Yay 10 points

2Question 2

Find the area of the finite plane region $D$ bounded by the four parabolas $y=x^2$, $y=2x^2$, $x=y^2$, $x=3y^2$.

2.1Solution

This one involves a fairly standard change of variables (also known as a change of coordinates or transformation of coordinates or some other combination of those words). We let our new variables be the following:

$$u = f(x, y) = \frac{y}{x^2} \quad v = g(x, y) = \frac{x}{y^2}$$

(We choose these specific functions because then our limits can be $u = 1$ to $u = 2$ and $v = 1$ to $v = 3$, which is about as nice as they can get. We could have alternatively taken the reciprocal of either, and our limits would have turned into the respective reciprocals, but they still would have been constants, which isn't too bad. Other functions are unlikely to turn out very nicely.)

Now, we have to find the Jacobian. Remember that the new variables (i.e. the dependent ones, or the ones we want to transform the old ones into - $u$ and $v$) go on the bottom. So the Jacobian looks like this:

$$\frac{\partial (x, y)}{\partial (u, v)}$$

But we can't evaluate this directly because we don't have $x$ and $y$ as functions of $u$ and $v$. (I suppose we could solve for them, but that sounds needlessly complicated and I'm not sure it would work out too well in this case.) We do, however, have $u$ and $v$ as functions of $x$ and $y$. So we just take the reciprocal of that Jacobian:1

$$\frac{\partial (x, y)}{\partial (u, v)} = \left ( \frac{\partial (u, v)}{\partial (x, y)}\right )^{-1} = 1 / \det \begin{pmatrix} u_x & u_y \\ v_x & v_y \end{pmatrix} = 1 / \det \begin{pmatrix} -3y/x^2 & 1/x^2 \\ 1/y^2 & -2x/y^3 \end{pmatrix} = \left (\frac{4xy}{x^3y^3} - \frac{1}{x^2y^2}\right )^{-1} = \left (\frac{3}{x^2y^2} \right)^{-1} = \frac{x^2y^2}{3}$$

Now we just have to express that in terms of $u$ and $v$. We can do this with a little trial and error. First we notice that $\displaystyle uv = \frac{1}{xy}$, so $\displaystyle \frac{1}{(uv)^2} = x^2y^2$. Divide that by 3 and we get:

$$\frac{x^2y^2}{3} = \frac{1}{3u^2v^2}$$

To find the area, we simply integrate the above with respect to $u$ and $v$, using the limits we identified earlier:

$$\frac{1}{3} \int_1^2 \int_1^3 \frac{1}{u^2v^2} \,dv\,du = \frac{1}{3} \int_1^2 \frac{1}{u^2} \,du \int_1^3 \frac{1}{v^2} \,dv = \frac{1}{3} \left [ \frac{-1}{u} \right ]_1^2 \left [ \frac{-1}{v} \right ]_1^3 = \frac{1}{9}$$

which is the answer we're looking for.

2.2Accuracy and discussion

Agrees with the answer in the solutions provided. This one's a bit longer than the first but it should be another easy 10 points.

3Question 3

Find the flux of the vector field $\vec F = 3x\hat i + 3y\hat j + z^2\hat k$ upward through the conical surface given by

$$\vec r = u\cos v \hat i + u\sin v \hat j + u\hat k$$

where $1 \leq u \leq 2$, $0\leq v \leq \frac{\pi}{2}$.

3.1Solution

Recall that the formula for flux (given a parametric equation $r(u, v)$ for the surface) is given by

$$\iint_S F \cdot dS = \iint_S F(r(u, v)) \cdot (\vec r_u \times \vec r_v)$$

Now, the parametric equation for the surface is given by

$$r(u, v) = u\cos v \hat i + u\sin v \hat j + u \hat k$$

The cross product of the partial derivatives is as follows:

$$\vec r_u \times \vec r_v = \det \begin{pmatrix} \hat i & \hat j & \hat k \\ \cos v & \sin v & 1 \\ -u\sin v & u\cos v & 0 \end{pmatrix} = -u\cos v \hat i - u\sin v hat j + u \hat k$$

Now we find $F(r(u, v))$:

$$\vec F(\vec r(u, v)) = 3u\cos v + 3u\sin v + u^2$$

We then take the dot product of the two and integrate that over the limits given ($u = 1$ to $u=2$, $v = 0$ to $v= \pi/2$):

$$\int_1^2 \int_0^{\pi/2} (-3u^2\cos^2 v - 3u^2\sin^2 v + u^3) \,dv\,du = \int_1^2 \int_0^{\pi/2} (-3u^2 + u^3) \,dv\,du = \frac{\pi}{2} \left [ -u^3 + \frac{u^4}{4} \right ]_1^2 = \frac{\pi}{2} \cdot (-8 + 4 + 1 - \frac{1}{4}) = -\frac{13\pi}{8}$$

That's it.

3.2Accuracy and discussion

Agrees with the provided solutions.

4Question 4

Let $\vec F$ be the vector field $\vec F = (\cos x + 2z + 3y)\hat i + (4z+3x)\hat j + (e^z + 4y+2x)\hat k$.

(a) Show that $\vec F$ is conservative.
(b) Find a potential function for $\vec F$.
(c) Evaluate, by any method $\int_C \vec F \cdot \,d\vec r$, where $C$ consists of the curve $x = \sin t$, $y = \cos^3 t$, $z=t^2$ from $t=0$ to $t=\pi$, followed by the line segment from $(0, -1, \pi)$ to $(1, -1, 2)$.

4.1Solution

(a)

To show that $\vec F$ is conservative, we simply take the curl of $\vec F$ and show that it is the zero vector:

$$\text{curl } \vec F = \det \begin{pmatrix} \hat i & \hat k & \hat k \\ \frac{\partial}{\partial x} & \frac{\partial }{\partial y} & \frac{\partial}{\partial z} \\ \cos x + 2z + 3y & 4z + 3x & e^z + 4y + 2z \end{pmatrix} = \hat i (4-4) + \hat j (2-2) + \hat k (3-3) = (0, 0, 0) \,\,\blacksquare$$

(b)

Here's an easy way of finding a potential function2. If $\vec F = P\hat i + Q \hat j + R\hat k$, then we compute the following integrals:

$$\begin{align*} \int P\,dx & = \int (\cos x + 2z + 3y) \,dx = \sin x + 2zx + 3yx \\ \int Q\,dy & = \int (4z + 3x) \,dy = 4zy + 3xy \\ \int R\,dz & = \int (e^z + 4y + 2x) \,dz = e^z + 4yz + 2zx \end{align*}$$

The potential function $f(x, y, z)$ is therefore the union of the terms in the above functions:

$$f(x, y, z) = \sin x + 2zx + 3yx + 4zy + e^z$$

This method differs from the one used in the instructor-provided solution for this question (and from the one used in the assignment solutions) but it works just as well and is probably faster. You can check that it's a potential function by taking its gradient:

$$\nabla f = (\cos x + 2z + 3y) \hat i + (4z + 3x)\hat j + (e^z + 4y + 2x)\hat k$$

which magically turns out to be equal to $\vec F$! Wow

(c)

Since the field is conservative, we can simply evaluate the potential function at the start and end points of the entire curve and take the difference (end - start). The start point is given by $(0, 1, 0)$ and the end point is given by $(1, -1, 2)$. So:

$$\int_C \vec F \cdot d\vec r = f(1, -1, 2) - f(0, 1, 0) = (\sin 1 + 4 - 3 - 8 + e^2) - (0 + 0 + 0 + 0 + 1) = \sin 1 + e^2 -8$$

4.2Accuracy and discussion

The potential function is correct, although the method differs from the one used in the solutions. The answer for (c) is cut off in the scanned solutions but I think the one I have is correct. Incidentally, the question is the same type as question 4 (c) in assignment 2.

5Question 5

Find the area enclosed by the curve $\displaystyle \frac{x^{2/3}}{9} + \frac{y^{2/3}}{4} = 1$ by using Green's theorem and parametrising the curve.

5.1Solution

First, we parametrise the curve by equating it to that ever-present trig identity, $\cos^2 \theta + \sin^2 \theta = 1$:

$$\frac{x^{2/3}}{9} = \cos^2\theta \quad \frac{y^{2/3}}{4} = \sin^2\theta$$
$$\therefore x = 27\cos^3 \theta, \quad y = 8\sin^3\theta$$

Now we use Green's Theorem. Specifically, we use it "in reverse"3 - the area enclosed by the curve is given by

$$\frac{1}{2} \oint x\,dy - y\,dx$$

Since we'll need the differentials, let's calculate those:

$$dx = -81 \cos^2\theta \sin\theta\,d\theta \quad dy = 24\sin^2\theta \cos\theta\,d\theta$$

The integral to evaluate becomes the following:

$$\begin{align*} \frac{1}{2} \oint x\,dy - y\,dx & = \frac{1}{2} \int (27\cos^3 \theta) \cdot (24\sin^2\theta \cos\theta) - (8\sin^3\theta)(-81\cos^2\theta\sin\theta)\,d\theta = \frac{1}{2}\int 648 \cos^4\theta\sin^2\theta + 648 \sin^4\theta \cos^2\theta \,d\theta \\ & = \int 324\cos^2\theta\sin^2\theta (\cos^2\theta + \sin^2\theta) \,d\theta = 324\int \cos^2\theta\sin^2\theta = \frac{324}{2^2} \int (2\cos \theta \sin \theta)^2 \,d\theta = 81 \int \sin^2(2\theta) \,d\theta\end{align*}$$

For some reason, in the provided solutions, the derivation of the indefinite integral $\int \sin^2(2\theta)\,d\theta$ is skipped. Maybe this is assumed to be trivial? On the off-chance that it's not trivial for you (it wasn't for me), the identity to use in this case is $\displaystyle \sin^2(2\theta) \frac{1-\cos(4\theta)}{2}$, and the integral becomes:

$$\frac{81}{2} \int_0^{2\pi} (1 - \cos(4\theta) \,d\theta = \frac{81}{2} \left [ \theta - \sin(4\theta) \right ]_0^{2\pi} = 81 \pi$$

5.2Accuracy and discussion

This is the exact same question as question 5 in assignment 2. The answer of $81\pi$ is correct. There are, however, multiple methods of solving this integral. The one explained above is probably the simplest.

6Question 6

(a) State the divergence theorem.
(b) A fluid has density 1 and velocity field

$$\vec F = -y^3\hat i + x^2e^z\hat j + 3z\hat k$$

Find the rate of flow outward through the sphere $x^2+y^2+z^2=4$. Hint: write down the flux integral and use the divergence theorem to evaluate it.

6.1Solution

(a)

The divergence theorem states that

$$\iint_S F\cdot \vec n \,dS = \iiint_E \text{div } \vec F \,dV$$

where $E$ is the region bounded by the closed surface $S$ and $\vec n$ is the outward-pointing unit normal.

You should probably memorise this.

(b)

This one is surprisingly trivial for a 15-point question. First, we recall that the rate of flow we're looking for can be calculated by taking the flux integral (and possibly multiplying that by the density, I'm not sure). Since we're told we can use the divergence theorem for this, we might as well immediately find the divergence of $\vec F$:

$$\text{div } \vec F = 3$$

The integral then becomes

$$3\iiint_E \,dV$$

where $E$ is the sphere of radius 2. So we're really just finding the volume of the sphere, and then multiplying that by 3. Finding the volume of a sphere is easy - the volume of this particular sphere is $\displaystyle \frac{4\pi r^3}{3} = \frac{32\pi}{3}$. Multiply that by 3 and we get $32\pi$. That's it.

6.2Accuracy and discussion

Almost too easy. Note that finding the volume of the sphere as opposed to having to integrate over the region is a special case, and we could only do that here because the divergence happened to be a constant. In the general case, you would have to integrate over the region using the appropriate coordinates (spherical, in this case).

7Question 7

(a) State Stokes' theorem.
(b) Let $M$ be the capped cylindrical surface which is the union of two surfaces, a cylinder $M_1$ given by $x^2+y^2=25$, $0 \leq z \leq 1$, and a hemispherical cap $M_2$ defined by $x^2+y^2+(z-1)^2 = 25$, $z \geq 1$. For the vector field

$$\vec F = (zx + z^2y+4y, \,z^3yx + 5x,\,z^4x^2),$$

compute

$$\iint_M (\nabla \times \vec F) \cdot \vec n dS$$

in any way you like. Assume that the normal is the outward normal on both surfaces.

7.1Solution

(a)

$$\int_C \vec F \cdot d\vec r = \iint_D \text{curl } F \cdot \vec n \,dS$$

where $D$ is the 2-dimensional region bounded by $C$ in a counter-clockwise direction.

(b)

First, we use Stokes theorem to convert the integral into

$$\int_C \vec F \cdot \,d\vec r$$

where $C$ is the boundary circle on the $xy$-plane. The parametric equation for the circle is given by $r(t) = 5\cos t \hat i + 5 \sin t \hat j$, $t$ from 0 to $2\pi$. We then compute the derivative of $r(t)$ with respect to $t$:

$$r'(t) = -5\sin t\hat i + 5 \cos t \hat j$$

Next, we compute $F(r(t))$:

$$F(r(t)) = 4(5\sin t) \hat i + 5(5\cos t)\hat j$$

(Most of the terms go away because $z=0$, in case you were wondering how that happened.)

Taking the dot product of the two, we get:

$$F(r(t)) \cdot r'(t) = -100\sin^2 t + 125 \cos^2t = 125(\cos^2 t) - 100 (1-\cos^2 t) = 225 \cos^2 t - 100 = \frac{1}{2} (450 \cos^2 t -225 + 25)$$

We use the above as the integrand, and integrate from 0 to $2\pi$, using the double-angle formula for $\cos$ (i.e. $\cos(2t) = 2\cos^2 t - 1$) to simplify it:

$$\int_0^{2\pi} \frac{1}{2} 225\cos(2t) + 25 \,dt = \frac{250}{2} \int_0^{2\pi} \cos(2t)\,dt + \frac{25}{2}\int_0^{2\pi}\,dt = 25\pi$$

Note that the trig integral at the end there disappeared because the limits were $0$ to $2\pi$ so, yeah.

The approach in the solutions is to use Green's theorem (keeping $x$ and $y$, and letting $z=0$, so we get $\displaystyle \int_C 4y\,dx + 5y\,dy$), resulting in 1 times the area of the region, so $\pi r^2 = \pi 5^2 = 25\pi$.

7.2Accuracy and discussion

Finally got the right answer

  1. This is totally legitimate by the way. My explanation is a bit convoluted but the math works I swear 

  2. Apparently it's an ODE method? I don't know, ask dannenberg 

  3. You can find the derivation for this on Paul's notes