Surface Integrals of Vector Fields. Using Maple and the vec_calc Package

Size: px
Start display at page:

Download "Surface Integrals of Vector Fields. Using Maple and the vec_calc Package"

Transcription

1 surfintvec.mws The Flux of a Magnetic Field The Expansion of a Gas Surface Integrals of Vector Fields Using Maple and the vec_calc Package This worksheet shows how to compute surface integrals of vector fields using Maple and the vec_calc package. As examples we compute * The Flux of a Magnetic Field * The Expansion of a Gas To start the vec_calc package, execute the following commands: > restart; > libname:="c:/mylib/vec_calc7", libname: > with(vec_calc): vc_aliases: > with(linalg):with(student):with(plots): Warning, the protected names norm and trace have been redefined and unprotected Warning, the name changecoords has been redefined > The Flux of a Magnetic Field (1 of 11)9/10/ :21:46 AM

2 The magnetic field of a current moving along an infinitely long straight wire has magnitude where is a constant and is the distance from the wire. Its direction is counterclockwise around the wire as given by the right hand rule. Suppose two wires are parallel to the -axis and located at and and each carries a current but in opposite directions. We want to find the flux of the magnetic field through the rectangle,, and. The magnetic field of the wire at is > B1:=MF( [x,y,z], evall(mu[0]*i/(4*pi*((x-2*a)^2+(y)^2))*[-y,x-2*a,0]) ); The magnetic field of the wire at is > B2:=MF( [x,y,z], evall(-mu[0]*i/(4*pi*((x+2*a)^2+(y)^2))*[-y,x+2*a,0]) ); The total field is > B3:=MF( [x,y,z], evall(b1(x,y,z)+b2(x,y,z)) ); For the purpose of plotting the functions (and making numerical computations) we make the following assignments to the variables: (2 of 11)9/10/ :21:46 AM

3 > a:=1; b:=1; c:=1; i:=1; mu[0]:=1; We first plot the two functions separately: > B1plot:=fieldplot3d(B1,-3..3,-1..1,-1..1, grid=[9,9,2], color=blue, arrows=slim, orientation=[-90,0], axes=normal, tickmarks=[7,3,3]): > B2plot:=fieldplot3d(B2,-3..3,-1..1,-1..1, grid=[9,9,2], color=red, arrows=slim, orientation=[-90,0], axes=normal, tickmarks=[7,3,3]): > display(array([b1plot,b2plot])); Notice that for both fields, the arrows point in the negative -direction between the two wires. So the fields add up. Now we plot the total field: (3 of 11)9/10/ :21:46 AM

4 > B3plot:=fieldplot3d(B3,-3..3,-1..1,-1..1, grid=[9,9,2], color=black, arrows=slim, orientation=[-90,0], axes=normal, tickmarks=[7,3,3]): B3plot; Before we go on, we unassign the parameters: > a:='a'; b:='b'; c:='c'; i:='i'; mu[0]:='mu[0]'; The rectangle may be parametrized by > Rect:=[u,0,v]; (4 of 11)9/10/ :21:46 AM

5 where, and. The tangent vectors and the normal vector are > Ru:=diff(Rect,u); Rv:=diff(Rect,v); N:=Ru &x Rv; Notice that the normal points in the negative -direction, which is the direction we saw in the plot that the magnetic field points. On the rectangle, the magnetic field is > B3(u,0,v); simplify(%); So the flux is > interface(showassumed=0); assume(0<b,b<2*a,0<c); > Muint(B3(u,0,v) &. N,u=-b..b,v=0..c); Flux:=value(%); (5 of 11)9/10/ :21:46 AM

6 > Flux:=combine(%,ln); Note: There is no guarantee that if you re-execute these commands that Maple will give the answer in the same form. Another way to compute this surface integral is to use the Surface_int_vector command (or its alias Siv ) from the vec_calc package which works directly with the parametrized surface and the vector field: > Ruv:=MF([u,v],Rect); > Siv(B3,Ruv,u=-b..b,v=0..c); Flux:=value(%); There is a second way to compute this flux. The magnetic field is solenoidal because it is divergence-free: > DIV(B3); (6 of 11)9/10/ :21:46 AM

7 So the magnetic field has a vector potential,. > VEC_POT(B3,'A'); > A(x,y,z); By Stokes' Theorem, the flux is the line integral of the vector potential around the boundary curve. Here the boundary consists of four line segments: > r1:=mf([u],[u,0,0]); #for u=-b..b > r2:=mf([v],[b,0,v]); #for v=0..c > r3:=mf([u],[-u,0,c]); #for u=-b..b > r4:=mf([v],[-b,0,c-v]); #for v=0..c So the flux is the total line integral: > Liv(A,r1,u=-b..b)+Liv(A,r2,v=0..c)+Liv(A,r3,u=-b..b)+Liv(A,r4,v=0..c); Flux:=value(%); (7 of 11)9/10/ :21:46 AM

8 > The Expansion of a Gas The velocity field of a gas is. We want to find the expansion of the fluid out through the sphere which is defined as We enter the fluid velocity as a function: > V:=MF([x,y,z],[x*y^2,y*z^2,z*x^2]); The sphere may be parametrized as > Rsph:=[2*sin(phi)*cos(theta),2*sin(phi)*sin(theta),2*cos(phi)]; So the tangent vectors are: > R[theta]:=diff(Rsph,theta); (8 of 11)9/10/ :21:46 AM

9 > R[phi]:=diff(Rsph,phi); and the normal vector is > N:= R[theta] &x R[phi]; We simplify the third component: > N[3]:=simplify(N[3]); The components of are negative in the first octant. So points inward. We want the flux outward. So we reverse : > N:=-N; On the sphere, the velocity is > VR:=V(op(Rsph)); Note: We need the op command to strip the square brackets off. The dot product of the velocity field and the normal is: > VN:=VR &. N; (9 of 11)9/10/ :21:46 AM

10 So the expansion is: > Muint(VN,theta=0..2*Pi,phi=0..Pi); Expansion:=value(%); Another way to compute this surface integral is to use the Surface_int_vector command (or its alias Siv ) from the vec_calc package which works directly with the parametrized surface and the vector field: > R:=MF([theta,phi],Rsph); > Siv(V,R,theta=0..2*Pi,phi=0..Pi); Expansion:=value(%); Notice there is a minus sign difference in the answer because we did not reverse the normal. There is a second way to compute this expansion. By Gauss' theorem, the expansion is the volume integral of the divergence of the velocity over the interior of the sphere. In this case, the divergence is: (10 of 11)9/10/ :21:46 AM

11 > DIV(V); which in spherical coordinates is > divv:=rho^2; The spherical volume Jacobian is > J:=rho^2*sin(phi); So the expansion is > Muint(divV*J,rho=0..2,theta=0..2*Pi,phi=0..Pi); Expansion:=value(%); > > (11 of 11)9/10/ :21:46 AM

Warning, the protected names norm and trace have been redefined and unprotected

Warning, the protected names norm and trace have been redefined and unprotected 22M:28 Spring 5 J. Simon An example of computing a triple integral with several coordinate systems > > with(plots):with(linalg): Warning, the name changecoords has been redefined Warning, the protected

More information

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

Gauss s Law. Phys102 Lecture 4. Key Points. Electric Flux Gauss s Law Applications of Gauss s Law. References. SFU Ed: 22-1,2,3. 6 th Ed: 16-10,+.

Gauss s Law. Phys102 Lecture 4. Key Points. Electric Flux Gauss s Law Applications of Gauss s Law. References. SFU Ed: 22-1,2,3. 6 th Ed: 16-10,+. Phys102 Lecture 4 Phys102 Lecture 4-1 Gauss s Law Key Points Electric Flux Gauss s Law Applications of Gauss s Law References SFU Ed: 22-1,2,3. 6 th Ed: 16-10,+. Electric Flux Electric flux: The direction

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

example consider flow of water in a pipe. At each point in the pipe, the water molecule has a velocity

example consider flow of water in a pipe. At each point in the pipe, the water molecule has a velocity Module 1: A Crash Course in Vectors Lecture 1: Scalar and Vector Fields Objectives In this lecture you will learn the following Learn about the concept of field Know the difference between a scalar field

More information

Multiple Integrals and Vector Calculus: Synopsis

Multiple Integrals and Vector Calculus: Synopsis Multiple Integrals and Vector Calculus: Synopsis Hilary Term 28: 14 lectures. Steve Rawlings. 1. Vectors - recap of basic principles. Things which are (and are not) vectors. Differentiation and integration

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

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Chapter 13, Section 6 Adapted from a worksheet prepared for Thomas' Calculus, Finney, Weir, Giordano updated for Maple

More information

free space (vacuum) permittivity [ F/m]

free space (vacuum) permittivity [ F/m] Electrostatic Fields Electrostatic fields are static (time-invariant) electric fields produced by static (stationary) charge distributions. The mathematical definition of the electrostatic field is derived

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

ARNOLD PIZER rochester problib from CVS Summer 2003

ARNOLD PIZER rochester problib from CVS Summer 2003 ARNOLD PIZER rochester problib from VS Summer 003 WeBWorK assignment Vectoralculus due 5/3/08 at :00 AM.( pt) setvectoralculus/ur V.pg onsider the transformation T : x 8 53 u 45 45 53v y 53 u 8 53 v A.

More information

Vector Calculus, Maths II

Vector Calculus, Maths II Section A Vector Calculus, Maths II REVISION (VECTORS) 1. Position vector of a point P(x, y, z) is given as + y and its magnitude by 2. The scalar components of a vector are its direction ratios, and represent

More information

Elements of Vector Calculus : Line and Surface Integrals

Elements of Vector Calculus : Line and Surface Integrals Elements of Vector Calculus : Line and Surface Integrals Lecture 2: Electromagnetic Theory Professor D. K. Ghosh, Physics Department, I.I.T., Bombay In this lecture we will talk about special functions

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

13 Spherical geometry

13 Spherical geometry 13 Spherical geometry Let ABC be a triangle in the Euclidean plane. From now on, we indicate the interior angles A = CAB, B = ABC, C = BCA at the vertices merely by A, B, C. The sides of length a = BC

More information

E. not enough information given to decide

E. not enough information given to decide Q22.1 A spherical Gaussian surface (#1) encloses and is centered on a point charge +q. A second spherical Gaussian surface (#2) of the same size also encloses the charge but is not centered on it. Compared

More information

week 8 The Magnetic Field

week 8 The Magnetic Field week 8 The Magnetic Field General Principles General Principles Applications Start with magnetic forces on moving charges and currents A positive charge enters a uniform magnetic field as shown. What is

More information

Arnie Pizer Rochester Problem Library Fall 2005 WeBWorK assignment VectorCalculus1 due 05/03/2008 at 02:00am EDT.

Arnie Pizer Rochester Problem Library Fall 2005 WeBWorK assignment VectorCalculus1 due 05/03/2008 at 02:00am EDT. Arnie Pizer Rochester Problem Library Fall 005 WeBWorK assignment Vectoralculus due 05/03/008 at 0:00am EDT.. ( pt) rochesterlibrary/setvectoralculus/ur V.pg onsider the transformation T : x = 35 35 37u

More information

PRACTICE PROBLEMS. Please let me know if you find any mistakes in the text so that i can fix them. 1. Mixed partial derivatives.

PRACTICE PROBLEMS. Please let me know if you find any mistakes in the text so that i can fix them. 1. Mixed partial derivatives. PRACTICE PROBLEMS Please let me know if you find any mistakes in the text so that i can fix them. 1.1. Let Show that f is C 1 and yet How is that possible? 1. Mixed partial derivatives f(x, y) = {xy x

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

Concept Questions with Answers. Concept Questions with Answers W11D2. Concept Questions Review

Concept Questions with Answers. Concept Questions with Answers W11D2. Concept Questions Review Concept Questions with W11D2 Concept Questions Review W11D2 2 Concept Questions with W7D1 W07D1 Magnetic Dipoles, Force and Torque on a Dipole, Experiment 2 W07D1 Magnetic Dipoles, Torque and Force on

More information

2. Gauss Law [1] Equipment: This is a theoretical lab so your equipment is pencil, paper, and textbook.

2. Gauss Law [1] Equipment: This is a theoretical lab so your equipment is pencil, paper, and textbook. Purpose: Theoretical study of Gauss law. 2. Gauss Law [1] Equipment: This is a theoretical lab so your equipment is pencil, paper, and textbook. When drawing field line pattern around charge distributions

More information

Chapter 23. Gauss Law. Copyright 2014 John Wiley & Sons, Inc. All rights reserved.

Chapter 23. Gauss Law. Copyright 2014 John Wiley & Sons, Inc. All rights reserved. Chapter 23 Gauss Law Copyright 23-1 Electric Flux Electric field vectors and field lines pierce an imaginary, spherical Gaussian surface that encloses a particle with charge +Q. Now the enclosed particle

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

Ampere s Law. Outline. Objectives. BEE-Lecture Notes Anurag Srivastava 1

Ampere s Law. Outline. Objectives. BEE-Lecture Notes Anurag Srivastava 1 Outline Introduce as an analogy to Gauss Law. Define. Applications of. Objectives Recognise to be analogous to Gauss Law. Recognise similar concepts: (1) draw an imaginary shape enclosing the current carrying

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

Vector Calculus. Dr. D. Sukumar. February 1, 2016

Vector Calculus. Dr. D. Sukumar. February 1, 2016 Vector Calculus Dr. D. Sukumar February 1, 2016 Green s Theorem Tangent form or Ciculation-Curl form c Mdx + Ndy = R ( N x M ) da y Green s Theorem Tangent form or Ciculation-Curl form Stoke s Theorem

More information

Exercises for Multivariable Differential Calculus XM521

Exercises for Multivariable Differential Calculus XM521 This document lists all the exercises for XM521. The Type I (True/False) exercises will be given, and should be answered, online immediately following each lecture. The Type III exercises are to be done

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

2. Conservation of Mass

2. Conservation of Mass 2 Conservation of Mass The equation of mass conservation expresses a budget for the addition and removal of mass from a defined region of fluid Consider a fixed, non-deforming volume of fluid, V, called

More information

Lecture 3. Electric Field Flux, Gauss Law. Last Lecture: Electric Field Lines

Lecture 3. Electric Field Flux, Gauss Law. Last Lecture: Electric Field Lines Lecture 3. Electric Field Flux, Gauss Law Last Lecture: Electric Field Lines 1 iclicker Charged particles are fixed on grids having the same spacing. Each charge has the same magnitude Q with signs given

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

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

EE2007: Engineering Mathematics II Vector Calculus

EE2007: Engineering Mathematics II Vector Calculus EE2007: Engineering Mathematics II Vector Calculus Ling KV School of EEE, NTU ekvling@ntu.edu.sg Rm: S2-B2b-22 Ver 1.1: Ling KV, October 22, 2006 Ver 1.0: Ling KV, Jul 2005 EE2007/Ling KV/Aug 2006 EE2007:

More information

Gauss Law 1. Name Date Partners GAUSS' LAW. Work together as a group on all questions.

Gauss Law 1. Name Date Partners GAUSS' LAW. Work together as a group on all questions. Gauss Law 1 Name Date Partners 1. The statement of Gauss' Law: (a) in words: GAUSS' LAW Work together as a group on all questions. The electric flux through a closed surface is equal to the total charge

More information

PHYS ND semester Dr. Nadyah Alanazi. Lecture 16

PHYS ND semester Dr. Nadyah Alanazi. Lecture 16 1 PHYS 104 2 ND semester 1439-1440 Dr. Nadyah Alanazi Lecture 16 2 Chapter 29 Magnetic Field 29.1 Magnetic Fields and Forces 29.2 Magnetic Force Acting on a Current-Carrying Conductor 29.4 Motion of a

More information

Divergence Theorem December 2013

Divergence Theorem December 2013 Divergence Theorem 17.3 11 December 2013 Fundamental Theorem, Four Ways. b F (x) dx = F (b) F (a) a [a, b] F (x) on boundary of If C path from P to Q, ( φ) ds = φ(q) φ(p) C φ on boundary of C Green s Theorem:

More information

Divergence Theorem Fundamental Theorem, Four Ways. 3D Fundamental Theorem. Divergence Theorem

Divergence Theorem Fundamental Theorem, Four Ways. 3D Fundamental Theorem. Divergence Theorem Divergence Theorem 17.3 11 December 213 Fundamental Theorem, Four Ways. b F (x) dx = F (b) F (a) a [a, b] F (x) on boundary of If C path from P to Q, ( φ) ds = φ(q) φ(p) C φ on boundary of C Green s Theorem:

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

Magnetic Fields Due to Currents

Magnetic Fields Due to Currents PHYS102 Previous Exam Problems CHAPTER 29 Magnetic Fields Due to Currents Calculating the magnetic field Forces between currents Ampere s law Solenoids 1. Two long straight wires penetrate the plane of

More information

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc.

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc. Chapter 22 Gauss s Law 22-1 Electric Flux Electric flux: Electric flux through an area is proportional to the total number of field lines crossing the area. 22-1 Electric Flux Example 22-1: Electric flux.

More information

Chapter 5. Magnetostatics

Chapter 5. Magnetostatics Chapter 5. Magnetostatics 5.4 Magnetic Vector Potential 5.1.1 The Vector Potential In electrostatics, E Scalar potential (V) In magnetostatics, B E B V A Vector potential (A) (Note) The name is potential,

More information

52. The Del Operator: Divergence and Curl

52. The Del Operator: Divergence and Curl 52. The Del Operator: Divergence and Curl Let F(x, y, z) = M(x, y, z), N(x, y, z), P(x, y, z) be a vector field in R 3. The del operator is represented by the symbol, and is written = x, y, z, or = x,

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

Electric flux. Electric Fields and Gauss s Law. Electric flux. Flux through an arbitrary surface

Electric flux. Electric Fields and Gauss s Law. Electric flux. Flux through an arbitrary surface Electric flux Electric Fields and Gauss s Law Electric flux is a measure of the number of field lines passing through a surface. The flux is the product of the magnitude of the electric field and the surface

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

JEFFERSON COLLEGE COURSE SYLLABUS MTH201 CALCULUS III. 5 Semester Credit Hours. Prepared by: Linda Cook

JEFFERSON COLLEGE COURSE SYLLABUS MTH201 CALCULUS III. 5 Semester Credit Hours. Prepared by: Linda Cook JEFFERSON COLLEGE COURSE SYLLABUS MTH201 CALCULUS III 5 Semester Credit Hours Prepared by: Linda Cook Revised Date: December 14, 2006 by Mulavana J Johny Arts & Science Education Dr. Mindy Selsor, Dean

More information

UNIVERSITY OF INDONESIA FACULTY OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING

UNIVERSITY OF INDONESIA FACULTY OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING UNIVERSITY OF INDONESIA FACULTY OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING ENGINEERING MATHEMATICS (MCS-21007) 1. Course Name/Units : Engineering Mathematics/4 2. Department/Semester : Mechanical

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

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc.

Chapter 22 Gauss s Law. Copyright 2009 Pearson Education, Inc. Chapter 22 Gauss s Law Electric Flux Gauss s Law Units of Chapter 22 Applications of Gauss s Law Experimental Basis of Gauss s and Coulomb s Laws 22-1 Electric Flux Electric flux: Electric flux through

More information

Physics 2B Winter 2012 Final Exam Practice

Physics 2B Winter 2012 Final Exam Practice Physics 2B Winter 2012 Final Exam Practice 1) When the distance between two charges is increased, the force between the charges A) increases directly with the square of the distance. B) increases directly

More information

Questions Chapter 23 Gauss' Law

Questions Chapter 23 Gauss' Law Questions Chapter 23 Gauss' Law 23-1 What is Physics? 23-2 Flux 23-3 Flux of an Electric Field 23-4 Gauss' Law 23-5 Gauss' Law and Coulomb's Law 23-6 A Charged Isolated Conductor 23-7 Applying Gauss' Law:

More information

Electromagnetic Forces on Parallel Current-

Electromagnetic Forces on Parallel Current- Page 1 of 5 Tutorial Models : Electromagnetic Forces on Parallel Current-Carrying Wires Electromagnetic Forces on Parallel Current- Carrying Wires Introduction One ampere is defined as the constant current

More information

EE2007: Engineering Mathematics II Vector Calculus

EE2007: Engineering Mathematics II Vector Calculus EE2007: Engineering Mathematics II Vector Calculus Ling KV School of EEE, NTU ekvling@ntu.edu.sg Rm: S2-B2b-22 Ver 1.1: Ling KV, October 22, 2006 Ver 1.0: Ling KV, Jul 2005 EE2007/Ling KV/Aug 2006 My part:

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

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

1 Current Flow Problems

1 Current Flow Problems Physics 704 Notes Sp 08 Current Flow Problems The current density satisfies the charge conservation equation (notes eqn 7) thusinasteadystate, is solenoidal: + =0 () =0 () In a conducting medium, we may

More information

AP Physics C - E & M

AP Physics C - E & M AP Physics C - E & M Gauss's Law 2017-07-08 www.njctl.org Electric Flux Gauss's Law Sphere Table of Contents: Gauss's Law Click on the topic to go to that section. Infinite Rod of Charge Infinite Plane

More information

Physics 3211: Electromagnetic Theory (Tutorial)

Physics 3211: Electromagnetic Theory (Tutorial) Question 1 a) The capacitor shown in Figure 1 consists of two parallel dielectric layers and a voltage source, V. Derive an equation for capacitance. b) Find the capacitance for the configuration of Figure

More information

Name Date Partners. Lab 2 GAUSS LAW

Name Date Partners. Lab 2 GAUSS LAW L02-1 Name Date Partners Lab 2 GAUSS LAW On all questions, work together as a group. 1. The statement of Gauss Law: (a) in words: The electric flux through a closed surface is equal to the total charge

More information

UNIT 1. INTRODUCTION

UNIT 1. INTRODUCTION UNIT 1. INTRODUCTION Objective: The aim of this chapter is to gain knowledge on Basics of electromagnetic fields Scalar and vector quantities, vector calculus Various co-ordinate systems namely Cartesian,

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

Lecture 13: Vector Calculus III

Lecture 13: Vector Calculus III Lecture 13: Vector Calculus III 1 Key points Line integrals (curvilinear integrals) of scalar fields Line integrals (curvilinear integrals) of vector fields Surface integrals Maple int PathInt LineInt

More information

Electromagnetism 2. D. the charge moves at right angles to the lines of the magnetic field. (1)

Electromagnetism 2. D. the charge moves at right angles to the lines of the magnetic field. (1) ame: Date: Electromagnetism 2 1. A magnetic force acts on an electric charge in a magnetic field when A. the charge is not moving. B. the charge moves in the direction of the magnetic field. C. the charge

More information

PHY102 Electricity Topic 3 (Lectures 4 & 5) Gauss s Law

PHY102 Electricity Topic 3 (Lectures 4 & 5) Gauss s Law PHY1 Electricity Topic 3 (Lectures 4 & 5) Gauss s Law In this topic, we will cover: 1) Electric Flux ) Gauss s Law, relating flux to enclosed charge 3) Electric Fields and Conductors revisited Reading

More information

Name Date Partners. Lab 4 - GAUSS' LAW. On all questions, work together as a group.

Name Date Partners. Lab 4 - GAUSS' LAW. On all questions, work together as a group. 65 Name Date Partners 1. The statement of Gauss' Law: Lab 4 - GAUSS' LAW On all questions, work together as a group. (a) in words: The electric flux through a closed surface is equal to the total charge

More information

INGENIERÍA EN NANOTECNOLOGÍA

INGENIERÍA EN NANOTECNOLOGÍA ETAPA DISCIPLINARIA TAREAS 385 TEORÍA ELECTROMAGNÉTICA Prof. E. Efren García G. Ensenada, B.C. México 206 Tarea. Two uniform line charges of ρ l = 4 nc/m each are parallel to the z axis at x = 0, y = ±4

More information

1 Fundamentals. 1.1 Overview. 1.2 Units: Physics 704 Spring 2018

1 Fundamentals. 1.1 Overview. 1.2 Units: Physics 704 Spring 2018 Physics 704 Spring 2018 1 Fundamentals 1.1 Overview The objective of this course is: to determine and fields in various physical systems and the forces and/or torques resulting from them. The domain of

More information

Chapter 19 Electric Charges, Forces, and Fields

Chapter 19 Electric Charges, Forces, and Fields Chapter 19 Electric Charges, Forces, and Fields Outline 19-1 Electric Charge 19-2 Insulators and Conductors 19-3 Coulomb s Law 19-4 The Electric Field 19-5 Electric Field Lines 19-6 Shield and Charging

More information

Sept , 17, 23, 29, 37, 41, 45, 47, , 5, 13, 17, 19, 29, 33. Exam Sept 26. Covers Sept 30-Oct 4.

Sept , 17, 23, 29, 37, 41, 45, 47, , 5, 13, 17, 19, 29, 33. Exam Sept 26. Covers Sept 30-Oct 4. MATH 23, FALL 2013 Text: Calculus, Early Transcendentals or Multivariable Calculus, 7th edition, Stewart, Brooks/Cole. We will cover chapters 12 through 16, so the multivariable volume will be fine. WebAssign

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

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

8/28/2018. The Field Model. The Field Model. The Electric Field

8/28/2018. The Field Model. The Field Model. The Electric Field The Field Model The photos show the patterns that iron filings make when sprinkled around a magnet. These patterns suggest that space itself around the magnet is filled with magnetic influence. This is

More information

Lecture 12 Notes, Electromagnetic Theory I Dr. Christopher S. Baird University of Massachusetts Lowell

Lecture 12 Notes, Electromagnetic Theory I Dr. Christopher S. Baird University of Massachusetts Lowell Lecture 12 Notes, Electromagnetic Theory I Dr. Christopher S. Baird University of Massachusetts Lowell 1. Review of Magnetostatics in Magnetic Materials - Currents give rise to curling magnetic fields:

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

12.3 Curvature, torsion and the TNB frame

12.3 Curvature, torsion and the TNB frame 1.3 Curvature, torsion and the TNB frame Acknowledgments: Material from a Georgia Tech worksheet by Jim Herod, School of Mathematics, herod@math.gatech.edu, is incorporated into the section on curvature,

More information

Unit-1 Electrostatics-1

Unit-1 Electrostatics-1 1. Describe about Co-ordinate Systems. Co-ordinate Systems Unit-1 Electrostatics-1 In order to describe the spatial variations of the quantities, we require using appropriate coordinate system. A point

More information

Distance in the Plane

Distance in the Plane Distance in the Plane The absolute value function is defined as { x if x 0; and x = x if x < 0. If the number a is positive or zero, then a = a. If a is negative, then a is the number you d get by erasing

More information

density = N A where the vector di erential aread A = ^n da, and ^n is the normaltothat patch of surface. Solid angle

density = N A where the vector di erential aread A = ^n da, and ^n is the normaltothat patch of surface. Solid angle Gauss Law Field lines and Flux Field lines are drawn so that E is tangent to the field line at every point. Field lines give us information about the direction of E, but also about its magnitude, since

More information

Chapter 30 Sources of the magnetic field

Chapter 30 Sources of the magnetic field Chapter 30 Sources of the magnetic field Force Equation Point Object Force Point Object Field Differential Field Is db radial? Does db have 1/r2 dependence? Biot-Savart Law Set-Up The magnetic field is

More information

Double Integrals using Riemann Sums

Double Integrals using Riemann Sums Double Integrals using Riemann Sums Introduction and Goals: The goal of this lab is to become more familiar with Riemann sums both as a definition for the double integral and as an approximation method

More information

In this chapter, we study the calculus of vector fields.

In this chapter, we study the calculus of vector fields. 16 VECTOR CALCULUS VECTOR CALCULUS In this chapter, we study the calculus of vector fields. These are functions that assign vectors to points in space. VECTOR CALCULUS We define: Line integrals which can

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

Chapter 30. Sources of the Magnetic Field Amperes and Biot-Savart Laws

Chapter 30. Sources of the Magnetic Field Amperes and Biot-Savart Laws Chapter 30 Sources of the Magnetic Field Amperes and Biot-Savart Laws F B on a Charge Moving in a Magnetic Field Magnitude proportional to charge and speed of the particle Direction depends on the velocity

More information

cancel each other out. Thus, we only need to consider magnetic field produced by wire carrying current 2.

cancel each other out. Thus, we only need to consider magnetic field produced by wire carrying current 2. PC1143 2011/2012 Exam Solutions Question 1 a) Assumption: shells are conductors. Notes: the system given is a capacitor. Make use of spherical symmetry. Energy density, =. in this case means electric field

More information

Ying-Ying Tran 2016 May 10 Review

Ying-Ying Tran 2016 May 10 Review MATH 920 Final review Ying-Ying Tran 206 Ma 0 Review hapter 3: Vector geometr vectors dot products cross products planes quadratic surfaces clindrical and spherical coordinates hapter 4: alculus of vector-valued

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

ENGI 4430 Gauss & Stokes Theorems; Potentials Page 10.01

ENGI 4430 Gauss & Stokes Theorems; Potentials Page 10.01 ENGI 443 Gauss & tokes heorems; Potentials Page.. Gauss Divergence heorem Let be a piecewise-smooth closed surface enclosing a volume in vector field. hen the net flux of F out of is F d F d, N 3 and let

More information

Differential Operators and the Divergence Theorem

Differential Operators and the Divergence Theorem 1 of 6 1/15/2007 6:31 PM Differential Operators and the Divergence Theorem One of the most important and useful mathematical constructs is the "del operator", usually denoted by the symbol Ñ (which is

More information

MAXWELL S DIFFERENTIAL LAWS IN FREE SPACE

MAXWELL S DIFFERENTIAL LAWS IN FREE SPACE MAXWELL S DIFFERENTIAL LAWS IN FREE SPACE.0 INTRODUCTION Maxwell s integral laws encompass the laws of electrical circuits. The transition from fields to circuits is made by associating the relevant volumes,

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

4B. Line Integrals in the Plane

4B. Line Integrals in the Plane 4. Line Integrals in the Plane 4A. Plane Vector Fields 4A-1 Describe geometrically how the vector fields determined by each of the following vector functions looks. Tell for each what the largest region

More information

Lecture 29: MON 03 NOV

Lecture 29: MON 03 NOV Physics 2113 Jonathan Dowling Lecture 29: MON 03 NOV Ch30.1 4 Induction and Inductance I Fender Stratocaster Solenoid Pickup Magnetic Circuit Breaker As the normal operating or "rated" current flows through

More information

Course Outline. 2. Vectors in V 3.

Course Outline. 2. Vectors in V 3. 1. Vectors in V 2. Course Outline a. Vectors and scalars. The magnitude and direction of a vector. The zero vector. b. Graphical vector algebra. c. Vectors in component form. Vector algebra with components.

More information

MUDRA PHYSICAL SCIENCES

MUDRA PHYSICAL SCIENCES MUDRA PHYSICAL SCIENCES VOLUME- PART B & C MODEL QUESTION BANK FOR THE TOPICS:. Electromagnetic Theory UNIT-I UNIT-II 7 4. Quantum Physics & Application UNIT-I 8 UNIT-II 97 (MCQs) Part B & C Vol- . Electromagnetic

More information

The Basic Definition of Flux

The Basic Definition of Flux The Basic Definition of Flux Imagine holding a rectangular wire loop of area A in front of a fan. The volume of air flowing through the loop each second depends on the angle between the loop and the direction

More information

Module 2 : Electrostatics Lecture 7 : Electric Flux

Module 2 : Electrostatics Lecture 7 : Electric Flux Module 2 : Electrostatics Lecture 7 : Electric Flux Objectives In this lecture you will learn the following Concept of flux and calculation of eletric flux throught simple geometrical objects Gauss's Law

More information

Electrodynamics Exam 3 and Final Exam Sample Exam Problems Dr. Colton, Fall 2016

Electrodynamics Exam 3 and Final Exam Sample Exam Problems Dr. Colton, Fall 2016 Electrodynamics Exam 3 and Final Exam Sample Exam Problems Dr. Colton, Fall 016 Multiple choice conceptual questions 1. An infinitely long, straight wire carrying current passes through the center of a

More information

DOING PHYSICS WITH MATLAB STATIC MAGNETIC FIELDS BIOT-SAVART LAW PARALLEL WIRES

DOING PHYSICS WITH MATLAB STATIC MAGNETIC FIELDS BIOT-SAVART LAW PARALLEL WIRES DOING PHYSICS WITH MATLAB STATIC MAGNETIC FIELDS BIOT-SAVART LAW PARALLEL WIRES Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au DOWNLOAD DIRECTORY FOR MATLAB SCRIPTS Download

More information

Chapter 29. Magnetic Fields due to Currentss

Chapter 29. Magnetic Fields due to Currentss Chapter 29 Magnetic Fields due to Currentss Refresher: The Magnetic Field Permanent bar magnets have opposite poles on each end, called north and south. Like poles repel; opposites attract. If a magnet

More information