Problem Set 6 Math 213, Fall 2016

Size: px
Start display at page:

Download "Problem Set 6 Math 213, Fall 2016"

Transcription

1 Problem Set 6 Math 213, Fall 216 Directions: Name: Show all your work. You are welcome and encouraged to use Mathematica, or similar software, to check your answers and aid in your understanding of the material. However, all calculations should be performed by you, using your internal software. You are also welcome to collaborate with other students, but the end result should be your own work. P1. Determine the area bounded by the plane curve corresponding to the polar equation r = 3sin(2θ). The curve is a four-petaled rose. To determine the total area, determine the area of one petal, θ π /2, then multiply by 4. Solution 1. Since r = 3sin(2θ), the curve can be parametrized in polar coordinates by γ(θ) = (3sin(2θ)cosθ,3sin(2θ)sinθ), where θ π /2. Using the formula in problem 2, with x(θ) = and y(θ) =, would ulimately yield the area of one petal. However, there is a shortcut for polar equations of the form r = f (θ). According to equation (4.22) in the course notes, the area is Hence, the area of one petal is π /2 1 f (θ) 2 dθ. 2 π /2 1 (3sin(2θ)) 2 dθ = 1 π /2 9sin 2 (2θ)dθ 2 2 π /2 = 9 (1 cos(4θ))dθ 4 (θ 1 ) 4 sin(4θ) π/2 = 9 4 = 9π 8. So, the area of all four petals is 9π 2.

2 P2. Let M be a region in R 2 with boundary, which can be parametrized by γ(t) = (x(t),y(t)), a t b. Apply Stokes theorem to the covector field ω = x dy (and/or ω = y dx) to give an alternate proof that the area bounded by M, A(M), satisfies A(M) = 1 2 b a (x(t)y (t) x (t)y(t)) dt. Solution 2. Let ω = y dx + x dy. Then, dω = dy dx + dx dy = 2dx dy. So, the right-hand side of Stokes theorem ω = is 2dx dy, M which is twice the area of M. Since γ(t) parametrizes the boundary of M, the left-hand side is the same as the line integral of ω over γ. Computing the pullback of ω by γ, we have ω M γ ω = y(t)d(x(t)) + x(t)d(y(t)) = y(t)x (t)dt + x(t)y (t)dt, hence b a ( y(t)x (t) + x(t)y (t))dt = 2 dx dy = 2A(M). M P3. Let M be the ellipsoid x 2 + y 2 + 2z 2 = 24, z 2, with boundary. Let X = (zx + z 2 y + x,z 2 yx + y,z 4 x 2 ). Compute the flux of curlx across M with respect to the outward pointing normal. Solution 3. Here, we use the classical Stokes theorem. The boundary of M corresponds the the points on the ellipsoid for which z = 2, hence x 2 + y 2 = 16. That is, the boundary is a circle of radius 4 in the z = 2 plane. The orientation of this circle should be counterclockwise, when viewed from above, hence we may parametrize by γ(t) = (4cost,4sint,2),

3 for t 2π. We have X(γ),γ = 48sint cost 64sin 2 t + 256sint cos 2 t + 16sint cost. Using u-substitution and the trigonometric identity sin 2 t = 1 /2(1 cos(2t)), we find 2π ( X(γ),γ dt = 16cos 2 t 32t + 16sin(2t) 256 ) 2π 3 cos3 t = 64π. P4. Let M be the surface 2z = x 2 + y 2 below z = 2. Compute the flux of curlx, where X = (3y, xz, yz 2 ), across M directly and by using Stokes theorem. Solution 4. (Stokes theorem) Similar to the last problem, the boundary of M is the set of points on the paraboloid for which z = 2, hence x 2 + y 2 = 4. The boundary of M is a circle of radius 2 in the z = 2 plane. Taking this circle to be parametrized counterclockwise, we have for t 2π. We have γ(t) = (2cost,2sint,2), X(γ),γ = 12sin 2 t 8cos 2 t = 4sin 2 t 8. Applying the same trig. identity as in the previous problem, we integrate 2π 2π X(γ),γ dt = ( 2(1 cos(2t)) 8)dt = ( 1t + sin(2t)) 2π = 2π. (Direct calculation) The surface M can be parametrized in cylindrical coordinates by F(r,θ) = (r cosθ,r sinθ, 1 2 r2 ),

4 where r 2 and θ 2π. The tangent vectors are and The normal vector is and which becomes r = (cosθ,sinθ,r) = ( r sinθ,r cosθ,). θ r θ = ( r2 cosθ, r 2 sinθ,r) curlx(f) = curlx = (x z 2,, z 3), ( r cosθ 1 4 r4,, 1 ) 2 r2 3 when evaluated at the parametrization F. The flux of curlx is thus 2π 2 curlx(f), r 2π 2 dr dθ = r 3 cos 2 θ + 1 θ 4 r6 cosθ 1 2 r3 3r dr dθ 2π = 4cos 2 θ + 32 cosθ 8dθ 7 = ( sin(2θ) + 32 ) 7 sinθ 1 2π = 2π. Note that the identity cos 2 θ = 1 /2(1 + cos(2θ)) was used. Also, since the z-component of the normal vector is positive, the normal is upward pointing, which agrees with the counterclockwise orientation of. P5. Compute the line integral of ω = (2xyz + sinx)dx + x 2 z dy + x 2 y dz over γ(t) = (cos 5 t,sin 2 t,t 4 ), t π, directly and by using Stokes theorem. For the direct computation, after computing the pullback, I suggest integrating the terms using Mathematica or similar software. However, one of the terms can be integrated using u-substitution. As an example, suppose you wanted to compute the indefinite integral of 3t 2 cos 6 t sin 2 t using Mathematica. The following command Integrate[3t^2 * Cos[t]^6 * Sin[t]^2,t] would output the indefinite integral, where the first argument of Integrate is the function to be integrated and the second argument is the variable to integrate with respect to. For the same term, if you want the definite integral for t π, you would enter the command

5 Solution 5. (Stokes theorem) Integrate[3t^2 * Cos[t]^6 * Sin[t]^2,{t,,Pi}]. The version of Stokes theorem that applies here is the Fundamental Theorem of Line Integrals. We must determine a potential function for ω. If f is a potential, then df = ω, hence f = 2xyz + sinx x f y = x2 z f z = x2 y. Integrating with respect to x,y and z, we find that f (x,y,z) = x 2 yz cosx. Indeed, one can quickly verify that the differential df is precisely ω. Thus, the line integral of ω over γ equals since cos( a) = cos(a). (Direct calculation) f (γ(π)) f (γ()) = f ( 1,,π 4 ) f (1,,) = ( cos( 1)) ( cos(1)) =, To directly compute the line integral, we first compute the pullback γ ω = (2t 4 sin 2 t cos 5 t + sin(cos 5 t))( 5cos 4 t sint)dt + t 4 cos 1 t(2sint cost)dt + sin 2 t cos 1 t(4t 3 )dt = ( 1t 4 sin 3 t cos 9 t 5sin(cos 5 t)cos 4 t sint + 2t 4 sint cos 11 t + 4t 3 sin 2 t cos 1 t ) dt. Now, we integrate the pullback for t π. The integral of the first, third and fourth terms equals. The second term can be integrated using u-substitution. If u = cos 5 t, then du = 5cos 4 t sint, hence π 5sin(cos 5 t)cos 4 t sint dt = sinu du = cos(cos 5 t) π = cos( 1) + cos(1) =.

6 P6. Let M be the lower hemisphere of the unit sphere oriented by the exterior (outward) normal vector. Compute y dx + x dy. Solution 6. Since the lower hemisphere is oriented by the exterior normal, the boundary should be oriented clockwise, when viewed from above, by the right-hand rule. The boundary of M is the set of points on the unit sphere for which z =, which is simply the unit circle in the z = plane. A clockwise parametrization for the unit circle is for t 2π. The pullback is γ(t) = (cost, sint,), γ ( y dx + x dy) = sint( sint)dt + cost( cost)dt = dt. Hence, 2π y dx + x dy = dt = 2π. We can also apply Stokes theorem and integrate dω over M. In this case, dω = 2dx dy. As always, if we choose to change coordinates, we must pullback before integrating. If F(ϕ,θ) = (sinϕ cosθ,sinϕ sinθ,cosϕ), where π /2 ϕ π and θ 2π, then F (2dx dy) = 2sinϕ cosθ dϕ dθ. The orientation specified by the normal vector ϕ θ agrees with the orientation of specified above. P7. By using Green s theorem, evaluate (x 3 y)dx + (cosy + 2x)dy,

7 where M is the plane region with boundary. Here, a and b are constants. {(x,y) a 2 x 2 + y 2 b 2 } Solution 7. If ω = (x 3 y)dx + (cosy + 2x)dy, we have dω = 3dx dy, which we need to integrate over M. The 2-surface M looks like a washer; it is the solid region bounded by the circles of radii a and b. We parametrize M in polar coordinates with F(r,θ) = (r cosθ,r sinθ), a r b and θ 2π. To integrate dω, we first compute the pullback F (3dx dy) = 3r dr dθ. Hence, 2π b a 3r dr dθ = 2π 3 2 (b2 a 2 )dθ = 3π(b 2 a 2 ). P8. Let M be the portion of the plane x + y + z = 2 in the first octant oriented by the downward normal. Compute the work done by X = (x + xz 2,x,y) on a particle moving around the boundary of M, with respect to the induced orientation on. Solution 8. (Answer only) 16 3 P9. Let M be the lower hemisphere of the unit sphere oriented by the exterior (outward) normal vector. Verify Stokes theorem for X = ( y,x,z). Solution 9. (Answer only) The flux of curlx out of M is 2π, which is the same as the line integral of X over the boundary of M. The flux of X out of M is 2π, which is the same as the volume/triple integral of divx. 3

Problem Set 5 Math 213, Fall 2016

Problem Set 5 Math 213, Fall 2016 Problem Set 5 Math 213, Fall 216 Directions: Name: Show all your work. You are welcome and encouraged to use Mathematica, or similar software, to check your answers and aid in your understanding of the

More information

Math 31CH - Spring Final Exam

Math 31CH - Spring Final Exam Math 3H - Spring 24 - Final Exam Problem. The parabolic cylinder y = x 2 (aligned along the z-axis) is cut by the planes y =, z = and z = y. Find the volume of the solid thus obtained. Solution:We calculate

More information

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n.

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n. .8 Power Series. n x n x n n Using the ratio test. lim x n+ n n + lim x n n + so r and I (, ). By the ratio test. n Then r and I (, ). n x < ( ) n x n < x < n lim x n+ n (n + ) x n lim xn n (n + ) x

More information

MATHS 267 Answers to Stokes Practice Dr. Jones

MATHS 267 Answers to Stokes Practice Dr. Jones MATH 267 Answers to tokes Practice Dr. Jones 1. Calculate the flux F d where is the hemisphere x2 + y 2 + z 2 1, z > and F (xz + e y2, yz, z 2 + 1). Note: the surface is open (doesn t include any of the

More information

Math 233. Practice Problems Chapter 15. i j k

Math 233. Practice Problems Chapter 15. i j k Math 233. Practice Problems hapter 15 1. ompute the curl and divergence of the vector field F given by F (4 cos(x 2 ) 2y)i + (4 sin(y 2 ) + 6x)j + (6x 2 y 6x + 4e 3z )k olution: The curl of F is computed

More information

HOMEWORK 8 SOLUTIONS

HOMEWORK 8 SOLUTIONS HOMEWOK 8 OLUTION. Let and φ = xdy dz + ydz dx + zdx dy. let be the disk at height given by: : x + y, z =, let X be the region in 3 bounded by the cone and the disk. We orient X via dx dy dz, then by definition

More information

7a3 2. (c) πa 3 (d) πa 3 (e) πa3

7a3 2. (c) πa 3 (d) πa 3 (e) πa3 1.(6pts) Find the integral x, y, z d S where H is the part of the upper hemisphere of H x 2 + y 2 + z 2 = a 2 above the plane z = a and the normal points up. ( 2 π ) Useful Facts: cos = 1 and ds = ±a sin

More information

Calculus III. Math 233 Spring Final exam May 3rd. Suggested solutions

Calculus III. Math 233 Spring Final exam May 3rd. Suggested solutions alculus III Math 33 pring 7 Final exam May 3rd. uggested solutions This exam contains twenty problems numbered 1 through. All problems are multiple choice problems, and each counts 5% of your total score.

More information

Jim Lambers MAT 280 Summer Semester Practice Final Exam Solution. dy + xz dz = x(t)y(t) dt. t 3 (4t 3 ) + e t2 (2t) + t 7 (3t 2 ) dt

Jim Lambers MAT 280 Summer Semester Practice Final Exam Solution. dy + xz dz = x(t)y(t) dt. t 3 (4t 3 ) + e t2 (2t) + t 7 (3t 2 ) dt Jim Lambers MAT 28 ummer emester 212-1 Practice Final Exam olution 1. Evaluate the line integral xy dx + e y dy + xz dz, where is given by r(t) t 4, t 2, t, t 1. olution From r (t) 4t, 2t, t 2, we obtain

More information

One side of each sheet is blank and may be used as scratch paper.

One side of each sheet is blank and may be used as scratch paper. Math 244 Spring 2017 (Practice) Final 5/11/2017 Time Limit: 2 hours Name: No calculators or notes are allowed. One side of each sheet is blank and may be used as scratch paper. heck your answers whenever

More information

Review problems for the final exam Calculus III Fall 2003

Review problems for the final exam Calculus III Fall 2003 Review problems for the final exam alculus III Fall 2003 1. Perform the operations indicated with F (t) = 2t ı 5 j + t 2 k, G(t) = (1 t) ı + 1 t k, H(t) = sin(t) ı + e t j a) F (t) G(t) b) F (t) [ H(t)

More information

MTH 234 Solutions to Exam 2 April 13, Multiple Choice. Circle the best answer. No work needed. No partial credit available.

MTH 234 Solutions to Exam 2 April 13, Multiple Choice. Circle the best answer. No work needed. No partial credit available. MTH 234 Solutions to Exam 2 April 3, 25 Multiple Choice. Circle the best answer. No work needed. No partial credit available.. (5 points) Parametrize of the part of the plane 3x+2y +z = that lies above

More information

Practice Problems: Exam 2 MATH 230, Spring 2011 Instructor: Dr. Zachary Kilpatrick Show all your work. Simplify as much as possible.

Practice Problems: Exam 2 MATH 230, Spring 2011 Instructor: Dr. Zachary Kilpatrick Show all your work. Simplify as much as possible. Practice Problems: Exam MATH, Spring Instructor: Dr. Zachary Kilpatrick Show all your work. Simplify as much as possible.. Write down a table of x and y values associated with a few t values. Then, graph

More information

Math Review for Exam 3

Math Review for Exam 3 1. ompute oln: (8x + 36xy)ds = Math 235 - Review for Exam 3 (8x + 36xy)ds, where c(t) = (t, t 2, t 3 ) on the interval t 1. 1 (8t + 36t 3 ) 1 + 4t 2 + 9t 4 dt = 2 3 (1 + 4t2 + 9t 4 ) 3 2 1 = 2 3 ((14)

More information

Name: Date: 12/06/2018. M20550 Calculus III Tutorial Worksheet 11

Name: Date: 12/06/2018. M20550 Calculus III Tutorial Worksheet 11 1. ompute the surface integral M255 alculus III Tutorial Worksheet 11 x + y + z) d, where is a surface given by ru, v) u + v, u v, 1 + 2u + v and u 2, v 1. olution: First, we know x + y + z) d [ ] u +

More information

Multiple Choice. Compute the Jacobian, (u, v), of the coordinate transformation x = u2 v 4, y = uv. (a) 2u 2 + 4v 4 (b) xu yv (c) 3u 2 + 7v 6

Multiple Choice. Compute the Jacobian, (u, v), of the coordinate transformation x = u2 v 4, y = uv. (a) 2u 2 + 4v 4 (b) xu yv (c) 3u 2 + 7v 6 .(5pts) y = uv. ompute the Jacobian, Multiple hoice (x, y) (u, v), of the coordinate transformation x = u v 4, (a) u + 4v 4 (b) xu yv (c) u + 7v 6 (d) u (e) u v uv 4 Solution. u v 4v u = u + 4v 4..(5pts)

More information

Review Sheet for the Final

Review Sheet for the Final Review Sheet for the Final Math 6-4 4 These problems are provided to help you study. The presence of a problem on this handout does not imply that there will be a similar problem on the test. And the absence

More information

Math 23b Practice Final Summer 2011

Math 23b Practice Final Summer 2011 Math 2b Practice Final Summer 211 1. (1 points) Sketch or describe the region of integration for 1 x y and interchange the order to dy dx dz. f(x, y, z) dz dy dx Solution. 1 1 x z z f(x, y, z) dy dx dz

More information

(b) Find the range of h(x, y) (5) Use the definition of continuity to explain whether or not the function f(x, y) is continuous at (0, 0)

(b) Find the range of h(x, y) (5) Use the definition of continuity to explain whether or not the function f(x, y) is continuous at (0, 0) eview Exam Math 43 Name Id ead each question carefully. Avoid simple mistakes. Put a box around the final answer to a question (use the back of the page if necessary). For full credit you must show your

More information

MAC2313 Final A. (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative.

MAC2313 Final A. (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative. MAC2313 Final A (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative. ii. The vector field F = 5(x 2 + y 2 ) 3/2 x, y is radial. iii. All constant

More information

SOLUTIONS TO THE FINAL EXAM. December 14, 2010, 9:00am-12:00 (3 hours)

SOLUTIONS TO THE FINAL EXAM. December 14, 2010, 9:00am-12:00 (3 hours) SOLUTIONS TO THE 18.02 FINAL EXAM BJORN POONEN December 14, 2010, 9:00am-12:00 (3 hours) 1) For each of (a)-(e) below: If the statement is true, write TRUE. If the statement is false, write FALSE. (Please

More information

Math 212. Practice Problems for the Midterm 3

Math 212. Practice Problems for the Midterm 3 Math 1 Practice Problems for the Midterm 3 Ivan Matic 1. Evaluate the surface integral x + y + z)ds, where is the part of the paraboloid z 7 x y that lies above the xy-plane.. Let γ be the curve in the

More information

Practice problems **********************************************************

Practice problems ********************************************************** Practice problems I will not test spherical and cylindrical coordinates explicitly but these two coordinates can be used in the problems when you evaluate triple integrals. 1. Set up the integral without

More information

(You may need to make a sin / cos-type trigonometric substitution.) Solution.

(You may need to make a sin / cos-type trigonometric substitution.) Solution. MTHE 7 Problem Set Solutions. As a reminder, a torus with radii a and b is the surface of revolution of the circle (x b) + z = a in the xz-plane about the z-axis (a and b are positive real numbers, with

More information

Practice problems. m zδdv. In our case, we can cancel δ and have z =

Practice problems. m zδdv. In our case, we can cancel δ and have z = Practice problems 1. Consider a right circular cone of uniform density. The height is H. Let s say the distance of the centroid to the base is d. What is the value d/h? We can create a coordinate system

More information

Practice problems ********************************************************** 1. Divergence, curl

Practice problems ********************************************************** 1. Divergence, curl Practice problems 1. Set up the integral without evaluation. The volume inside (x 1) 2 + y 2 + z 2 = 1, below z = 3r but above z = r. This problem is very tricky in cylindrical or Cartesian since we must

More information

(a) The points (3, 1, 2) and ( 1, 3, 4) are the endpoints of a diameter of a sphere.

(a) The points (3, 1, 2) and ( 1, 3, 4) are the endpoints of a diameter of a sphere. MATH 4 FINAL EXAM REVIEW QUESTIONS Problem. a) The points,, ) and,, 4) are the endpoints of a diameter of a sphere. i) Determine the center and radius of the sphere. ii) Find an equation for the sphere.

More information

MATH 228: Calculus III (FALL 2016) Sample Problems for FINAL EXAM SOLUTIONS

MATH 228: Calculus III (FALL 2016) Sample Problems for FINAL EXAM SOLUTIONS MATH 228: Calculus III (FALL 216) Sample Problems for FINAL EXAM SOLUTIONS MATH 228 Page 2 Problem 1. (2pts) Evaluate the line integral C xy dx + (x + y) dy along the parabola y x2 from ( 1, 1) to (2,

More information

4. Line Integrals in the Plane

4. Line Integrals in the Plane 4. Line Integrals in the Plane 4A. Plane Vector Fields 4A- a) All vectors in the field are identical; continuously differentiable everywhere. b) The vector at P has its tail at P and head at the origin;

More information

Assignment 11 Solutions

Assignment 11 Solutions . Evaluate Math 9 Assignment olutions F n d, where F bxy,bx y,(x + y z and is the closed surface bounding the region consisting of the solid cylinder x + y a and z b. olution This is a problem for which

More information

Dr. Allen Back. Dec. 3, 2014

Dr. Allen Back. Dec. 3, 2014 Dr. Allen Back Dec. 3, 2014 forms are sums of wedge products of the basis 1-forms dx, dy, and dz. They are kinds of tensors generalizing ordinary scalar functions and vector fields. They have a skew-symmetry

More information

MATH 261 FINAL EXAM PRACTICE PROBLEMS

MATH 261 FINAL EXAM PRACTICE PROBLEMS MATH 261 FINAL EXAM PRACTICE PROBLEMS These practice problems are pulled from the final exams in previous semesters. The 2-hour final exam typically has 8-9 problems on it, with 4-5 coming from the post-exam

More information

Practice Problems for the Final Exam

Practice Problems for the Final Exam Math 114 Spring 2017 Practice Problems for the Final Exam 1. The planes 3x + 2y + z = 6 and x + y = 2 intersect in a line l. Find the distance from the origin to l. (Answer: 24 3 ) 2. Find the area of

More information

Math 20C Homework 2 Partial Solutions

Math 20C Homework 2 Partial Solutions Math 2C Homework 2 Partial Solutions Problem 1 (12.4.14). Calculate (j k) (j + k). Solution. The basic properties of the cross product are found in Theorem 2 of Section 12.4. From these properties, we

More information

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed.

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. MTH 34 Review for Exam 4 ections 16.1-16.8. 5 minutes. 5 to 1 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. Review for Exam 4 (16.1) Line

More information

Review for the Final Test

Review for the Final Test Math 7 Review for the Final Test () Decide if the limit exists and if it exists, evaluate it. lim (x,y,z) (0,0,0) xz. x +y +z () Use implicit differentiation to find z if x + y z = 9 () Find the unit tangent

More information

1. If the line l has symmetric equations. = y 3 = z+2 find a vector equation for the line l that contains the point (2, 1, 3) and is parallel to l.

1. If the line l has symmetric equations. = y 3 = z+2 find a vector equation for the line l that contains the point (2, 1, 3) and is parallel to l. . If the line l has symmetric equations MA 6 PRACTICE PROBLEMS x = y = z+ 7, find a vector equation for the line l that contains the point (,, ) and is parallel to l. r = ( + t) i t j + ( + 7t) k B. r

More information

18.1. Math 1920 November 29, ) Solution: In this function P = x 2 y and Q = 0, therefore Q. Converting to polar coordinates, this gives I =

18.1. Math 1920 November 29, ) Solution: In this function P = x 2 y and Q = 0, therefore Q. Converting to polar coordinates, this gives I = Homework 1 elected olutions Math 19 November 9, 18 18.1 5) olution: In this function P = x y and Q =, therefore Q x P = x. We obtain the following integral: ( Q I = x ydx = x P ) da = x da. onverting to

More information

1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is

1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is 1. The value of the double integral (a) 15 26 (b) 15 8 (c) 75 (d) 105 26 5 4 0 1 1 + f 2 x + f 2 y dy dx, where f(x, y) = 2 + 3x + 4y, is 2. What is the value of the double integral interchange the order

More information

( ) ( ) Math 17 Exam II Solutions

( ) ( ) Math 17 Exam II Solutions Math 7 Exam II Solutions. Sketch the vector field F(x,y) -yi + xj by drawing a few vectors. Draw the vectors associated with at least one point in each quadrant and draw the vectors associated with at

More information

( ) = x( u, v) i + y( u, v) j + z( u, v) k

( ) = x( u, v) i + y( u, v) j + z( u, v) k Math 8 ection 16.6 urface Integrals The relationship between surface integrals and surface area is much the same as the relationship between line integrals and arc length. uppose f is a function of three

More information

Answer sheet: Final exam for Math 2339, Dec 10, 2010

Answer sheet: Final exam for Math 2339, Dec 10, 2010 Answer sheet: Final exam for Math 9, ec, Problem. Let the surface be z f(x,y) ln(y + cos(πxy) + e ). (a) Find the gradient vector of f f(x,y) y + cos(πxy) + e πy sin(πxy), y πx sin(πxy) (b) Evaluate f(,

More information

Fundamental Theorems of Vector

Fundamental Theorems of Vector Chapter 17 Analysis Fundamental Theorems of Vector Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated

More information

S12.1 SOLUTIONS TO PROBLEMS 12 (ODD NUMBERS)

S12.1 SOLUTIONS TO PROBLEMS 12 (ODD NUMBERS) OLUTION TO PROBLEM 2 (ODD NUMBER) 2. The electric field is E = φ = 2xi + 2y j and at (2, ) E = 4i + 2j. Thus E = 2 5 and its direction is 2i + j. At ( 3, 2), φ = 6i + 4 j. Thus the direction of most rapid

More information

1 Area calculations. 1.1 Area of an ellipse or a part of it Without using parametric equations

1 Area calculations. 1.1 Area of an ellipse or a part of it Without using parametric equations Area calculations. Area of an ellipse or a part of it.. Without using parametric equations We calculate the area in the first quadrant. We start from the standard equation of the ellipse and we put that

More information

Math 221 Examination 2 Several Variable Calculus

Math 221 Examination 2 Several Variable Calculus Math Examination Spring Instructions These problems should be viewed as essa questions. Before making a calculation, ou should explain in words what our strateg is. Please write our solutions on our own

More information

Ma 227 Final Exam Solutions 12/22/09

Ma 227 Final Exam Solutions 12/22/09 Ma 7 Final Exam Solutions //9 Name: ID: Lecture Section: Problem a) (3 points) Does the following system of equations have a unique solution or an infinite set of solutions or no solution? Find any solutions.

More information

No calculators, cell phones or any other electronic devices can be used on this exam. Clear your desk of everything excepts pens, pencils and erasers.

No calculators, cell phones or any other electronic devices can be used on this exam. Clear your desk of everything excepts pens, pencils and erasers. Name: Section: Recitation Instructor: READ THE FOLLOWING INSTRUCTIONS. Do not open your exam until told to do so. No calculators, cell phones or any other electronic devices can be used on this exam. Clear

More information

16.2. Line Integrals

16.2. Line Integrals 16. Line Integrals Review of line integrals: Work integral Rules: Fdr F d r = Mdx Ndy Pdz FT r'( t) ds r t since d '(s) and hence d ds '( ) r T r r ds T = Fr '( t) dt since r r'( ) dr d dt t dt dt does

More information

ES.182A Topic 44 Notes Jeremy Orloff

ES.182A Topic 44 Notes Jeremy Orloff E.182A Topic 44 Notes Jeremy Orloff 44 urface integrals and flux Note: Much of these notes are taken directly from the upplementary Notes V8, V9 by Arthur Mattuck. urface integrals are another natural

More information

Math 11 Fall 2018 Practice Final Exam

Math 11 Fall 2018 Practice Final Exam Math 11 Fall 218 Practice Final Exam Disclaimer: This practice exam should give you an idea of the sort of questions we may ask on the actual exam. Since the practice exam (like the real exam) is not long

More information

McGill University April Calculus 3. Tuesday April 29, 2014 Solutions

McGill University April Calculus 3. Tuesday April 29, 2014 Solutions McGill University April 4 Faculty of Science Final Examination Calculus 3 Math Tuesday April 9, 4 Solutions Problem (6 points) Let r(t) = (t, cos t, sin t). i. Find the velocity r (t) and the acceleration

More information

MATH 332: Vector Analysis Summer 2005 Homework

MATH 332: Vector Analysis Summer 2005 Homework MATH 332, (Vector Analysis), Summer 2005: Homework 1 Instructor: Ivan Avramidi MATH 332: Vector Analysis Summer 2005 Homework Set 1. (Scalar Product, Equation of a Plane, Vector Product) Sections: 1.9,

More information

Math 11 Fall 2007 Practice Problem Solutions

Math 11 Fall 2007 Practice Problem Solutions Math 11 Fall 27 Practice Problem olutions Here are some problems on the material we covered since the second midterm. This collection of problems is not intended to mimic the final in length, content,

More information

Stokes s Theorem 17.2

Stokes s Theorem 17.2 Stokes s Theorem 17.2 6 December 213 Stokes s Theorem is the generalization of Green s Theorem to surfaces not just flat surfaces (regions in R 2 ). Relate a double integral over a surface with a line

More information

Practice Problems for Exam 3 (Solutions) 1. Let F(x, y) = xyi+(y 3x)j, and let C be the curve r(t) = ti+(3t t 2 )j for 0 t 2. Compute F dr.

Practice Problems for Exam 3 (Solutions) 1. Let F(x, y) = xyi+(y 3x)j, and let C be the curve r(t) = ti+(3t t 2 )j for 0 t 2. Compute F dr. 1. Let F(x, y) xyi+(y 3x)j, and let be the curve r(t) ti+(3t t 2 )j for t 2. ompute F dr. Solution. F dr b a 2 2 F(r(t)) r (t) dt t(3t t 2 ), 3t t 2 3t 1, 3 2t dt t 3 dt 1 2 4 t4 4. 2. Evaluate the line

More information

51. General Surface Integrals

51. General Surface Integrals 51. General urface Integrals The area of a surface in defined parametrically by r(u, v) = x(u, v), y(u, v), z(u, v) over a region of integration in the input-variable plane is given by d = r u r v da.

More information

MATH 255 Applied Honors Calculus III Winter Homework 11. Due: Monday, April 18, 2011

MATH 255 Applied Honors Calculus III Winter Homework 11. Due: Monday, April 18, 2011 MATH 255 Applied Honors Calculus III Winter 211 Homework 11 ue: Monday, April 18, 211 ection 17.7, pg. 1155: 5, 13, 19, 24. ection 17.8, pg. 1161: 3, 7, 13, 17 ection 17.9, pg. 1168: 3, 7, 19, 25. 17.7

More information

Page Points Score Total: 210. No more than 200 points may be earned on the exam.

Page Points Score Total: 210. No more than 200 points may be earned on the exam. Name: PID: Section: Recitation Instructor: DO NOT WRITE BELOW THIS LINE. GO ON TO THE NEXT PAGE. Page Points Score 3 18 4 18 5 18 6 18 7 18 8 18 9 18 10 21 11 21 12 21 13 21 Total: 210 No more than 200

More information

(a) 0 (b) 1/4 (c) 1/3 (d) 1/2 (e) 2/3 (f) 3/4 (g) 1 (h) 4/3

(a) 0 (b) 1/4 (c) 1/3 (d) 1/2 (e) 2/3 (f) 3/4 (g) 1 (h) 4/3 Math 114 Practice Problems for Test 3 omments: 0. urface integrals, tokes Theorem and Gauss Theorem used to be in the Math40 syllabus until last year, so we will look at some of the questions from those

More information

In general, the formula is S f ds = D f(φ(u, v)) Φ u Φ v da. To compute surface area, we choose f = 1. We compute

In general, the formula is S f ds = D f(φ(u, v)) Φ u Φ v da. To compute surface area, we choose f = 1. We compute alculus III Test 3 ample Problem Answers/olutions 1. Express the area of the surface Φ(u, v) u cosv, u sinv, 2v, with domain u 1, v 2π, as a double integral in u and v. o not evaluate the integral. In

More information

Advanced Calculus. George Voutsadakis 1. LSSU Math 411. Lake Superior State University. 1 Mathematics and Computer Science

Advanced Calculus. George Voutsadakis 1. LSSU Math 411. Lake Superior State University. 1 Mathematics and Computer Science Advanced Calculus George Voutsadakis 1 1 Mathematics and Computer Science Lake Superior State University LSSU Math 411 George Voutsadakis (LSSU) Advanced Calculus March 2018 1 / 77 Outline 1 Fundamental

More information

Practice Final Solutions

Practice Final Solutions Practice Final Solutions Math 1, Fall 17 Problem 1. Find a parameterization for the given curve, including bounds on the parameter t. Part a) The ellipse in R whose major axis has endpoints, ) and 6, )

More information

Math Review for Exam Compute the second degree Taylor polynomials about (0, 0) of the following functions: (a) f(x, y) = e 2x 3y.

Math Review for Exam Compute the second degree Taylor polynomials about (0, 0) of the following functions: (a) f(x, y) = e 2x 3y. Math 35 - Review for Exam 1. Compute the second degree Taylor polynomial of f e x+3y about (, ). Solution. A computation shows that f x(, ), f y(, ) 3, f xx(, ) 4, f yy(, ) 9, f xy(, ) 6. The second degree

More information

Math 234 Exam 3 Review Sheet

Math 234 Exam 3 Review Sheet Math 234 Exam 3 Review Sheet Jim Brunner LIST OF TOPIS TO KNOW Vector Fields lairaut s Theorem & onservative Vector Fields url Divergence Area & Volume Integrals Using oordinate Transforms hanging the

More information

Ma 1c Practical - Solutions to Homework Set 7

Ma 1c Practical - Solutions to Homework Set 7 Ma 1c Practical - olutions to omework et 7 All exercises are from the Vector Calculus text, Marsden and Tromba (Fifth Edition) Exercise 7.4.. Find the area of the portion of the unit sphere that is cut

More information

(c) The first thing to do for this problem is to create a parametric curve for C. One choice would be. (cos(t), sin(t)) with 0 t 2π

(c) The first thing to do for this problem is to create a parametric curve for C. One choice would be. (cos(t), sin(t)) with 0 t 2π 1. Let g(x, y) = (y, x) ompute gds for a circle with radius 1 centered at the origin using the line integral. (Hint: use polar coordinates for your parametrization). (a) Write out f((t)) so that f is a

More information

53. Flux Integrals. Here, R is the region over which the double integral is evaluated.

53. Flux Integrals. Here, R is the region over which the double integral is evaluated. 53. Flux Integrals Let be an orientable surface within 3. An orientable surface, roughly speaking, is one with two distinct sides. At any point on an orientable surface, there exists two normal vectors,

More information

Name (please print) π cos(θ) + sin(θ)dθ

Name (please print) π cos(θ) + sin(θ)dθ Mathematics 2443-3 Final Eamination Form B December 2, 27 Instructions: Give brief, clear answers. I. Evaluate by changing to polar coordinates: 2 + y 2 3 and above the -ais. + y d 23 3 )/3. π 3 Name please

More information

Without fully opening the exam, check that you have pages 1 through 12.

Without fully opening the exam, check that you have pages 1 through 12. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 12. Show all your work on the standard

More information

Solutions to Sample Questions for Final Exam

Solutions to Sample Questions for Final Exam olutions to ample Questions for Final Exam Find the points on the surface xy z 3 that are closest to the origin. We use the method of Lagrange Multipliers, with f(x, y, z) x + y + z for the square of the

More information

MTH 234 Exam 2 November 21st, Without fully opening the exam, check that you have pages 1 through 12.

MTH 234 Exam 2 November 21st, Without fully opening the exam, check that you have pages 1 through 12. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 12. Show all your work on the standard

More information

The Divergence Theorem

The Divergence Theorem Math 1a The Divergence Theorem 1. Parameterize the boundary of each of the following with positive orientation. (a) The solid x + 4y + 9z 36. (b) The solid x + y z 9. (c) The solid consisting of all points

More information

Name (please print) π cos(θ) + sin(θ)dθ

Name (please print) π cos(θ) + sin(θ)dθ Mathematics 2443-3 Final Eamination Form A December 2, 27 Instructions: Give brief, clear answers. I. Evaluate by changing to polar coordinates: 2 + y 2 2 and above the -ais. + y d 2(2 2 )/3. π 2 (r cos(θ)

More information

Math 323 Exam 1 Practice Problem Solutions

Math 323 Exam 1 Practice Problem Solutions Math Exam Practice Problem Solutions. For each of the following curves, first find an equation in x and y whose graph contains the points on the curve. Then sketch the graph of C, indicating its orientation.

More information

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015 Multiple Integrals and Vector Calculus (Oxford Physics) Ramin Golestanian Synopsis and Problem Sets; Hilary 215 The outline of the material, which will be covered in 14 lectures, is as follows: 1. Introduction

More information

M273Q Multivariable Calculus Spring 2017 Review Problems for Exam 3

M273Q Multivariable Calculus Spring 2017 Review Problems for Exam 3 M7Q Multivariable alculus Spring 7 Review Problems for Exam Exam covers material from Sections 5.-5.4 and 6.-6. and 7.. As you prepare, note well that the Fall 6 Exam posted online did not cover exactly

More information

REVIEW 2, MATH 3020 AND MATH 3030

REVIEW 2, MATH 3020 AND MATH 3030 REVIEW, MATH 300 AND MATH 3030 1. Let P = (0, 1, ), Q = (1,1,0), R(0,1, 1), S = (1,, 4). (a) Find u = PQ and v = PR. (b) Find the angle between u and v. (c) Find a symmetric equation of the plane σ that

More information

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx Millersville University Name Answer Key Mathematics Department MATH 2, Calculus II, Final Examination May 4, 2, 8:AM-:AM Please answer the following questions. Your answers will be evaluated on their correctness,

More information

MAT 211 Final Exam. Fall Jennings.

MAT 211 Final Exam. Fall Jennings. MAT 211 Final Exam. Fall 218. Jennings. Useful formulas polar coordinates spherical coordinates: SHOW YOUR WORK! x = rcos(θ) y = rsin(θ) da = r dr dθ x = ρcos(θ)cos(φ) y = ρsin(θ)cos(φ) z = ρsin(φ) dv

More information

MLC Practice Final Exam

MLC Practice Final Exam Name: Section: Recitation/Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 13. Show all your work on the standard

More information

Name: SOLUTIONS Date: 11/9/2017. M20550 Calculus III Tutorial Worksheet 8

Name: SOLUTIONS Date: 11/9/2017. M20550 Calculus III Tutorial Worksheet 8 Name: SOLUTIONS Date: /9/7 M55 alculus III Tutorial Worksheet 8. ompute R da where R is the region bounded by x + xy + y 8 using the change of variables given by x u + v and y v. Solution: We know R is

More information

10.1 Curves Defined by Parametric Equation

10.1 Curves Defined by Parametric Equation 10.1 Curves Defined by Parametric Equation 1. Imagine that a particle moves along the curve C shown below. It is impossible to describe C by an equation of the form y = f (x) because C fails the Vertical

More information

Math 11 Fall 2016 Final Practice Problem Solutions

Math 11 Fall 2016 Final Practice Problem Solutions Math 11 Fall 216 Final Practice Problem olutions Here are some problems on the material we covered since the second midterm. This collection of problems is not intended to mimic the final in length, content,

More information

MATH 0350 PRACTICE FINAL FALL 2017 SAMUEL S. WATSON. a c. b c.

MATH 0350 PRACTICE FINAL FALL 2017 SAMUEL S. WATSON. a c. b c. MATH 35 PRACTICE FINAL FALL 17 SAMUEL S. WATSON Problem 1 Verify that if a and b are nonzero vectors, the vector c = a b + b a bisects the angle between a and b. The cosine of the angle between a and c

More information

MATH 52 FINAL EXAM SOLUTIONS

MATH 52 FINAL EXAM SOLUTIONS MAH 5 FINAL EXAM OLUION. (a) ketch the region R of integration in the following double integral. x xe y5 dy dx R = {(x, y) x, x y }. (b) Express the region R as an x-simple region. R = {(x, y) y, x y }

More information

MAY THE FORCE BE WITH YOU, YOUNG JEDIS!!!

MAY THE FORCE BE WITH YOU, YOUNG JEDIS!!! Final Exam Math 222 Spring 2011 May 11, 2011 Name: Recitation Instructor s Initials: You may not use any type of calculator whatsoever. (Cell phones off and away!) You are not allowed to have any other

More information

MATH503 - HOMEWORK #2. v k. + v i. (fv i ) = f v i. + v k. ) + u j (ɛ ijk. ) u j (ɛ jik

MATH503 - HOMEWORK #2. v k. + v i. (fv i ) = f v i. + v k. ) + u j (ɛ ijk. ) u j (ɛ jik 1 KO UNIVERITY Mon April 18, ollege of Arts and ciences Handout # Department of Physics Instructor: Alkan Kabakço lu MATH - HOMEWORK # 1 ( f) = Using Einstein notation and expressing x, y, x as e 1, e,

More information

Page Problem Score Max Score a 8 12b a b 10 14c 6 6

Page Problem Score Max Score a 8 12b a b 10 14c 6 6 Fall 14 MTH 34 FINAL EXAM December 8, 14 Name: PID: Section: Instructor: DO NOT WRITE BELOW THIS LINE. Go to the next page. Page Problem Score Max Score 1 5 5 1 3 5 4 5 5 5 6 5 7 5 8 5 9 5 1 5 11 1 3 1a

More information

Solutions for the Practice Final - Math 23B, 2016

Solutions for the Practice Final - Math 23B, 2016 olutions for the Practice Final - Math B, 6 a. True. The area of a surface is given by the expression d, and since we have a parametrization φ x, y x, y, f x, y with φ, this expands as d T x T y da xy

More information

Solutions to old Exam 3 problems

Solutions to old Exam 3 problems Solutions to old Exam 3 problems Hi students! I am putting this version of my review for the Final exam review here on the web site, place and time to be announced. Enjoy!! Best, Bill Meeks PS. There are

More information

MAT 211 Final Exam. Spring Jennings. Show your work!

MAT 211 Final Exam. Spring Jennings. Show your work! MAT 211 Final Exam. pring 215. Jennings. how your work! Hessian D = f xx f yy (f xy ) 2 (for optimization). Polar coordinates x = r cos(θ), y = r sin(θ), da = r dr dθ. ylindrical coordinates x = r cos(θ),

More information

MAT 132 Midterm 1 Spring 2017

MAT 132 Midterm 1 Spring 2017 MAT Midterm Spring 7 Name: ID: Problem 5 6 7 8 Total ( pts) ( pts) ( pts) ( pts) ( pts) ( pts) (5 pts) (5 pts) ( pts) Score Instructions: () Fill in your name and Stony Brook ID number at the top of this

More information

Math 53 Final Exam, Prof. Srivastava May 11, 2018, 11:40pm 2:30pm, 155 Dwinelle Hall.

Math 53 Final Exam, Prof. Srivastava May 11, 2018, 11:40pm 2:30pm, 155 Dwinelle Hall. Math 53 Final Exam, Prof. Srivastava May 11, 2018, 11:40pm 2:30pm, 155 Dwinelle Hall. Name: SID: GSI: Name of the student to your left: Name of the student to your right: Instructions: Write all answers

More information

MULTIVARIABLE INTEGRATION

MULTIVARIABLE INTEGRATION MULTIVARIABLE INTEGRATION (SPHERICAL POLAR COORDINATES) Question 1 a) Determine with the aid of a diagram an expression for the volume element in r, θ, ϕ. spherical polar coordinates, ( ) [You may not

More information

MATH 263 ASSIGNMENT 9 SOLUTIONS. F dv =

MATH 263 ASSIGNMENT 9 SOLUTIONS. F dv = MAH AIGNMEN 9 OLUION ) Let F = (x yz)î + (y + xz)ĵ + (z + xy)ˆk and let be the portion of the cylinder x + y = that lies inside the sphere x + y + z = 4 be the portion of the sphere x + y + z = 4 that

More information

Math 234 Final Exam (with answers) Spring 2017

Math 234 Final Exam (with answers) Spring 2017 Math 234 Final Exam (with answers) pring 217 1. onsider the points A = (1, 2, 3), B = (1, 2, 2), and = (2, 1, 4). (a) [6 points] Find the area of the triangle formed by A, B, and. olution: One way to solve

More information

e x2 dxdy, e x2 da, e x2 x 3 dx = e

e x2 dxdy, e x2 da, e x2 x 3 dx = e STS26-4 Calculus II: The fourth exam Dec 15, 214 Please show all your work! Answers without supporting work will be not given credit. Write answers in spaces provided. You have 1 hour and 2minutes to complete

More information

Assignment 6 Solution. Please do not copy and paste my answer. You will get similar questions but with different numbers!

Assignment 6 Solution. Please do not copy and paste my answer. You will get similar questions but with different numbers! Assignment 6 Solution Please do not copy and paste my answer. You will get similar questions but with different numbers! This question tests you the following points: Integration by Parts: Let u = x, dv

More information

Calculus III. George Voutsadakis 1. LSSU Math 251. Lake Superior State University. 1 Mathematics and Computer Science

Calculus III. George Voutsadakis 1. LSSU Math 251. Lake Superior State University. 1 Mathematics and Computer Science Calculus III George Voutsadakis 1 1 Mathematics and Computer Science Lake Superior State University LSSU Math 251 George Voutsadakis (LSSU) Calculus III January 2016 1 / 76 Outline 1 Parametric Equations,

More information