Spring 2004 Math 253/ Vector Calculus 14.7 Surface Integrals Tue, 13/Apr c 2004, Art Belmonte

Size: px
Start display at page:

Download "Spring 2004 Math 253/ Vector Calculus 14.7 Surface Integrals Tue, 13/Apr c 2004, Art Belmonte"

Transcription

1 pring Math / Vector Calculus.7 urface Integrals Tue, /Apr c, Art Belmonte ummar efinitions Recall that a parametric surface in -space is the graph of a vector function s : R R of two parameters. s(u,v) =(u,v),(u,v),(u,v),(u,v) R Often the parameters are chosen to be two of the rectangular coordinates,, ; the polar/clindrical coordinates r,θ;the spherical coordinates θ,φ; or the clindrical coordinates,θ. The surface integral of a scalar field f over a parametric surface s is given b fd= f(s(u,v)) s u s v du dv. The surface integral of a vector field w over a oriented parametric surface s (also called the flu of w across s) is given b w d = w(s(u,v)) (s u s v ) du dv. An oriented surface has two sides; e.g., top and bottom; left and right; front and back; inward and outward; etc. If our chosen surface has an orientation s u s v that is opposite to what is desired in a given problem, simpl negate the value of the surface integral computed. This has the effect of using (s u s v ), the other orientation. Applications of urface Integrals Let δ be the mass densit and σ the charge densit. The center of mass is also called the centroid when the densit is constant. Application urface Integrals scalar differential d = s u s v du dv measure A() = d surface area total mass m = δ d electric charge Q = σ d moments M = δ d center of mass, ȳ, = m,, δ d moments of inertia I = ( + ) δ d radii of gration = I /m, ȳ = I /m, = I /m Table Notes. Other first-order moments are smmetricall defined. M = δd, M = δd. Other second-order moments are smmetricall defined. ( I = + ) ( δd, I = + ) δd Hand / MATLAB Eamples 9/ Evaluate the surface integral d, where the surface is the triangular patch with vertices (,, ), (,, ), and(,,) tewart 9/: Triangular patch tewart 9/: hadow region. The surface is pictured at left above. Its projection onto the -plane appears to the right of it. The routine planept on our TI-89 or in MATLAB gives + + = or= as an equation of the plane through the three noncollinear vertices. A rectangular parameteriation of the surface is s(, ) =,,,,. Compute s s =,,,, =,,. Then s s =. With f (,, ) =,wehave fd = f(s(,)) s s dd = ( ) dd =.7. 9/ revisited Evaluate the surface integral d, where the surface is the triangular patch with vertices (,, ), (,, ), and(,,).

2 Clearl there is a lot of work involved in computing a surface integral b hand. (It is a nice review of all the material in the course, however!) Recall from ection.6 that the sis routine (available on the TI-89 and in MATLAB) computes the eact value of the surface integral of a scalar field automaticall. Here s the needful. (If the surface integral of a scalar field cannot be computed eactl, just use sisn in MATLAB.) = r, r cos θ,r sin θ. Thus s r s θ = r r +. efine f (,, ) = +.Then f(s(r,θ)) = r. Hence fd = f(s(r,θ)) s r s θ dr dθ π = r r r + dr dθ ( = 6 π 9 ) tewart 9/ sms f = *; s = --; M = -; ; = sis(f,s,m); prett() double().7 echo off; diar off / / 9/6 revisited Evaluate the surface integral + d, where the surface is the part of the circular paraboloid = that lies in front of the plane =, the -plane. This time we ll just use sis. 9/6 Evaluate the surface integral + d, where the surface is the part of the circular paraboloid = that lies in front of the plane =, the -plane. tewart 9/6 sms r t f = ˆ + ˆ; s = -rˆ r*cos(t) r*sin(t); M = r ; t *pi; = sis(f,s,m); prett() tewart 9/6 tewart 9/6: Projection onto plane double() 8.6 echo off; diar off / /6 pi (9 7 + ) A plot of the surface appears to the left above. On the right is its projection ontothe -plane. A parameteriation polar/clindrical of the surface is s(r,θ)= r,rcos θ,r sin θ, r, θ π. Now s r s θ = r, cos θ,sin θ, r sin θ,r cos θ 9/ Evaluate the surface integral + + d,wherethe surface consists of the part of the circular clinder + = 9 between the planes = and= together with its top and bottom circular disks; in other words, a closed tin can! OK, campers: we have three surface integrals to compute. Let s set up parameteriations for the side, bottom, and top of the tin can, then dispatch the whole shooting match with repeated invocations of sis added together!

3 tewart 9/: Tin can = /*pi prett() double().888 echo off; diar off / pi tewart 9/ sms r t f = ˆ + ˆ + ˆ; s = *cos(t) *sin(t), ; side s = r*cos(t) r*sin(t), ; bottom s = r*cos(t) r*sin(t), ; top M = t *pi; ; side ranges M = r ; t *pi; bottom ranges M = r ; t *pi; top ranges = sis(f,s,m) + sis(f,s,m) + sis(f,s,m); prett() Add em up! double() 77.8 echo off; diar off pi 9/6 Evaluate the surface integral w d of the vector field w =,, over the part of the circular paraboloid = + 9 that lies below the rectangle, and has downward orientation. That is, compute the flu of w across this surface. 6 tewart 9/6 9/ 8 Evaluate the surface integral + + d, wherethe surface is the helicoid (spiral ramp). s(u,v) =ucosv, u sin v, v, u, v π. tewart 9/ The surface appears above. You are handed a rectangular parameteriation of the surface: s(, ) =,, + 9,,. Again we use sis.. tewart 9/ sms u v f = sqrt( + ˆ + ˆ); s = u*cos(v) u*sin(v), v; M = u ; v pi; = sis(f,s,m) Compute s s =,,,, =,,, an upward orientation. (Look at its k component!) ince the author requested a downward orientation, we ll negate the double integral we compute below. w d = w(s(,)) (s ) s d d =,,,, d d 9/6 revisited = +6 dd =. Evaluate the surface integral w d of the vector field w =,, over the part of the circular paraboloid

4 = + 9 that lies below the rectangle, and has downward orientation. That is, compute the flu of w across this surface. This time we invoke siv, which computes the eact value of the surface integral of a vector field over a surface. We still need to check the orientation, but MATLAB sure beats doing it b hand! NOTE WELL: Internall, siv computes the orientation as s u s v, where u is the inner variable in the range matri M and v is the outer variable. Accordingl, ou should use this same order when computing orientation to decide whether or not to negate the result returned b siv. tewart 9/6 sms w = ˆ* -**ˆ *ˆ; s = ˆ+ˆ-9; M = ; ; For our parameteriation, the normal points UPWAR. The author wants OWNWAR. s = diff(s,); s = diff(s,); cross(s,s) -*, -*, Accordingl, negate the result that siv returns! = -siv(w,s,m) = - 96/8 prett() double() - echo off; diar off Evaluate the surface integral w d of the vector field w =,, over the part of the cone = + between the planes = and=with upward orientation. That is, compute the flu of w across this surface. tewart 9/8 - Here we just use siv. Thefluis 7 6 π 8.. tewart 9/8 sms r t w = - - ˆ; s = r*cos(t) r*sin(t) r; M = r ; t *pi; For our parameteriation, the normal points UPWAR, as the author has requested. sr = diff(s,r); st = diff(s,t); simple(cross(sr,st)) -r*cos(t), -r*sin(t), r Accordingl, use the result that siv returns! = siv(w,s,m) = 96/ 7/6*pi prett() double() 8.7 echo off; diar off 7/6 pi Find the mass (in kg) of a thin funnel in the shape of a cone = +,, if its variable densit is δ =. tewart 96/ The mass is δ d = 8 π 79.8 kg, the surface integral of a scalar field, dispatched with sis.. tewart 96/ sms r t f = - ; s = r*cos(t) r*sin(t) r; M = r ; t *pi;

5 96/6 = sis(f,s,m) = 8*ˆ(/)*pi prett() double() 79.8 echo off; diar off / 8 pi A fluid has densit δ = and velocit v =,,. Find the rate of flow outward through the sphere + + =. tewart 96/6 96/6 revisited A fluid has densit δ = and velocit v =,,. Find the rate of flow outward through the sphere + + =. That hand work we just did was a world o hurt! Instead, let s use siv to compute the surface integral of the vector field w = δv over the sphere. Herewith the needful in MATLAB. Much better! tewart 96/6 sms p t v = - *; w = *v; s = *sin(p)*cos(t) *sin(p)*sin(t) *cos(p); M = p pi; t *pi; sp = diff(s,p); st = diff(s,t); simple(cross(sp,st)) -*(-+cos(p)ˆ)*cos(t), -*(-+cos(p)ˆ)*sin(t), *cos(p)*sin(p) = siv(w,s,m) = *pi prett() Parameterie the surface in a spherical fashion. s(φ, θ) = sin φ cos θ,sinφsin θ,cosφ, φ π, θ π Compute s φ s θ : cos φ cos θ,cosφsin θ, sinφ sinφsin θ,sinφcos θ, or sin φ cos θ, sin φ sin θ, sin φ cos φ,whichis an outward orientation. (Look at its k component while in the first octant.) This is what the author requested. Now compute w(s(φ, θ)) (s φ s θ ) : 7 sin φ sin θ,7 sin φ cos θ, cosφ sin φ cos θ, sin φ sin θ, sin φ cos φ or 7, sin φ cos φ. Now put the pieces together to compute the integal. w d = w(s(φ, θ)) (s ) φ s θ dφ dθ π π = 7, sin φ cos φ dφ dθ =,π.7 6. double().78e+6 echo off; diar off pi

Math 261 Solutions To Sample Exam 2 Problems

Math 261 Solutions To Sample Exam 2 Problems Solutions to Sample Eam Problems Math 6 Math 6 Solutions To Sample Eam Problems. Given to the right is the graph of a portion of four curves:,, and + 4. Note that these curves divide the plane into separate

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

EXERCISES Chapter 15: Multiple Integrals. Evaluating Integrals in Cylindrical Coordinates

EXERCISES Chapter 15: Multiple Integrals. Evaluating Integrals in Cylindrical Coordinates 08 Chapter 5: Multiple Integrals EXERCISES 5.6 Evaluating Integrals in Clindrical Evaluate the clindrical coordinate integrals in Eercises 6... 3. 4. 5. 6. Changing Order of Integration in Clindrical The

More information

Triple Integrals. y x

Triple Integrals. y x Triple Integrals. (a) If is an solid (in space), what does the triple integral dv represent? Wh? (b) Suppose the shape of a solid object is described b the solid, and f(,, ) gives the densit of the object

More information

Integrals in cylindrical, spherical coordinates (Sect. 15.7)

Integrals in cylindrical, spherical coordinates (Sect. 15.7) Integrals in clindrical, spherical coordinates (Sect. 15.7 Integration in spherical coordinates. Review: Clindrical coordinates. Spherical coordinates in space. Triple integral in spherical coordinates.

More information

Math 208 Surface integrals and the differentials for flux integrals. n and separately. But the proof on page 889 of the formula dσ = r r du dv on page

Math 208 Surface integrals and the differentials for flux integrals. n and separately. But the proof on page 889 of the formula dσ = r r du dv on page Math 08 urface integrals and the differentials for flu integrals Our tet fails to eplicitl state the formulas for n dσ, instead preferring to give formulas for n and separatel But the proof on page 88

More information

y=1/4 x x=4y y=x 3 x=y 1/3 Example: 3.1 (1/2, 1/8) (1/2, 1/8) Find the area in the positive quadrant bounded by y = 1 x and y = x3

y=1/4 x x=4y y=x 3 x=y 1/3 Example: 3.1 (1/2, 1/8) (1/2, 1/8) Find the area in the positive quadrant bounded by y = 1 x and y = x3 Eample: 3.1 Find the area in the positive quadrant bounded b 1 and 3 4 First find the points of intersection of the two curves: clearl the curves intersect at (, ) and at 1 4 3 1, 1 8 Select a strip at

More information

17. Find the moments of inertia I x, I y, I 0 for the lamina of. 4. D x, y 0 x a, 0 y b ; CAS. 20. D is enclosed by the cardioid r 1 cos ; x, y 3

17. Find the moments of inertia I x, I y, I 0 for the lamina of. 4. D x, y 0 x a, 0 y b ; CAS. 20. D is enclosed by the cardioid r 1 cos ; x, y 3 SCTION 2.5 TRIPL INTGRALS 69 2.4 XRCISS. lectric charge is distributed over the rectangle, 2 so that the charge densit at, is, 2 2 (measured in coulombs per square meter). Find the total charge on the

More information

is the curve of intersection of the plane y z 2 and the cylinder x oriented counterclockwise when viewed from above.

is the curve of intersection of the plane y z 2 and the cylinder x oriented counterclockwise when viewed from above. The questions below are representative or actual questions that have appeared on final eams in Math from pring 009 to present. The questions below are in no particular order. There are tpicall 10 questions

More information

MTHE 227 Problem Set 10 Solutions. (1 y2 +z 2., 0, 0), y 2 + z 2 < 4 0, Otherwise.

MTHE 227 Problem Set 10 Solutions. (1 y2 +z 2., 0, 0), y 2 + z 2 < 4 0, Otherwise. MTHE 7 Problem Set Solutions. (a) Sketch the cross-section of the (hollow) clinder + = in the -plane, as well as the vector field in this cross-section. ( +,, ), + < F(,, ) =, Otherwise. This is a simple

More information

Math 21a Homework 24 Solutions Spring, 2014

Math 21a Homework 24 Solutions Spring, 2014 Math a Homework olutions pring, Due Friday, April th (MWF) or Tuesday, April 5th (TTh) This assignment is officially on urface Area (ection.6) and calar urface Integrals (ection.6), but it s most useful

More information

v n ds where v = x z 2, 0,xz+1 and S is the surface that

v n ds where v = x z 2, 0,xz+1 and S is the surface that M D T P. erif the divergence theorem for d where is the surface of the sphere + + = a.. Calculate the surface integral encloses the solid region + +,. (a directl, (b b the divergence theorem. v n d where

More information

ENGI 4430 Advanced Calculus for Engineering Faculty of Engineering and Applied Science Problem Set 3 Solutions [Multiple Integration; Lines of Force]

ENGI 4430 Advanced Calculus for Engineering Faculty of Engineering and Applied Science Problem Set 3 Solutions [Multiple Integration; Lines of Force] ENGI 44 Advanced Calculus for Engineering Facult of Engineering and Applied Science Problem Set Solutions [Multiple Integration; Lines of Force]. Evaluate D da over the triangular region D that is bounded

More information

f(p i )Area(T i ) F ( r(u, w) ) (r u r w ) da

f(p i )Area(T i ) F ( r(u, w) ) (r u r w ) da MAH 55 Flux integrals Fall 16 1. Review 1.1. Surface integrals. Let be a surface in R. Let f : R be a function defined on. efine f ds = f(p i Area( i lim mesh(p as a limit of Riemann sums over sampled-partitions.

More information

( ) ( ) ( ) ( ) Calculus III - Problem Drill 24: Stokes and Divergence Theorem

( ) ( ) ( ) ( ) Calculus III - Problem Drill 24: Stokes and Divergence Theorem alculus III - Problem Drill 4: tokes and Divergence Theorem Question No. 1 of 1 Instructions: (1) Read the problem and answer choices carefully () Work the problems on paper as needed () Pick the 1. Use

More information

MATH2000 Flux integrals and Gauss divergence theorem (solutions)

MATH2000 Flux integrals and Gauss divergence theorem (solutions) DEPARTMENT O MATHEMATIC MATH lux integrals and Gauss divergence theorem (solutions ( The hemisphere can be represented as We have by direct calculation in terms of spherical coordinates. = {(r, θ, φ r,

More information

F dr y 2. F r t r t dt. a sin t a sin t a cos t a cos t a 2 cos 2 t a 2 sin 2 t. P dx Q dy yy. x C. follows that F is a conservative vector field.

F dr y 2. F r t r t dt. a sin t a sin t a cos t a cos t a 2 cos 2 t a 2 sin 2 t. P dx Q dy yy. x C. follows that F is a conservative vector field. 6 CHAPTER 6 VECTOR CALCULU We now easil compute this last integral using the parametriation given b rt a cos t i a sin t j, t. Thus C F dr C F dr Frt rt dt a sin ta sin t a cos ta cos t a cos t a sin t

More information

Multivariable Calculus Lecture #13 Notes. in each piece. Then the mass mk. 0 σ = σ = σ

Multivariable Calculus Lecture #13 Notes. in each piece. Then the mass mk. 0 σ = σ = σ Multivariable Calculus Lecture #1 Notes In this lecture, we ll loo at parameterization of surfaces in R and integration on a parameterized surface Applications will include surface area, mass of a surface

More information

Solutions to Practice Exam 2

Solutions to Practice Exam 2 Solutions to Practice Eam Problem : For each of the following, set up (but do not evaluate) iterated integrals or quotients of iterated integral to give the indicated quantities: Problem a: The average

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

Triple integrals in Cartesian coordinates (Sect. 15.5) Review: Triple integrals in arbitrary domains

Triple integrals in Cartesian coordinates (Sect. 15.5) Review: Triple integrals in arbitrary domains Triple integrals in Cartesian coordinates (Sect. 5.5) Review: Triple integrals in arbitrar domains. s: Changing the order of integration. The average value of a function in a region in space. Triple integrals

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

Triple integrals in Cartesian coordinates (Sect. 15.5)

Triple integrals in Cartesian coordinates (Sect. 15.5) Triple integrals in Cartesian coordinates (Sect. 5.5) Triple integrals in rectangular boes. Triple integrals in arbitrar domains. Volume on a region in space. Triple integrals in rectangular boes Definition

More information

5. Triple Integrals. 5A. Triple integrals in rectangular and cylindrical coordinates. 2 + y + z x=0. y Outer: 1

5. Triple Integrals. 5A. Triple integrals in rectangular and cylindrical coordinates. 2 + y + z x=0. y Outer: 1 5. Triple Integrals 5A. Triple integrals in rectangular and clindrical coordinates ] 5A- a) (x + + )dxdd Inner: x + x( + ) + + x ] ] Middle: + + + ( ) + Outer: + 6 x ] x b) x ddxd Inner: x x 3 4 ] ] +

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

MA 351 Fall 2008 Exam #3 Review Solutions 1. (2) = λ = x 2y OR x = y = 0. = y = x 2y (2x + 2) = 2x2 + 2x 2y = 2y 2 = 2x 2 + 2x = y 2 = x 2 + x

MA 351 Fall 2008 Exam #3 Review Solutions 1. (2) = λ = x 2y OR x = y = 0. = y = x 2y (2x + 2) = 2x2 + 2x 2y = 2y 2 = 2x 2 + 2x = y 2 = x 2 + x MA 5 Fall 8 Eam # Review Solutions. Find the maimum of f, y y restricted to the curve + + y. Give both the coordinates of the point and the value of f. f, y y g, y + + y f < y, > g < +, y > solve y λ +

More information

16.5 Surface Integrals of Vector Fields

16.5 Surface Integrals of Vector Fields 16.5 Surface Integrals of Vector Fields Lukas Geyer Montana State University M73, Fall 011 Lukas Geyer (MSU) 16.5 Surface Integrals of Vector Fields M73, Fall 011 1 / 19 Parametrized Surfaces Definition

More information

Math 21a Homework 07 Solutions Spring, 2014

Math 21a Homework 07 Solutions Spring, 2014 Math a Homework 7 Solutions Spring, 4. valuate the iterated integral. a) Stewart.7 # 6 ) e d d d We perform the iterated integral: e d d d e d d e d [ e [ ] 4 e + 4e. Note that we ve twice done an integral

More information

ES.182A Topic 45 Notes Jeremy Orloff

ES.182A Topic 45 Notes Jeremy Orloff E.8A Topic 45 Notes Jeremy Orloff 45 More surface integrals; divergence theorem Note: Much of these notes are taken directly from the upplementary Notes V0 by Arthur Mattuck. 45. Closed urfaces A closed

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 261 Solutions to Sample Final Exam Problems

Math 261 Solutions to Sample Final Exam Problems Math 61 Solutions to Sample Final Eam Problems 1 Math 61 Solutions to Sample Final Eam Problems 1. Let F i + ( + ) j, and let G ( + ) i + ( ) j, where C 1 is the curve consisting of the circle of radius,

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

14.1. Multiple Integration. Iterated Integrals and Area in the Plane. Iterated Integrals. Iterated Integrals. MAC2313 Calculus III - Chapter 14

14.1. Multiple Integration. Iterated Integrals and Area in the Plane. Iterated Integrals. Iterated Integrals. MAC2313 Calculus III - Chapter 14 14 Multiple Integration 14.1 Iterated Integrals and Area in the Plane Objectives Evaluate an iterated integral. Use an iterated integral to find the area of a plane region. Copyright Cengage Learning.

More information

3, 1, 3 3, 1, 1 3, 1, 1. x(t) = t cos(πt) y(t) = t sin(πt), z(t) = t 2 t 0

3, 1, 3 3, 1, 1 3, 1, 1. x(t) = t cos(πt) y(t) = t sin(πt), z(t) = t 2 t 0 Math 5 Final Eam olutions ecember 5, Problem. ( pts.) (a 5 pts.) Find the distance from the point P (,, 7) to the plane z +. olution. We can easil find a point P on the plane b choosing some values for

More information

MATHEMATICS 317 April 2017 Final Exam Solutions

MATHEMATICS 317 April 2017 Final Exam Solutions MATHEMATI 7 April 7 Final Eam olutions. Let r be the vector field r = îı + ĵj + z ˆk and let r be the function r = r. Let a be the constant vector a = a îı + a ĵj + a ˆk. ompute and simplif the following

More information

Math 52 First Midterm January 29, 2009

Math 52 First Midterm January 29, 2009 Math 5 First Midterm Januar 9, 9 Name : KEY Section Leader: Josh Lan Xiannan (Circle one) Genauer Huang Li Section Time: : : :5 :5 (Circle one) This is a closed-book, closed-notes eam. No calculators or

More information

MATHEMATICS 200 December 2013 Final Exam Solutions

MATHEMATICS 200 December 2013 Final Exam Solutions MATHEMATICS 2 December 21 Final Eam Solutions 1. Short Answer Problems. Show our work. Not all questions are of equal difficult. Simplif our answers as much as possible in this question. (a) The line L

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

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

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

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

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

ENGI 4430 Multiple Integration Cartesian Double Integrals Page 3-01

ENGI 4430 Multiple Integration Cartesian Double Integrals Page 3-01 ENGI 4430 Multiple Integration Cartesian Double Integrals Page 3-01 3. Multiple Integration This chapter provides only a very brief introduction to the major topic of multiple integration. Uses of multiple

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

MATHEMATICS 200 December 2011 Final Exam Solutions

MATHEMATICS 200 December 2011 Final Exam Solutions MATHEMATICS December 11 Final Eam Solutions 1. Consider the function f(, ) e +4. (a) Draw a contour map of f, showing all tpes of level curves that occur. (b) Find the equation of the tangent plane to

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

Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work.

Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work. Exam 3 Math 850-007 Fall 04 Odenthal Name: Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work.. Evaluate the iterated integral

More information

Math 212-Lecture Integration in cylindrical and spherical coordinates

Math 212-Lecture Integration in cylindrical and spherical coordinates Math 22-Lecture 6 4.7 Integration in cylindrical and spherical coordinates Cylindrical he Jacobian is J = (x, y, z) (r, θ, z) = cos θ r sin θ sin θ r cos θ = r. Hence, d rdrdθdz. If we draw a picture,

More information

ln e 2s+2t σ(m) = 1 + h 2 x + h 2 yda = dA = 90 da R

ln e 2s+2t σ(m) = 1 + h 2 x + h 2 yda = dA = 90 da R olution to et 5, Friday ay 7th ection 5.6: 15, 17. ection 5.7:, 5, 7, 16. (1) (ection 5.5, Problem ) Find a parametrization of the suface + y 9 between z and z. olution: cost, y sint and z s with t π and

More information

Problem Points S C O R E

Problem Points S C O R E MATH 34F Final Exam March 19, 13 Name Student I # Your exam should consist of this cover sheet, followed by 7 problems. Check that you have a complete exam. Unless otherwise indicated, show all your work

More information

Math 20E Midterm II(ver. a)

Math 20E Midterm II(ver. a) Name: olutions tudent ID No.: Discussion ection: Math 20E Midterm IIver. a) Fall 2018 Problem core 1 /24 2 /25 3 /26 4 /25 Total /100 1. 24 Points.) Consider the force field F 5y ı + 3y 2 j. Compute the

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

Vector Calculus handout

Vector Calculus handout Vector Calculus handout The Fundamental Theorem of Line Integrals Theorem 1 (The Fundamental Theorem of Line Integrals). Let C be a smooth curve given by a vector function r(t), where a t b, and let f

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

MATH 223 FINAL EXAM STUDY GUIDE ( )

MATH 223 FINAL EXAM STUDY GUIDE ( ) MATH 3 FINAL EXAM STUDY GUIDE (017-018) The following questions can be used as a review for Math 3 These questions are not actual samples of questions that will appear on the final eam, but the will provide

More information

Created by T. Madas SURFACE INTEGRALS. Created by T. Madas

Created by T. Madas SURFACE INTEGRALS. Created by T. Madas SURFACE INTEGRALS Question 1 Find the area of the plane with equation x + 3y + 6z = 60, 0 x 4, 0 y 6. 8 Question A surface has Cartesian equation y z x + + = 1. 4 5 Determine the area of the surface which

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

Fundamentals of Applied Electromagnetics. Chapter 2 - Vector Analysis

Fundamentals of Applied Electromagnetics. Chapter 2 - Vector Analysis Fundamentals of pplied Electromagnetics Chapter - Vector nalsis Chapter Objectives Operations of vector algebra Dot product of two vectors Differential functions in vector calculus Divergence of a vector

More information

Math 234 Review Problems for the Final Exam

Math 234 Review Problems for the Final Exam Math 234 eview Problems for the Final Eam Marc Conrad ecember 13, 2007 irections: Answer each of the following questions. Pages 1 and 2 contain the problems. The solutions are on pages 3 through 7. Problem

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

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

D = 2(2) 3 2 = 4 9 = 5 < 0

D = 2(2) 3 2 = 4 9 = 5 < 0 1. (7 points) Let f(, ) = +3 + +. Find and classif each critical point of f as a local minimum, a local maimum, or a saddle point. Solution: f = + 3 f = 3 + + 1 f = f = 3 f = Both f = and f = onl at (

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

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 21a: Multivariable calculus. List of Worksheets. Harvard University, Spring 2009

Math 21a: Multivariable calculus. List of Worksheets. Harvard University, Spring 2009 Math 2a: Multivariable calculus Harvard Universit, Spring 2009 List of Worksheets Vectors and the Dot Product Cross Product and Triple Product Lines and Planes Functions and Graphs Quadric Surfaces Vector-Valued

More information

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following:

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following: Math 323 Eam 2 - Practice Problem Solutions 1. Given the vectors a = 2,, 1, b = 3, 2,4, and c = 1, 4,, compute the following: (a) A unit vector in the direction of c. u = c c = 1, 4, 1 4 =,, 1+16+ 17 17

More information

MATH2321, Calculus III for Science and Engineering, Fall Name (Printed) Print your name, the date, and then sign the exam on the line

MATH2321, Calculus III for Science and Engineering, Fall Name (Printed) Print your name, the date, and then sign the exam on the line MATH2321, Calculus III for Science and Engineering, Fall 218 1 Exam 2 Name (Printed) Date Signature Instructions STOP. above. Print your name, the date, and then sign the exam on the line This exam consists

More information

Math Exam IV - Fall 2011

Math Exam IV - Fall 2011 Math 233 - Exam IV - Fall 2011 December 15, 2011 - Renato Feres NAME: STUDENT ID NUMBER: General instructions: This exam has 16 questions, each worth the same amount. Check that no pages are missing and

More information

ENGI Multiple Integration Page 8-01

ENGI Multiple Integration Page 8-01 ENGI 345 8. Multiple Integration Page 8-01 8. Multiple Integration This chapter provides only a very brief introduction to the major topic of multiple integration. Uses of multiple integration include

More information

CONSERVATION OF ANGULAR MOMENTUM FOR A CONTINUUM

CONSERVATION OF ANGULAR MOMENTUM FOR A CONTINUUM Chapter 4 CONSERVATION OF ANGULAR MOMENTUM FOR A CONTINUUM Figure 4.1: 4.1 Conservation of Angular Momentum Angular momentum is defined as the moment of the linear momentum about some spatial reference

More information

Lecture 04. Curl and Divergence

Lecture 04. Curl and Divergence Lecture 04 Curl and Divergence UCF Curl of Vector Field (1) F c d l F C Curl (or rotor) of a vector field a n curlf F d l lim c s s 0 F s a n C a n : normal direction of s follow right-hand rule UCF Curl

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

Functions of Several Variables

Functions of Several Variables Chapter 1 Functions of Several Variables 1.1 Introduction A real valued function of n variables is a function f : R, where the domain is a subset of R n. So: for each ( 1,,..., n ) in, the value of f is

More information

MATHEMATICS 317 December 2010 Final Exam Solutions

MATHEMATICS 317 December 2010 Final Exam Solutions MATHEMATI 317 December 1 Final Eam olutions 1. Let r(t) = ( 3 cos t, 3 sin t, 4t ) be the position vector of a particle as a function of time t. (a) Find the velocity of the particle as a function of time

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 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

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

Lecture 18. Double Integrals (cont d) Electrostatic field near an infinite flat charged plate

Lecture 18. Double Integrals (cont d) Electrostatic field near an infinite flat charged plate Lecture 18 ouble Integrals (cont d) Electrostatic field near an infinite flat charged plate Consider a thin, flat plate of infinite size that is charged, with constant charge density ρ (in appropriate

More information

POPULAR QUESTIONS IN ADVANCED CALCULUS

POPULAR QUESTIONS IN ADVANCED CALCULUS GRIET(AUTONOMOU) POPULAR QUETION IN ADVANED ALULU UNIT-. If u = f(e z, e z, e u u u ) then prove that. z. If z u, Prove that u u u. zz. If r r e cos, e sin then show that r u u e [ urr u ]. 4. Find J,

More information

Vector Integrals. Scott N. Walck. October 13, 2016

Vector Integrals. Scott N. Walck. October 13, 2016 Vector Integrals cott N. Walck October 13, 16 Contents 1 A Table of Vector Integrals Applications of the Integrals.1 calar Line Integral.........................1.1 Finding Total Charge of a Line Charge..........1.

More information

Major Ideas in Calc 3 / Exam Review Topics

Major Ideas in Calc 3 / Exam Review Topics Major Ideas in Calc 3 / Exam Review Topics Here are some highlights of the things you should know to succeed in this class. I can not guarantee that this list is exhaustive!!!! Please be sure you are able

More information

Section 4.1. the k-th coordinate function of f. We call the system of equations . =.

Section 4.1. the k-th coordinate function of f. We call the system of equations . =. The Calculus of Functions of Several Variables Section 4. Geometry, Limits, and Continuity In this chapter we will treat the general case of a function mapping R m to R n. Since the cases m = and n = have

More information

MA227 Surface Integrals

MA227 Surface Integrals MA7 urface Integrals Parametrically Defined urfaces We discussed earlier the concept of fx,y,zds where is given by z x,y.wehad fds fx,y,x,y1 x y 1 da R where R is the projection of onto the x,y - plane.

More information

Attributed to: [Duane Q. Nykamp] Page 1 of 5

Attributed to: [Duane Q. Nykamp] Page 1 of 5 Introduction to a Surface Integral of a Vector Field Math Insight The line integral of a vector field 1 F could be interpreted as the work done by the force field F on a particle moving along the path.

More information

MATHEMATICS 200 December 2014 Final Exam Solutions

MATHEMATICS 200 December 2014 Final Exam Solutions MATHEMATICS 2 December 214 Final Eam Solutions 1. Suppose that f,, z) is a function of three variables and let u 1 6 1, 1, 2 and v 1 3 1, 1, 1 and w 1 3 1, 1, 1. Suppose that at a point a, b, c), Find

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

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

36. Double Integration over Non-Rectangular Regions of Type II

36. Double Integration over Non-Rectangular Regions of Type II 36. Double Integration over Non-Rectangular Regions of Type II When establishing the bounds of a double integral, visualize an arrow initially in the positive x direction or the positive y direction. A

More information

Tom Robbins WW Prob Lib1 Math , Fall 2001

Tom Robbins WW Prob Lib1 Math , Fall 2001 Tom Robbins WW Prob Lib Math 220-2, Fall 200 WeBWorK assignment due 9/7/0 at 6:00 AM..( pt) A child walks due east on the deck of a ship at 3 miles per hour. The ship is moving north at a speed of 7 miles

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

(6, 4, 0) = (3, 2, 0). Find the equation of the sphere that has the line segment from P to Q as a diameter.

(6, 4, 0) = (3, 2, 0). Find the equation of the sphere that has the line segment from P to Q as a diameter. Solutions Review for Eam #1 Math 1260 1. Consider the points P = (2, 5, 1) and Q = (4, 1, 1). (a) Find the distance from P to Q. Solution. dist(p, Q) = (4 2) 2 + (1 + 5) 2 + (1 + 1) 2 = 4 + 36 + 4 = 44

More information

2 dimensions Area Under a Curve Added up rectangles length (f lies in 2-dimensional space) 3-dimensional Volume

2 dimensions Area Under a Curve Added up rectangles length (f lies in 2-dimensional space) 3-dimensional Volume 12.7 Triple Integrals HW do integrations manually except for the applications Single integral Functions of 1 variable, f ( x ) *Integrated over interval of x f ( x ) 2 dimensions Area Under a Curve f (

More information

Line and Surface Integrals. Stokes and Divergence Theorems

Line and Surface Integrals. Stokes and Divergence Theorems Math Methods 1 Lia Vas Line and urface Integrals. tokes and Divergence Theorems Review of urves. Intuitively, we think of a curve as a path traced by a moving particle in space. Thus, a curve is a function

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

APPENDIX 2.1 LINE AND SURFACE INTEGRALS

APPENDIX 2.1 LINE AND SURFACE INTEGRALS 2 APPENDIX 2. LINE AND URFACE INTEGRAL Consider a path connecting points (a) and (b) as shown in Fig. A.2.. Assume that a vector field A(r) exists in the space in which the path is situated. Then the line

More information

Archive of Calculus IV Questions Noel Brady Department of Mathematics University of Oklahoma

Archive of Calculus IV Questions Noel Brady Department of Mathematics University of Oklahoma Archive of Calculus IV Questions Noel Brady Department of Mathematics University of Oklahoma This is an archive of past Calculus IV exam questions. You should first attempt the questions without looking

More information

MTH 234 Exam 2 April 10th, Without fully opening the exam, check that you have pages 1 through 12.

MTH 234 Exam 2 April 10th, Without fully opening the exam, check that you have pages 1 through 12. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in our name, etc. on this first page. Without full opening the eam, check that ou have pages 1 through 12. Show all our work on the standard response

More information

Math 302 Outcome Statements Winter 2013

Math 302 Outcome Statements Winter 2013 Math 302 Outcome Statements Winter 2013 1 Rectangular Space Coordinates; Vectors in the Three-Dimensional Space (a) Cartesian coordinates of a point (b) sphere (c) symmetry about a point, a line, and a

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