13.6 Directional derivatives,

Size: px
Start display at page:

Download "13.6 Directional derivatives,"

Transcription

1 13.5 The chain rule Theorem [Chain Rule for Functions of Two Variables] If w = f ( x, y ) is differentiable and x and y are differentiable functions of t, then w is a differentiable function of t and dw = dt x f ( xy, ) dx dt + y f ( xy, ) dy dt. Theorem [Chain Rule for Functions of Three Variables] If w = f ( xyz,, ) is differentiable and x, y and z are differentiable functions of t, then w is a differentiable function of t and dw = dt x f ( xyz,, ) dx dt + y f ( xyz,, ) dy dt + z f ( x, y, z) dz dt. Theorem [Chain Rule for Two Independent Variables and Three Intermediate Variables] If w = f ( x, y, z ), x = g ( rs,, ) y = h ( r, s ) and z = k ( rs., ) If all four functions are differentiable, then w has partial derivatives with respect to r and s, given by the formulas r w= x w r x + y w r y + z w r z s w= x w s x + y w s y + z w s z. Theorem [A Formula for Implicit Differentiation] Suppose F ( xy, ) is differentiable and the equation F ( xy, ) = 0 defines y implicitly as a differentiable function of x. Then, at any dy point where F y 0, = F x. dx F y 13.6 Directional derivatives,

2 gradient vectors, and tangent planes Definition [Directional Derivatives] The derivative of f at P 0 (, y 0 ) in the direction of the unit vector u=u 1 i+u 2 j is the number df f ( x 0 + su 1, y 0 + su 2 ) f ( x 0, y 0 ) =lim provided the limit exists. ds s 0 s u, P 0 x 0 Definition [Gradient Vector or Gradient] The gradient vector (gradient) of f ( xy, ) at a point P 0 ( x 0, y 0 ) is the vector grad( f ) = x fi+ fj obtained by evaluating the y partial derivatives of f at P 0. Theorem [The Directional Derivative is a Scalar Product] If the partial derivatives of f ( x, y ) are defined at P 0 (, y 0 ), then x 0 df = grad( f ).u, the scalar product of the gradient f at P ds P0 0 and u. u, P 0 Properties of the Directional Derivative D u f = grad( f ).u= grad( f ) cos( θ ) where θ is the angle between grad( f ) and u. The function f increases most rapidly when cos( θ) = 1 or when u is the direction of grad( f ). That is, at each point P in its domain, f increases most rapidly in the direction of the gradient vector grad( f ) at P. The derivative in this direction is D u f = grad( f ).u= grad( f ) cos( 0 ) = grad( f ). Similarly, f decreases most rapidly in the direction - grad( f ). The derivative in this direction is D u f = grad( f ).u= grad( f ) cos( π ) =- grad( f ).

3 Any direction u orthogonal to the gradient is a direction of zero change in f because θ then equals π 2 and D u f = grad( f ).u= grad( f ) cos π 2 = grad ( f ).0=0. Definition [Tangent Plane and Normal Line] The tangent plane at the point P 0 ( x 0, y 0, z 0 ) on the level surface f ( xyz,, ) = c is the plane through P 0 normal to grad( f ). The normal line of the surface at P P0 0 is the line through P 0 parallel to grad( f ). P0 Plane tangent to a surface z = f ( xy, ) at ( x 0, y 0, f ( x 0, y 0 )) The plane tangent to the surface z = f ( xy, ) at the point P 0 ( x 0, y 0, z 0 ) =( x 0, y 0, f ( x 0, y 0 )) is f x ( x 0, y 0 )( x x 0 ) + f y ( x 0, y 0 )( y y 0 ) = 0. Estimating the change in f in a direction u To estimate the change in the value of a function f when we move a small distance ds from a point P 0 in a praticular direction u, use the formula df = grad( f).uds. P0 Algebra rules for gradients Constant multiple rule: grad( kf ) =k grad( f ) (any number k) Sum Rule: grad ( f + g ) = grad( f ) + grad( g ) Difference Rule: grad ( f g ) = grad( f ) grad( g ) Product Rule: grad( fg ) = f grad( g) + g grad( f ) Quotient Rule: grad f g grad( f) f grad( g ) = g g 2 A First Look at Tangent Planes Worksheet by Mike May, S.J.- maymk@slu.edu

4 A first naive way to look at tangent planes is to take the tangent lines to the two cross section curves at a point and turn those lines into a plane. (The naive approach works if the function is differentiable, but that is a detail we will look at later.) This worksheet is intended as a demonstration of that technique. Constructing a plane defined by tangent lines to cross sections We start by defining a function that we will work with. Let z=f(x,y) =x^2-3*x*y+y^2. It is first of all useful to look at the graph. f:= (x,y) - x^2-3*x*y+y^2; f := ( xy, ) x 2 3 xy+ y 2 plot3d( f(x,y), x=-5..5, y=-5..5, axes=framed); Notice that the graph goes up in one direction and down in another. We are at a saddle, so tangent planes will tend to cut the surface, much as the tangent line to a cubic curve cuts the curve at the inflection point. To find the tangent plane we considered cross sections. We will start with the point (-1,3). We start by finding the z-value at the point on the graph. Next compute the functions in one variable that we obtain by holding either x or y constant. Now compute the derivatives of the functions in one variable and substitute in the point to find an x-slope and y-slope. graph := plot3d({f(x,y)}, x=0..5, y=0..5, color=blue): tanplane :=plot3d({19-11*(x+1)+9*(y-3)}, x=0..5, y=0..5, color=green):

5 plots[display](graph, tanplane);?plots,spacecurve plot3d(f(x,y),x= , y= , view= , axes=normal, color=blue);

6 x0 := -1; y0 := 3; z0 := f(x0, y0); x0 := -1 y0 := 3 z0 := 19 fx := f(x,y0); fy := f(x0,y); fx := x 2 9 x + 9 fy := y+ y 2 Dfx := diff(fx,x); mx := subs(x=x0,dfx); Dfy := diff(fy,y); my := subs(y=y0,dfy); Dfx := 2 x 9 mx := -11 Dfy := y my := 9 We see that the x slope is -11, the y-slope is 9, and the z value is 19. Let's try plotting the surface and the plane we have obtained. The two surfaces look like good approximations to each other. Let us clean up the picture with some more magical Maple code. Since we want to plot the cross-sections of the graph, we use the command spacecurve in the plots package with(plots): s1 := plot3d(f(x,y), x=-3..1, y=1..5, view=0..40, color=blue): s2 := plot3d(19-11*(x+1)+9*(y-3), x=-3..1, y=1..5, view=0..40, color=red): c1 := spacecurve([x,y0,f(x,y0)], x=-3..1, color=green, thickness =3): c2 := spacecurve([x0,y,f(x0,y)], y=1..5, color=yellow, thickness =3): display3d({s1,s2, c1, c2}, axes=boxed); Warning, the name changecoords has been redefined

7 Thus we see that we have constructed a point that contains the appropriate point of the surface and contains the two tangent lines. An automated approach We can set up a block of code that does the work of the example all in one step. f := (x,y) - x^2-3*x*y+y^2; x0:=-1; y0:=3; width := 5: z0:=f(x0,y0); fx:=f(x,y0); Dfx := diff(fx,x); xslope:= subs(x=x0,dfx); fy:=f(x0,y); Dfy := diff(fy,y); yslope:= subs(y=y0,dfy); fsurface := plot3d(f(x,y), x=x0-width..x0+width, y=y0-width..y0+width, color=red): ftanplane := plot3d(z0+xslope*(x-x0)+yslope*(y-y0), x=x0-width..x0+width, y=y0-width..y0+width, color=blue): xcurve := spacecurve([x,y0,f(x,y0)], x=x0-width..x0+width,

8 color=green, thickness =3): ycurve := spacecurve([x0,y,f(x0,y)], y=y0-width..y0+width, color=yellow, thickness =3): display3d({fsurface,ftanplane, xcurve, ycurve}, axes=boxed); f := ( xy, ) x 2 3 xy+ y 2 x0 := -1 y0 := 3 z0 := 19 fx := x 2 9 x + 9 Dfx := 2 x 9 xslope := -11 fy := y+ y 2 Dfy := y yslope := 9 The advantage of this set-up is that we can consider a different example by modifying the first 2 lines of the block of code above and re-executing the block of code. Exercises 1) Modify the code above to examine the function x xy+ 6 y 2 at two points of your

9 choosing. Verify that the plane obtained is tangent to the surface. (You may want to reduce the width variable to zoom in on the point of tangency.) 2) Modify the code above to examine the function 3 x x 3 + y 3 3 y at the points {(-1, -1), (-1, 1), (1, -1), (1,1)}. Explain what you find. Visualizing Directional Derivatives and Gradients Worksheet by Mike May, S.J.- maymk@slu.edu As we have been looking at directional dericatives and gradients, it seems worthwhile to look at a Maple visualization of everything we have been doing. First want to load the appropriate commands. We will need commands from the packages linalg, plottools, and plots. (Restart cleans up in case we were already running a Maple worksheet.) restart: with(linalg): with(plottools): with(plots): Warning, the protected names norm and trace have been redefined and unprotected Warning, the names arrow and changecoords have been redefined Directional derivatives: For preliminaries we want to define the function, the point in the x-y plane we are evaluating at and the direction vector we are interested in taking a derivative in.. f := (x,y) - x^2 + 2*y^2; xval :=2: yval:= 3: dirvec := [3, 4]: f := ( xy, ) x y 2 Next we would like to compute a unit vector in the desired direction and the z-coordinate of the point of interest. uvec := convert( evalm(dirvec/sqrt(dotprod(dirvec,dirvec))), list); zval := f(xval, yval); 3 4 uvec :=, 5 5 zval := 22 To visualize what we are doing, we look at the surface together with a plane containing the direction vector. surf:= plot3d(f(x,y), x=xval-2..xval+2, y=yval-2..yval+2, axes=boxed, color=red, style = patchnogrid):

10 pathc :=spacecurve( [xval+t*uvec[1], yval+t*uvec[2], f(xval+t*uvec[1], yval+t*uvec[2])], t=-2..2, color=blue, thickness=2): cutplane := polygon([[xval+2*uvec[1], yval+2*uvec[2],zval+5], [xval+2*uvec[1], yval+2*uvec[2],zval-5], [xval-2*uvec[1], yval-2*uvec[2],zval-5], [xval-2*uvec[1], yval-2*uvec[2],zval+5]], color=yellow): display3d({cutplane, surf, pathc}); The surface is in red, the plane that cuts the cross section in the desired direction is in yellow,

11 and the curve in the cross section is in blue. We can get a better view if we look at the function as a function of one variable in the cutting plane. plot(f(xval+t*uvec[1],yval+t*uvec[2]), t=-2..2); We can compute the directional derivative from the definition. dderiv := limit((f(xval+t*uvec[1], yval+t*uvec[2]) - f(xval, yval))/t, t=0); dderiv := 12 This can be used to plot a tangent line to the curve. plot({f(xval+t*uvec[1],yval+t*uvec[2]), zval+dderiv*t}, t=-2..2);

12 We can also put this line back on the 3D graph of the surface. tanline :=spacecurve([xval+t*uvec[1], yval+t*uvec[2], zval+t*dderiv], t=-2..2, color=green, thickness=3): display3d({cutplane, surf, pathc, tanline});

13 For convenience sake we can put the stuff together into one block of code. f := (x,y) - x^2 + 2*y^2; xval :=2: yval:= 3: dirvec := [3, 4]: uvec := convert( evalm(dirvec/sqrt(dotprod(dirvec,dirvec))),list); zval := f(xval,yval); dderiv := limit((f(xval+t*uvec[1], yval+t*uvec[2]) - f(xval, yval))/t, t=0); plot({f(xval+t*uvec[1],yval+t*uvec[2]), zval+dderiv*t}, t=-2..2); surf:= plot3d(f(x,y), x=xval-2..xval+2, y=yval-2..yval+2, axes=boxed, color=red, style = patchnogrid): pathc :=spacecurve([xval+t*uvec[1], yval+t*uvec[2], f(xval+t*uvec[1], yval+t*uvec[2])], t=-2..2, color=blue, thickness=2): cutplane := polygon([[xval+2*uvec[1], yval+2*uvec[2],zval+5], [xval+2*uvec[1], yval+2*uvec[2],zval-5], [xval-2*uvec[1], yval-2*uvec[2],zval-5], [xval-2*uvec[1], yval-2*uvec[2],zval+5]], color=yellow):

14 tanline :=spacecurve([xval+t*uvec[1], yval+t*uvec[2], zval+t*dderiv], t=-2..2, color=green, thickness=3): display3d({cutplane, surf, pathc, tanline}); f := ( xy, ) x y uvec :=, 5 5 zval := 22 dderiv := 12

15 Exercise:. 1) Let g ( xy, ) = sin ( + y 2 ). Modify the code above to plot the graph of g(x,y) in a region around the point (3, 4) together with a line tangent in the direction (5, 12). x 2 A second look at directional derivatives The alternate way to produce the directional derivative is to compute the partial derivatives, evaluate them at our point, and then take the sum of the partials times the appropriate component of the unit direction vector. f := (x,y) - x^2 + 2*y^2: xval :=2: yval:= 3: dirvec := [3, 4]: fx := diff(f(x,y),x); xslope := subs({x=xval, y=yval}, fx); fy := diff(f(x,y), y); yslope := subs({x=xval, y=yval}, fy); dirderiv := xslope*uvec[1]+yslope*uvec[2]; fx := 2 x xslope := 4 fy := 4 y yslope := 12

16 dirderiv := 12 Notice that we do get the same answer for the directional derivative that we got with the formal definition above. This second method is more roundabout, but it has the advantage of being easier to do when we don't have Maple handy. In the second method we only have to take limits for two cross sections. Exercise:. 2) Let g ( xy, ) = sin ( x 2 + y 2 ). Find the directional derivative of g(x,y) at the point (3, 4) in the direction (5, 12) by the method that uses the partials at the point. Comparing the two methods of finding directionalderivatives It is worthwhile varifying that the two methods of computing derectional derivative give the same answer for any direction. (To be more precise, that these two methods with produce the same answer in every direction is the definition of the function being differentiable at a point.) We recall computations made above to get the x-slope and y-slope at a point. f := (x,y) - x^2 + 2*y^2: xval :=2: yval:= 3: dirvec := [3, 4]: zval := f(xval,yval); fx := diff(f(x,y),x): xslope := subs({x=xval, y=yval},fx): fy := diff(f(x,y), y): yslope := subs({x=xval, y=yval}, fy): zval := 22 We recall that a unit vector in direction theta has coordinates (cos(theta), sin(theta)). We then find a directional derivative in direction theta by using the definition of directional derivative. ddera := theta - limit((f(xval+t*cos(theta), yval+t*sin(theta))-f(xval, yval))/t, t=0); ddera := θ lim t 0 f ( xval + t cos( θ ), yval + t sin( θ )) f ( xval, yval) t We now compute the directional derivative by the method that uses x-slope and y-slope. dderb := theta - cos(theta)*xslope + sin(theta)*yslope; dderb := θ cos( θ) xslope + sin( θ) yslope It is now a simple matter to graphically compare the values obtained by the two methods for all angles theta. plot({ddera(theta)- dderb(theta)}, theta=0..2*pi, axes=boxed);

17 If we plot the ring of points (a+cos(theta), b+sin(theta), f(a,b)+ddera(theta)) we get a ring in the tangent plane. surf:= plot3d(f(x,y), x=xval-2..xval+2, y=yval-2..yval+2, axes=boxed, color=red, style = patchnogrid): tanplane:= plot3d(zval+xslope*(x-xval)+yslope*(y-yval), x=xval-2..xval+2, y=yval-2..yval+2, axes=boxed, color=yellow, style = patchnogrid): tanring :=spacecurve([xval+cos(theta), yval+sin(theta), f(xval,yval)+ddera(theta)], theta=0..2*pi, color=blue, thickness=2): display3d({surf, tanplane, tanring});

18 Exercise:. 3) Let g ( xy, ) = sin ( x 2 + y 2 ). Show that g(x,y) is differentiable at (3, 4) by showing that the 2 methods of computing directional derivatives give the same answer in all directions. Gradients: The gradient of a function can be thought of in a number of ways. The easiest description is symbolic. The gradient of f(x,y) is defined to be the vector with components equal to the partial derivatives. In the terminology we have been using, grad(f) = [x-slope, y-slope]. Notice that the gradient has as many components as the input vector, rather than the number of coordiantes in a point in the graph. f := (x,y) - x^2 + 2*y^2; xval :=2: yval:= 3: fx := diff(f(x,y),x); xslope := subs({x=xval, y=yval},fx); fy := diff(f(x,y), y); yslope := subs({x=xval, y=yval}, fy); gradient := [xslope,yslope]; f := ( xy, ) x y 2 fx := 2 x xslope := 4

19 fy := 4 y yslope := 12 gradient := [ 412, ] We are also told that the gradient should be the direction that is perpendicular to the contour of the graph at that point. To see that we want to put the contourplot and the gradient on the same graph. cplot := contourplot(f(x,y),x=xval-2..xval+2, y=yval-2..yval+2): gradv := line([xval,yval], [xval+xslope, yval+yslope], linestyle=1, thickness=3, color=green): display({cplot, gradv},scaling=constrained); This relationship can be seen more clearly with the Maple command gradplot that plots a field of scaled gradient vectors. gplot := gradplot(f(x,y),x=xval-2..xval+2, y=yval-2..yval+2): cplot := contourplot(f(x,y),x=xval-2..xval+2, y=yval-2..yval+2): display({cplot, gplot}, scaling=constrained);

20 Tied into the idea that the gradient is perpendicular to the contours is that it is the direction of steepest ascent. This means that we can visually check to see if we have computed the gradient correctly. If we take the cross section in the direction of the gradient it should be the direction that is rising most steeply. f := (x,y) - x^2 + 2*y^2; xval :=2: yval:= 3: zval := f(xval,yval): fx := diff(f(x,y),x): mx := subs({x=xval, y=yval},fx): fy := diff(f(x,y), y): my := subs({x=xval, y=yval}, fy): gradvec := [mx, my]; unitgradient := convert(evalm(gradvec/sqrt(dotprod(gradvec,gradvec))),list); gradientderiv := mx*unitgradient[1]+my*unitgradient[2]; surf:= plot3d(f(x,y), x=xval-2..xval+2, y=yval-2..yval+2, axes=boxed, color=red, style = patchnogrid): gradientpath :=spacecurve([xval+t*unitgradient[1], yval+t*unitgradient[2], f(xval+t*unitgradient[1], yval+t*unitgradient[2])], t=-2..2, color=blue, thickness=2):

21 cutplane := polygon([[xval+2*unitgradient[1], yval+2*unitgradient[2],zval+5], [xval+2*unitgradient[1], yval+2*unitgradient[2],zval-5], [xval-2*unitgradient[1], yval-2*unitgradient[2],zval-5], [xval-2*unitgradient[1], yval-2*unitgradient[2],zval+5]], color=yellow): gradline :=spacecurve( [xval+t*unitgradient[1], yval+t*unitgradient[2], zval+t*gradientderiv], t=0..1, color=green, thickness=3): display3d({cutplane, surf, gradientpath, gradline}); f := ( xy, ) x y 2 gradvec := [ 412, ] 1 unitgradient := 10, gradientderiv := Exercise: 4a) Let g ( xy, ) = x x + 3 y 2 4 y. Estimate the gradient of g(x,y) at (3, 4) by plotting a contouplot and finding the direction perpendicular to the contours.

22 4b) Estimate the gradient of g(x,y) at (3, 4) by plotting the surface for a region around (3,4) and estimating the direction of steepest increase. 4c) Calculate the gradient of g(x,y) at (3, 4) symbolically.

What you will learn today

What you will learn today What you will learn today Tangent Planes and Linear Approximation and the Gradient Vector Vector Functions 1/21 Recall in one-variable calculus, as we zoom in toward a point on a curve, the graph becomes

More information

Functions of Several Variables, Limits and Derivatives

Functions of Several Variables, Limits and Derivatives Functions of Several Variables, Limits and Derivatives Introduction and Goals: The main goal of this lab is to help you visualize surfaces in three dimensions. We investigate how one can use Maple to evaluate

More information

302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES. 4. Function of several variables, their domain. 6. Limit of a function of several variables

302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES. 4. Function of several variables, their domain. 6. Limit of a function of several variables 302 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES 3.8 Chapter Review 3.8.1 Concepts to Know You should have an understanding of, and be able to explain the concepts listed below. 1. Boundary and interior points

More information

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections

REVIEW I MATH 254 Calculus IV. Exam I (Friday, April 29) will cover sections REVIEW I MATH 254 Calculus IV Exam I (Friday, April 29 will cover sections 14.1-8. 1. Functions of multivariables The definition of multivariable functions is similar to that of functions of one variable.

More information

d f(g(t), h(t)) = x dt + f ( y dt = 0. Notice that we can rewrite the relationship on the left hand side of the equality using the dot product: ( f

d f(g(t), h(t)) = x dt + f ( y dt = 0. Notice that we can rewrite the relationship on the left hand side of the equality using the dot product: ( f Gradients and the Directional Derivative In 14.3, we discussed the partial derivatives f f and, which tell us the rate of change of the x y height of the surface defined by f in the x direction and the

More information

Functions of Several Variables

Functions of Several Variables Functions of Several Variables Directional Derivatives and the Gradient Vector Philippe B Laval KSU April 7, 2012 Philippe B Laval (KSU) Functions of Several Variables April 7, 2012 1 / 19 Introduction

More information

Lagrange Multipliers

Lagrange Multipliers Lagrange Multipliers Introduction and Goals: The goal of this lab is to become more familiar with the process and workings of Lagrange multipliers. This lab is designed more to help you understand the

More information

Practice with Parameterizing Curves and Surfaces. (Part 1)

Practice with Parameterizing Curves and Surfaces. (Part 1) M:8 Spring 7 J. Simon Practice with Parameterizing Curves and Surfaces (Part ) A "parameter" is a number used to measure something. In particular, if we want to describe and analyzie some curve or surface

More information

Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives

Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives. Directional Derivatives Recall that if z = f(x, y), then the partial derivatives f x and f y are defined as and represent the rates of change of z in the x- and y-directions, that is, in the directions of the unit vectors i and

More information

Examples of Linear Approximation

Examples of Linear Approximation M28Spring07 J. Simon Examples of Linear Approximation Here are several examples of using derivatives to find the "best" linear [I'd rather say "affine", but the text says "linear"] approximation to a given

More information

11.5 Cylinders and cylindrical coordinates

11.5 Cylinders and cylindrical coordinates 11.5 Cylinders and cylindrical coordinates Definition [Cylinder and generating curve] A cylinder is a surface composed of the lines that pass through a given plane curve parallel to a given line in space.

More information

Surfaces and Partial Derivatives

Surfaces and Partial Derivatives Surfaces and Partial Derivatives James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 9, 2016 Outline Partial Derivatives Tangent Planes

More information

14.6 Directional Derivatives and the Gradient Vector

14.6 Directional Derivatives and the Gradient Vector 14 Partial Derivatives 14.6 and the Gradient Vector Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. and the Gradient Vector In this section we introduce

More information

Surfaces and Partial Derivatives

Surfaces and Partial Derivatives Surfaces and James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 15, 2017 Outline 1 2 Tangent Planes Let s go back to our simple surface

More information

Gradient and Directional Derivatives

Gradient and Directional Derivatives Gradient and Directional Derivatives MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Fall 2011 Background Given z = f (x, y) we understand that f : gives the rate of change of z in

More information

Chapter 5 Partial Differentiation

Chapter 5 Partial Differentiation Chapter 5 Partial Differentiation For functions of one variable, y = f (x), the rate of change of the dependent variable can dy be found unambiguously by differentiation: f x. In this chapter we explore

More information

27. Tangent Planes & Approximations

27. Tangent Planes & Approximations 27. Tangent Planes & Approximations If z = f(x, y) is a differentiable surface in R 3 and (x 0, y 0, z 0 ) is a point on this surface, then it is possible to construct a plane passing through this point,

More information

f for Directional Derivatives and Gradient The gradient vector is calculated using partial derivatives of the function f(x,y).

f for Directional Derivatives and Gradient The gradient vector is calculated using partial derivatives of the function f(x,y). Directional Derivatives and Gradient The gradient vector is calculated using partial derivatives of the function f(x,y). For a function f(x,y), the gradient vector, denoted as f (pronounced grad f ) is

More information

Tangent Planes/Critical Points

Tangent Planes/Critical Points Tangent Planes/Critical Points Christopher Croke University of Pennsylvania Math 115 UPenn, Fall 2011 Problem: Find the tangent line to the curve of intersection of the surfaces xyz = 1 and x 2 + 2y 2

More information

First of all, we need to know what it means for a parameterize curve to be differentiable. FACT:

First of all, we need to know what it means for a parameterize curve to be differentiable. FACT: CALCULUS WITH PARAMETERIZED CURVES In calculus I we learned how to differentiate and integrate functions. In the chapter covering the applications of the integral, we learned how to find the length of

More information

13.1. Functions of Several Variables. Introduction to Functions of Several Variables. Functions of Several Variables. Objectives. Example 1 Solution

13.1. Functions of Several Variables. Introduction to Functions of Several Variables. Functions of Several Variables. Objectives. Example 1 Solution 13 Functions of Several Variables 13.1 Introduction to Functions of Several Variables Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. Objectives Understand

More information

Equation of tangent plane: for implicitly defined surfaces section 12.9

Equation of tangent plane: for implicitly defined surfaces section 12.9 Equation of tangent plane: for implicitly defined surfaces section 12.9 Some surfaces are defined implicitly, such as the sphere x 2 + y 2 + z 2 = 1. In general an implicitly defined surface has the equation

More information

x 6 + λ 2 x 6 = for the curve y = 1 2 x3 gives f(1, 1 2 ) = λ actually has another solution besides λ = 1 2 = However, the equation λ

x 6 + λ 2 x 6 = for the curve y = 1 2 x3 gives f(1, 1 2 ) = λ actually has another solution besides λ = 1 2 = However, the equation λ Math 0 Prelim I Solutions Spring 010 1. Let f(x, y) = x3 y for (x, y) (0, 0). x 6 + y (4 pts) (a) Show that the cubic curves y = x 3 are level curves of the function f. Solution. Substituting y = x 3 in

More information

Math 113 Calculus III Final Exam Practice Problems Spring 2003

Math 113 Calculus III Final Exam Practice Problems Spring 2003 Math 113 Calculus III Final Exam Practice Problems Spring 23 1. Let g(x, y, z) = 2x 2 + y 2 + 4z 2. (a) Describe the shapes of the level surfaces of g. (b) In three different graphs, sketch the three cross

More information

Continuity and Tangent Lines for functions of two variables

Continuity and Tangent Lines for functions of two variables Continuity and Tangent Lines for functions of two variables James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 4, 2014 Outline 1 Continuity

More information

Math 213 Calculus III Practice Exam 2 Solutions Fall 2002

Math 213 Calculus III Practice Exam 2 Solutions Fall 2002 Math 13 Calculus III Practice Exam Solutions Fall 00 1. Let g(x, y, z) = e (x+y) + z (x + y). (a) What is the instantaneous rate of change of g at the point (,, 1) in the direction of the origin? We want

More information

3.6 Directional Derivatives and the Gradient Vector

3.6 Directional Derivatives and the Gradient Vector 288 CHAPTER 3. FUNCTIONS OF SEVERAL VARIABLES 3.6 Directional Derivatives and te Gradient Vector 3.6.1 Functions of two Variables Directional Derivatives Let us first quickly review, one more time, te

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Calculus III-Final review Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the corresponding position vector. 1) Define the points P = (-,

More information

Derivatives and Graphs of Functions

Derivatives and Graphs of Functions Derivatives and Graphs of Functions September 8, 2014 2.2 Second Derivatives, Concavity, and Graphs In the previous section, we discussed how our derivatives can be used to obtain useful information about

More information

f xx (x, y) = 6 + 6x f xy (x, y) = 0 f yy (x, y) = y In general, the quantity that we re interested in is

f xx (x, y) = 6 + 6x f xy (x, y) = 0 f yy (x, y) = y In general, the quantity that we re interested in is 1. Let f(x, y) = 5 + 3x 2 + 3y 2 + 2y 3 + x 3. (a) Final all critical points of f. (b) Use the second derivatives test to classify the critical points you found in (a) as a local maximum, local minimum,

More information

Functions of Two variables.

Functions of Two variables. Functions of Two variables. Ferdinánd Filip filip.ferdinand@bgk.uni-obuda.hu siva.banki.hu/jegyzetek 27 February 217 Ferdinánd Filip 27 February 217 Functions of Two variables. 1 / 36 Table of contents

More information

Kevin James. MTHSC 206 Section 14.5 The Chain Rule

Kevin James. MTHSC 206 Section 14.5 The Chain Rule MTHSC 206 Section 14.5 The Chain Rule Theorem (Chain Rule - Case 1) Suppose that z = f (x, y) is a differentiable function and that x(t) and y(t) are both differentiable functions as well. Then, dz dt

More information

Multivariate Calculus: Review Problems for Examination Two

Multivariate Calculus: Review Problems for Examination Two Multivariate Calculus: Review Problems for Examination Two Note: Exam Two is on Tuesday, August 16. The coverage is multivariate differential calculus and double integration. You should review the double

More information

Differentiability and Tangent Planes October 2013

Differentiability and Tangent Planes October 2013 Differentiability and Tangent Planes 14.4 04 October 2013 Differentiability in one variable. Recall for a function of one variable, f is differentiable at a f (a + h) f (a) lim exists and = f (a) h 0 h

More information

MATH 19520/51 Class 6

MATH 19520/51 Class 6 MATH 19520/51 Class 6 Minh-Tam Trinh University of Chicago 2017-10-06 1 Review partial derivatives. 2 Review equations of planes. 3 Review tangent lines in single-variable calculus. 4 Tangent planes to

More information

The following information is for reviewing the material since Exam 3:

The following information is for reviewing the material since Exam 3: Outcomes List for Math 121 Calculus I Fall 2010-2011 General Information: The purpose of this Outcomes List is to give you a concrete summary of the material you should know, and the skills you should

More information

1 Programs for double integrals

1 Programs for double integrals > restart; Double Integrals IMPORTANT: This worksheet depends on some programs we have written in Maple. You have to execute these first. Click on the + in the box below, then follow the directions you

More information

Maple Commands for Surfaces and Partial Derivatives

Maple Commands for Surfaces and Partial Derivatives Math 235 Lab 2 Intro Maple Commands for Surfaces and Partial Derivatives We ve seen that a curve can be written as y = f(x), or more generally in parametric form using one parameter (usually t), and the

More information

Engineering Mathematics (4)

Engineering Mathematics (4) Engineering Mathematics (4) Zhang, Xinyu Department of Computer Science and Engineering, Ewha Womans University, Seoul, Korea zhangxy@ewha.ac.kr Example With respect to parameter: s (arc length) r( t)

More information

Multivariate Calculus Review Problems for Examination Two

Multivariate Calculus Review Problems for Examination Two Multivariate Calculus Review Problems for Examination Two Note: Exam Two is on Thursday, February 28, class time. The coverage is multivariate differential calculus and double integration: sections 13.3,

More information

Hw 4 Due Feb 22. D(fg) x y z (

Hw 4 Due Feb 22. D(fg) x y z ( Hw 4 Due Feb 22 2.2 Exercise 7,8,10,12,15,18,28,35,36,46 2.3 Exercise 3,11,39,40,47(b) 2.4 Exercise 6,7 Use both the direct method and product rule to calculate where f(x, y, z) = 3x, g(x, y, z) = ( 1

More information

12.7 Tangent Planes and Normal Lines

12.7 Tangent Planes and Normal Lines .7 Tangent Planes and Normal Lines Tangent Plane and Normal Line to a Surface Suppose we have a surface S generated by z f(x,y). We can represent it as f(x,y)-z 0 or F(x,y,z) 0 if we wish. Hence we can

More information

Math 209, Fall 2009 Homework 3

Math 209, Fall 2009 Homework 3 Math 209, Fall 2009 Homework 3 () Find equations of the tangent plane and the normal line to the given surface at the specified point: x 2 + 2y 2 3z 2 = 3, P (2,, ). Solution Using implicit differentiation

More information

while its direction is given by the right hand rule: point fingers of the right hand in a 1 a 2 a 3 b 1 b 2 b 3 A B = det i j k

while its direction is given by the right hand rule: point fingers of the right hand in a 1 a 2 a 3 b 1 b 2 b 3 A B = det i j k I.f Tangent Planes and Normal Lines Again we begin by: Recall: (1) Given two vectors A = a 1 i + a 2 j + a 3 k, B = b 1 i + b 2 j + b 3 k then A B is a vector perpendicular to both A and B. Then length

More information

t dt ds Then, in the last class, we showed that F(s) = <2s/3, 1 2s/3, s/3> is arclength parametrization. Therefore,

t dt ds Then, in the last class, we showed that F(s) = <2s/3, 1 2s/3, s/3> is arclength parametrization. Therefore, 13.4. Curvature Curvature Let F(t) be a vector values function. We say it is regular if F (t)=0 Let F(t) be a vector valued function which is arclength parametrized, which means F t 1 for all t. Then,

More information

1. Suppose that the equation F (x, y, z) = 0 implicitly defines each of the three variables x, y, and z as functions of the other two:

1. Suppose that the equation F (x, y, z) = 0 implicitly defines each of the three variables x, y, and z as functions of the other two: Final Solutions. Suppose that the equation F (x, y, z) implicitly defines each of the three variables x, y, and z as functions of the other two: z f(x, y), y g(x, z), x h(y, z). If F is differentiable

More information

Outcomes List for Math Multivariable Calculus (9 th edition of text) Spring

Outcomes List for Math Multivariable Calculus (9 th edition of text) Spring Outcomes List for Math 200-200935 Multivariable Calculus (9 th edition of text) Spring 2009-2010 The purpose of the Outcomes List is to give you a concrete summary of the material you should know, and

More information

3. The three points (2, 4, 1), (1, 2, 2) and (5, 2, 2) determine a plane. Which of the following points is in that plane?

3. The three points (2, 4, 1), (1, 2, 2) and (5, 2, 2) determine a plane. Which of the following points is in that plane? Math 4 Practice Problems for Midterm. A unit vector that is perpendicular to both V =, 3, and W = 4,, is (a) V W (b) V W (c) 5 6 V W (d) 3 6 V W (e) 7 6 V W. In three dimensions, the graph of the equation

More information

Week 5: Geometry and Applications

Week 5: Geometry and Applications Week 5: Geometry and Applications Introduction Now that we have some tools from differentiation, we can study geometry, motion, and few other issues associated with functions of several variables. Much

More information

Math 213 Exam 2. Each question is followed by a space to write your answer. Please write your answer neatly in the space provided.

Math 213 Exam 2. Each question is followed by a space to write your answer. Please write your answer neatly in the space provided. Math 213 Exam 2 Name: Section: Do not remove this answer page you will return the whole exam. You will be allowed two hours to complete this test. No books or notes may be used other than a onepage cheat

More information

MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points.

MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points. MATH. 2153, Spring 16, MWF 12:40 p.m. QUIZ 1 January 25, 2016 PRINT NAME A. Derdzinski Show all work. No calculators. The problem is worth 10 points. 1. Evaluate the area A of the triangle with the vertices

More information

Kevin James. MTHSC 206 Section 15.6 Directional Derivatives and the Gra

Kevin James. MTHSC 206 Section 15.6 Directional Derivatives and the Gra MTHSC 206 Section 15.6 Directional Derivatives and the Gradient Vector Definition We define the directional derivative of the function f (x, y) at the point (x 0, y 0 ) in the direction of the unit vector

More information

Date: 16 July 2016, Saturday Time: 14:00-16:00 STUDENT NO:... Math 102 Calculus II Midterm Exam II Solutions TOTAL. Please Read Carefully:

Date: 16 July 2016, Saturday Time: 14:00-16:00 STUDENT NO:... Math 102 Calculus II Midterm Exam II Solutions TOTAL. Please Read Carefully: Date: 16 July 2016, Saturday Time: 14:00-16:00 NAME:... STUDENT NO:... YOUR DEPARTMENT:... Math 102 Calculus II Midterm Exam II Solutions 1 2 3 4 TOTAL 25 25 25 25 100 Please do not write anything inside

More information

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z.

6. Find the equation of the plane that passes through the point (-1,2,1) and contains the line x = y = z. Week 1 Worksheet Sections from Thomas 13 th edition: 12.4, 12.5, 12.6, 13.1 1. A plane is a set of points that satisfies an equation of the form c 1 x + c 2 y + c 3 z = c 4. (a) Find any three distinct

More information

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b.

Practice problems. 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. Practice problems 1. Given a = 3i 2j and b = 2i + j. Write c = i + j in terms of a and b. 1, 1 = c 1 3, 2 + c 2 2, 1. Solve c 1, c 2. 2. Suppose a is a vector in the plane. If the component of the a in

More information

16. LECTURE 16. I understand how to find the rate of change in any direction. I understand in what direction the maximum rate of change happens.

16. LECTURE 16. I understand how to find the rate of change in any direction. I understand in what direction the maximum rate of change happens. 6. LETURE 6 Objectives I understand how to find the rate of change in any direction. I understand in what direction the maximum rate of change happens. So far, we ve learned the definition of the gradient

More information

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives In general, if f is a function of two variables x and y, suppose we let only x vary while keeping y fixed, say y = b, where b is a constant. By the definition of a derivative, we have Then we are really

More information

The directional derivative of f x, y in the direction of at x, y u. f x sa y sb f x y (, ) (, ) 0 0 y 0 0

The directional derivative of f x, y in the direction of at x, y u. f x sa y sb f x y (, ) (, ) 0 0 y 0 0 Review: 0, lim D f u 0 0 0 0 u The directional derivative of f, in the direction of at, is denoted b D f, : u a, b must a unit vector u f sa sb f s 0 (, ) (, ) s f (, ) a f (, ) b 0 0 0 0 0 0 D f, f u

More information

Directional Derivatives and the Gradient Vector Part 2

Directional Derivatives and the Gradient Vector Part 2 Directional Derivatives and the Gradient Vector Part 2 Lecture 25 February 28, 2007 Recall Fact Recall Fact If f is a dierentiable function of x and y, then f has a directional derivative in the direction

More information

(c) 0 (d) (a) 27 (b) (e) x 2 3x2

(c) 0 (d) (a) 27 (b) (e) x 2 3x2 1. Sarah the architect is designing a modern building. The base of the building is the region in the xy-plane bounded by x =, y =, and y = 3 x. The building itself has a height bounded between z = and

More information

MATH 2400, Analytic Geometry and Calculus 3

MATH 2400, Analytic Geometry and Calculus 3 MATH 2400, Analytic Geometry and Calculus 3 List of important Definitions and Theorems 1 Foundations Definition 1. By a function f one understands a mathematical object consisting of (i) a set X, called

More information

Daily WeBWorK, #1. This means the two planes normal vectors must be multiples of each other.

Daily WeBWorK, #1. This means the two planes normal vectors must be multiples of each other. Daily WeBWorK, #1 Consider the ellipsoid x 2 + 3y 2 + z 2 = 11. Find all the points where the tangent plane to this ellipsoid is parallel to the plane 2x + 3y + 2z = 0. In order for the plane tangent to

More information

= w. w u. u ; u + w. x x. z z. y y. v + w. . Remark. The formula stated above is very important in the theory of. surface integral.

= w. w u. u ; u + w. x x. z z. y y. v + w. . Remark. The formula stated above is very important in the theory of. surface integral. 1 Chain rules 2 Directional derivative 3 Gradient Vector Field 4 Most Rapid Increase 5 Implicit Function Theorem, Implicit Differentiation 6 Lagrange Multiplier 7 Second Derivative Test Theorem Suppose

More information

Linear Transformations

Linear Transformations Linear Transformations The two basic vector operations are addition and scaling From this perspective, the nicest functions are those which preserve these operations: Def: A linear transformation is a

More information

Math 210, Exam 2, Spring 2010 Problem 1 Solution

Math 210, Exam 2, Spring 2010 Problem 1 Solution Math, Exam, Spring Problem Solution. Find and classify the critical points of the function f(x,y) x 3 +3xy y 3. Solution: By definition, an interior point (a,b) in the domain of f is a critical point of

More information

MAT203 OVERVIEW OF CONTENTS AND SAMPLE PROBLEMS

MAT203 OVERVIEW OF CONTENTS AND SAMPLE PROBLEMS MAT203 OVERVIEW OF CONTENTS AND SAMPLE PROBLEMS MAT203 covers essentially the same material as MAT201, but is more in depth and theoretical. Exam problems are often more sophisticated in scope and difficulty

More information

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Summary Assignments...2

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Summary Assignments...2 PURE MATHEMATICS 212 Multivariable Calculus CONTENTS Page 1. Assignment Summary... i 2. Summary...1 3. Assignments...2 i PMTH212, Multivariable Calculus Assignment Summary 2010 Assignment Date to be Posted

More information

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

Without fully opening the exam, check that you have pages 1 through 11. 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 11. Show all your work on the standard

More information

Solution 2. ((3)(1) (2)(1), (4 3), (4)(2) (3)(3)) = (1, 1, 1) D u (f) = (6x + 2yz, 2y + 2xz, 2xy) (0,1,1) = = 4 14

Solution 2. ((3)(1) (2)(1), (4 3), (4)(2) (3)(3)) = (1, 1, 1) D u (f) = (6x + 2yz, 2y + 2xz, 2xy) (0,1,1) = = 4 14 Vector and Multivariable Calculus L Marizza A Bailey Practice Trimester Final Exam Name: Problem 1. To prepare for true/false and multiple choice: Compute the following (a) (4, 3) ( 3, 2) Solution 1. (4)(

More information

Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test

Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test Boise State Math 275 (Ultman) Worksheet 2.7: Critical Points, Local Extrema, and the Second Derivative Test From the Toolbox (what you need from previous classes) Algebra: Solving systems of two equations

More information

14.5 Directional Derivatives and the Gradient Vector

14.5 Directional Derivatives and the Gradient Vector 14.5 Directional Derivatives and the Gradient Vector 1. Directional Derivatives. Recall z = f (x, y) and the partial derivatives f x and f y are defined as f (x 0 + h, y 0 ) f (x 0, y 0 ) f x (x 0, y 0

More information

Lagrange multipliers October 2013

Lagrange multipliers October 2013 Lagrange multipliers 14.8 14 October 2013 Example: Optimization with constraint. Example: Find the extreme values of f (x, y) = x + 2y on the ellipse 3x 2 + 4y 2 = 3. 3/2 1 1 3/2 Example: Optimization

More information

Math 21a Tangent Lines and Planes Fall, What do we know about the gradient f? Tangent Lines to Curves in the Plane.

Math 21a Tangent Lines and Planes Fall, What do we know about the gradient f? Tangent Lines to Curves in the Plane. Math 21a Tangent Lines and Planes Fall, 2016 What do we know about the gradient f? Tangent Lines to Curves in the Plane. 1. For each of the following curves, find the tangent line to the curve at the point

More information

Directional Derivatives as Vectors

Directional Derivatives as Vectors Directional Derivatives as Vectors John Ganci 1 Al Lehnen 2 1 Richland College Dallas, TX jganci@dcccd.edu 2 Madison Area Technical College Madison, WI alehnen@matcmadison.edu Statement of problem We are

More information

. Tutorial Class V 3-10/10/2012 First Order Partial Derivatives;...

. Tutorial Class V 3-10/10/2012 First Order Partial Derivatives;... Tutorial Class V 3-10/10/2012 1 First Order Partial Derivatives; Tutorial Class V 3-10/10/2012 1 First Order Partial Derivatives; 2 Application of Gradient; Tutorial Class V 3-10/10/2012 1 First Order

More information

Directional Derivatives and the Gradient Vector Part 2

Directional Derivatives and the Gradient Vector Part 2 Directional Derivatives and the Gradient Vector Part 2 Marius Ionescu October 26, 2012 Marius Ionescu () Directional Derivatives and the Gradient Vector Part October 2 26, 2012 1 / 12 Recall Fact Marius

More information

Parametric Surfaces. Substitution

Parametric Surfaces. Substitution Calculus Lia Vas Parametric Surfaces. Substitution Recall that a curve in space is given by parametric equations as a function of single parameter t x = x(t) y = y(t) z = z(t). A curve is a one-dimensional

More information

Lagrange multipliers 14.8

Lagrange multipliers 14.8 Lagrange multipliers 14.8 14 October 2013 Example: Optimization with constraint. Example: Find the extreme values of f (x, y) = x + 2y on the ellipse 3x 2 + 4y 2 = 3. 3/2 Maximum? 1 1 Minimum? 3/2 Idea:

More information

Graded Assignment 2 Maple plots

Graded Assignment 2 Maple plots Graded Assignment 2 Maple plots The Maple part of the assignment is to plot the graphs corresponding to the following problems. I ll note some syntax here to get you started see tutorials for more. Problem

More information

Background for Surface Integration

Background for Surface Integration Background for urface Integration 1 urface Integrals We have seen in previous work how to define and compute line integrals in R 2. You should remember the basic surface integrals that we will need to

More information

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below:

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below: Polar Coordinates Any point in the plane can be described by the Cartesian coordinates (x, y), where x and y are measured along the corresponding axes. However, this is not the only way to represent points

More information

Final Exam - Review. Cumulative Final Review covers sections and Chapter 12

Final Exam - Review. Cumulative Final Review covers sections and Chapter 12 Final Exam - eview Cumulative Final eview covers sections 11.4-11.8 and Chapter 12 The following is a list of important concepts from each section that will be tested on the Final Exam, but were not covered

More information

Lesson 4: Gradient Vectors, Level Curves, Maximums/Minimums/Saddle Points

Lesson 4: Gradient Vectors, Level Curves, Maximums/Minimums/Saddle Points Lesson 4: Gradient Vectors, Level Curves, Maximums/Minimums/Saddle Points Example 1: The Gradient Vector 2 df Let f(x) x. Then 2x. This can be thought of as a vector that dx tells you the direction of

More information

Curves, Tangent Planes, and Differentials ( ) Feb. 26, 2012 (Sun) Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent

Curves, Tangent Planes, and Differentials ( ) Feb. 26, 2012 (Sun) Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent Lecture 9. Partial Derivatives: Signs on Level Curves, Tangent Planes, and Differentials ( 11.3-11.4) Feb. 26, 2012 (Sun) Signs of Partial Derivatives on Level Curves Level curves are shown for a function

More information

. 1. Chain rules. Directional derivative. Gradient Vector Field. Most Rapid Increase. Implicit Function Theorem, Implicit Differentiation

. 1. Chain rules. Directional derivative. Gradient Vector Field. Most Rapid Increase. Implicit Function Theorem, Implicit Differentiation 1 Chain rules 2 Directional derivative 3 Gradient Vector Field 4 Most Rapid Increase 5 Implicit Function Theorem, Implicit Differentiation 6 Lagrange Multiplier 7 Second Derivative Test Theorem Suppose

More information

An Introduction to the Directional Derivative and the Gradient Math Insight

An Introduction to the Directional Derivative and the Gradient Math Insight An Introduction to the Directional Derivative and the Gradient Math Insight The directional derivative Let the function f(x,y) be the height of a mountain range at each point x=(x,y). If you stand at some

More information

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY

True/False. MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY MATH 1C: SAMPLE EXAM 1 c Jeffrey A. Anderson ANSWER KEY True/False 10 points: points each) For the problems below, circle T if the answer is true and circle F is the answer is false. After you ve chosen

More information

Math 241, Final Exam. 12/11/12.

Math 241, Final Exam. 12/11/12. Math, Final Exam. //. No notes, calculator, or text. There are points total. Partial credit may be given. ircle or otherwise clearly identify your final answer. Name:. (5 points): Equation of a line. Find

More information

Announcements. Topics: To Do:

Announcements. Topics: To Do: Announcements Topics: In the Functions of Several Variables module: - Section 3: Limits and Continuity - Section 4: Partial Derivatives - Section 5: Tangent Plane, Linearization, and Differentiability

More information

MATH Harrell. Which way is up? Lecture 9. Copyright 2008 by Evans M. Harrell II.

MATH Harrell. Which way is up? Lecture 9. Copyright 2008 by Evans M. Harrell II. MATH 2401 - Harrell Which way is up? Lecture 9 Copyright 2008 by Evans M. Harrell II. A set does not necessarily have boundaries If it does have boundaries Are the boundaries part of the set or not? Sets

More information

Exam 2 Preparation Math 2080 (Spring 2011) Exam 2: Thursday, May 12.

Exam 2 Preparation Math 2080 (Spring 2011) Exam 2: Thursday, May 12. Multivariable Calculus Exam 2 Preparation Math 28 (Spring 2) Exam 2: Thursday, May 2. Friday May, is a day off! Instructions: () There are points on the exam and an extra credit problem worth an additional

More information

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Introduction Timetable Assignments...

PURE MATHEMATICS 212 Multivariable Calculus CONTENTS. Page. 1. Assignment Summary... i 2. Introduction Timetable Assignments... PURE MATHEMATICS 212 Multivariable Calculus CONTENTS Page 1. Assignment Summary... i 2. Introduction...1 3. Timetable... 3 4. Assignments...5 i PMTH212, Multivariable Calculus Assignment Summary 2009

More information

Section 1: Section 2: Section 3: Section 4:

Section 1: Section 2: Section 3: Section 4: Announcements Topics: In the Functions of Several Variables module: - Section 1: Introduction to Functions of Several Variables (Basic Definitions and Notation) - Section 2: Graphs, Level Curves + Contour

More information

Direction Fields; Euler s Method

Direction Fields; Euler s Method Direction Fields; Euler s Method It frequently happens that we cannot solve first order systems dy (, ) dx = f xy or corresponding initial value problems in terms of formulas. Remarkably, however, this

More information

Quiz 6 Practice Problems

Quiz 6 Practice Problems Quiz 6 Practice Problems Practice problems are similar, both in difficulty and in scope, to the type of problems you will see on the quiz. Problems marked with a are for your entertainment and are not

More information

Review 1. Richard Koch. April 23, 2005

Review 1. Richard Koch. April 23, 2005 Review Richard Koch April 3, 5 Curves From the chapter on curves, you should know. the formula for arc length in section.;. the definition of T (s), κ(s), N(s), B(s) in section.4. 3. the fact that κ =

More information

Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that

Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that Section 2.6 Exact Equations (ONLY) Key Terms: Exact equations are first order DEs of the form M(x, y) + N(x, y) y' = 0 for which we can find a function f(x, φ(x)) so that The construction of f(x, φ(x))

More information

Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers

Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers. Lagrange Multipliers In this section we present Lagrange s method for maximizing or minimizing a general function f(x, y, z) subject to a constraint (or side condition) of the form g(x, y, z) = k. Figure 1 shows this curve

More information

Grad operator, triple and line integrals. Notice: this material must not be used as a substitute for attending the lectures

Grad operator, triple and line integrals. Notice: this material must not be used as a substitute for attending the lectures Grad operator, triple and line integrals Notice: this material must not be used as a substitute for attending the lectures 1 .1 The grad operator Let f(x 1, x,..., x n ) be a function of the n variables

More information