LECTURE 18 - OPTIMIZATION

Size: px
Start display at page:

Download "LECTURE 18 - OPTIMIZATION"

Transcription

1 LECTURE 18 - OPTIMIZATION CHRIS JOHNSON Abstract. In this lecture we ll describe extend the optimization techniques you learned in your first semester calculus class to optimize functions of multiple variables. In particular, we ll see how the tangent planes of a function s graph will allow us to us to search for local maxima and minima. We ll also describe a second-derivative test for functions of two variables, and discuss some conditions on the domain of a multivariable function that guarantee the existence of extrema. 1. Maxima & Minima Given a function of two variables, f(x, y), we say that the point (x 0, y 0 ) is a local maximum of f if there exists some ɛ > 0 such that f(x 0, y 0 ) f(x, y) for all (x, y) that are within ɛ-distance of (x 0, y 0 ). (For this lecture we will assume all functions are differentiable.) Graphically this means that the point (x 0, y 0, f(x 0, y 0 )) occurs at the top of a hill on the surface z = f(x, y) (or the surface could be flat near this point). A local minimum is defined the same way, except we require f(x 0, y 0 ) f(x, y) for all (x, y) within ɛ-distance of (x 0, y 0 ). So instead of being at the top of a hill, (x 0, y 0, f(x 0, y 0 )) is at the bottom of a valley. If f(x 0, y 0 ) f(x, y) for all (x, y) in the domain of f, then we say that (x 0, y 0 ) is a global maximum. If f(x 0, y 0 ) f(x, y) for all (x, y) in the doamin of f, then we say that (x 0, y 0 ) is a global minimum. Sometimes the words absolute maximum and absolute minimum are used instead. Graphically, the global maxima (minima) occur at the peaks (valleys) of the largest (deepest) hills (valleys). Notice that local and global extrema are not unique in general, and that global extrema are also local extrema. The obsveration that extrema occur at hills and valleys suggest a nice way of looking for extrema: find all of the hills and valleys. Geometrically, this means we want to find all of the places where the tangent plane of the function is flat (parallel to the xy-plane). This is the same thing as saying that the normal vector of this tangent plane Date: February 28,

2 2 CHRIS JOHNSON points straight up, or straight down. Since we know from the previous lecture on tangent planes that the normal vector of the tangent plane of z = f(x, y) at the point (x 0, y 0 ) is given by f x (x 0, y 0 ), f y (x 0, y 0 ), 1, this is equivalent to asking that f x (x 0, y 0 ) = f y (x 0, y 0 ) = 0. Theorem 1.1. If f(x, y) is differentiable and (x 0, y 0 ) is a local extremum, then f x (x 0, y 0 ) = f y (x 0, y 0 ) = 0. It turns out that in order to guarantee a point is a global extremum, and not just a local one, we ll need a few more conditions on the function. For this reason we ll only search for local maxima and minima for the time being. If a function isn t differentiable at a point in its domain (which effectively means the function s graph has a sharp point), it could be that this non-differentiable point is an extremum of the function. As a simple example, consider the cone z = x 2 + y 2. The function isn t differentiable at the point (0, 0), but this is clearly a local (in fact global) minimum of the function. We will call a point (x 0, y 0 ) a critical point of f(x, y) if any of the following conditions are met: (1) f x (x 0, y 0 ) = f y (x 0, y 0 ) = 0, or (2) f x (x 0, y 0 ) does not exist, or (3) f y (x 0, y 0 ) does not exist. Example 1.1. Find all of the critical points of f(x, y) = x 2 +xy+y 2 +y. First we calculate the partial derivatives, f x (x, y) = 2x + y f y (x, y) = x + 2y + 1 These partial derivatives obviously exist, and are continuous, for all (x, y) since they re polynomials. So to find the critical points, we now need to look for the solutions to the system 2x + y = 0 x + 2y + 1 = 0. Moving the 1 in the second equation to the right-hand side, this is equivalent to solving the system 2x + y = 0 x + 2y = 1.

3 LECTURE 18 - OPTIMIZATION 3 Let s multiply the second equation by 2 and subtract it from the first: 2x + y 2(x + 2y) = 3y. Since the first equation equals 0 and the first equation equals 1, we must have 3y = 0 2( 1) = 2. Hence y = 2 /3. Plugging y = 2 /3 back into the first equation, we find 2x + 2 /3 = 0 = 2x = 2 /3 = x = 1 /3. Thus ( 1 /3, 2 /3) is the only critical point of the function. Example 1.2. Find all of the critical points of the function f(x, y) = sin(x) sin(y). Taking partial derivatives we have f x (x, y) = cos(x) sin(y) f y (x, y) = sin(x) cos(y) We need the x s and y s which simultaneously make both of these quantities zero. Notice cos θ = 0 if θ = (2k + 1) π 2 for k Z sin θ = 0 if θ = kπ for k Z. So the points f x (x, y) = f y (x, y) = 0 are {((2k + 1) π /2, (2j + 1) π /2)} {(kπ, jπ)} = { (m π /2, n π /2) m, n Z, with m and n both odd, or both even }. Once we know where all of the critical points of f are, we need some way of determining if the points maxima, minima, or neither. If the function f(x, y) has continuous second-order partial derivatives, then we can use the multivariable version of the second derivative test. Theorem 1.2 (Second Derivative Test). If f(x, y) has continuous second-order partial derivatives and if (x 0, y 0 ) is a critical point of f, then define ( ) fxx (x D(x 0, y 0 ) = det 0, y 0 ) f xy (x 0, y 0 ) f yx (x 0, y 0 ) f yy (x 0, y 0 ) Then = f xx (x 0, y 0 ) f yy (x 0, y 0 ) f xy (x 0, y 0 ) f yx (x 0, y 0 ) = f xx (x 0, y 0 ) f yy (x 0, y 0 ) f xy (x 0, y 0 ) 2

4 4 CHRIS JOHNSON (1) If D(x 0, y 0 ) > 0 and f xx (x 0, y 0 ) > 0, then f(x 0, y 0 ) is a local minimum. (2) If D(x 0, y 0 ) > 0 and f xx (x 0, y 0 ) < 0, then f(x 0, y 0 ) is a local maximum. (3) If D(x 0, y 0 ) < 0, then (x 0, y 0 ) is neither a maximum nor a minimum. (In this case we say that (x 0, y 0 ) is a saddle point.) (4) If D(x 0, y 0 ) = 0, then the test is inconclusive. Remark. We won t prove the second derivative test, but will mention the underlying idea. Recall that the second derivative of a function of a single variable measures the function s concavity at a point. The threedimensional analogue of concavity is called curvature. Curvature at a point on a surface is determined by looking at the curvatures of curves on the surface which pass through the point. The largest and smallest curvatures of these curves are then multiplied together, and this is the curvature of the surface. A surface has positive curvature if these two largest and smallest curvatures of curves on the surface (called the principal curvatures) have the same sign; negative curvature means the principal curvatures have opposite signs; and zero curvature if one of the principal curvatures is zero in this case the surface is flat near the point. Intuitively, surfaces of positive curvature look like a bowl; surfaces of negative curvature look like a Pringles chip; and surfaces of zero curvature contain a straight line. The D that appears in the second-derivative test is (essentially) the curvature of the surface. So when the curvature is positive (D > 0) we have a bowl, and it s only a question of whether the bowl opens up or down (f xx (x 0, y 0 ) is negative or positive). Example 1.3. Find the maxima and minima of the function f(x, y) = y 3 + 3x 2 y 6x 2 6y First we have to find the critical points, which means calculating the partial derivatives. f x (x, y) = 6x 12x = 6x(y 2) f y (x, y) = 3y 2 + 3x 2 12y = 3(y 2 4y + x 2 ). Notice these functions are continuous everywhere, so we need to look for solutions to the system f x (x, y) = f y (x, y) = 0. If f x (x, y) = 0, then either x = 0 or y = 2. We ll plug each of these into y 2 4y + x 2. If x = 0, y 2 4y + x 2 = 0 becomes y 2 4y = y(y 4) = 0, and so y = 0 or y = 4. Thus (0, 0) and (0, 4) are two of our critical points. If y = 2, y 2 4y + x 2 = 0 becomes 4 + x 2 = 0 which means x 2 = 4, so x = ±2. Hence (2, 2) and ( 2, 2) are our other critical points.

5 LECTURE 18 - OPTIMIZATION 5 We have four critical points: (0, 0), (0, 4), (2, 2), and ( 2, 2). To which are maxima and which are minima, we apply our second derivative test, which means we need to calculate D(x, y) for each value. In our situation, ( ) fxx f D(x, y) = det xy f yx f yy ( ) 6y 12 6x = det 6x 6y 12 = (6y 12) 2 36x 2 Now we calculate this value for each of our critical points. For (0, 0) we have D(0, 0) = ( 12) = 144. So D > 0 and we do have a local extremum. To see if it s a local max or a local min, we need to calculate f xx (0, 0) = 12 < 0, so (0, 0) is a local max. For (0, 4) we have D(0, 4) = (24 12) 2 0 = 144, and f xx (0, 4) = 12 > 0, so (0, 4) is a local minimum. For (2, 2) we have D(2, 2) = (12 12) = 144, and so (2, 2) is a saddle point. For ( 2, 2) we have D( 2, 2) = (12 12) = 144 and so ( 2, 2) is also a saddle point. 2. Finding Global Extrema In general a local extremum doesn t have to be a global extremum. You might like to say that the largest local maximum is a global maximum, and the smallest local minimum is a global minimum, but this isn t necessarily the case. [Insert picture here.] What we d like is some condition that will guarantee that a function does in fact have global extrema, and furthermore say that the largest local maximum is a global maximum. Again, this doesn t have to happen in general, so we re looking for special cases where this does happen. What prevents us from making such a statement is that the domain of a function could be infinite, and the outputs of the function could become arbitrarily large. So what we d like to do is to consider functions whose domain is small enough that this sort of thing can t happen. Unfortunately this is a little bit more involved than you might think, so first we need to make a few definitions. We ll say that a subset S R 2 of the plane is bounded if points of S can t become arbitrariliy far away from the origin. Equivalently, all of S can be fit into a circle of finite radius.

6 6 CHRIS JOHNSON A point P is called a boundary point of a set S R 2 if every circle centered at P contains points that are both inside of and outside of S. The collection of all boundary points of S is called the boundary of S and denoted S. Finally we ll say that a set S which contains all of its boundary points is closed. For example, the set S = {(x, y) x 2 + y 2 1} is closed, but the set S = {(x, y) x 2 + y 2 < 1} is not closed. Remark. If the complement of S is closed (that is, if the collection of all points that are in R 2 but not in S is closed), then we say that S is open. Equivalently, for every point in S, we can put a small disc around that point, and the disc lies entirely in S. Notice that there are sets that are neither open nor closed, as well as sets that are both open and closed. If a set is both closed and bounded, we say the set is compact. Intuitively, compact sets are small and particularly small enough to ensure that any function whose domain is compact has global extrema. Theorem 2.1 (Extreme Value Theorem). If f(x, y) is a continuous function, and if the domain of f is compact, then f has both a global maximum and a global minimum.

7 LECTURE 18 - OPTIMIZATION 7 3. Exercises Exercise 1. Find the global maxima and minima of the function on the rectangle [ 1, 1] [ 1, 1]. f(x, y) = 6x 2 y 3x 2 12y Exercise 2. Explain why the function f(x, y) = 1 + x3 1 y does not have a global maximum on the disc, C = {(x, y) x 2 + y 2 < 1}. Note that f(x, y) is defined on all of C. Does this contradict Theorem 2.1?

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers

3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers 3.3 Optimizing Functions of Several Variables 3.4 Lagrange Multipliers Prof. Tesler Math 20C Fall 2018 Prof. Tesler 3.3 3.4 Optimization Math 20C / Fall 2018 1 / 56 Optimizing y = f (x) In Math 20A, we

More information

22. LECTURE 22. I can define critical points. I know the difference between local and absolute minimums/maximums.

22. LECTURE 22. I can define critical points. I know the difference between local and absolute minimums/maximums. . LECTURE Objectives I can define critical points. I know the difference between local and absolute minimums/maximums. In many physical problems, we re interested in finding the values (x, y) that maximize

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

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

A small review, Second Midterm, Calculus 3, Prof. Montero 3450: , Fall 2008

A small review, Second Midterm, Calculus 3, Prof. Montero 3450: , Fall 2008 A small review, Second Midterm, Calculus, Prof. Montero 45:-4, Fall 8 Maxima and minima Let us recall first, that for a function f(x, y), the gradient is the vector ( f)(x, y) = ( ) f f (x, y); (x, y).

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

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

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

Section 4.2 selected answers Math 131 Multivariate Calculus D Joyce, Spring 2014

Section 4.2 selected answers Math 131 Multivariate Calculus D Joyce, Spring 2014 4. Determine the nature of the critical points of Section 4. selected answers Math 11 Multivariate Calculus D Joyce, Spring 014 Exercises from section 4.: 6, 1 16.. Determine the nature of the critical

More information

Math 21a Homework 22 Solutions Spring, 2014

Math 21a Homework 22 Solutions Spring, 2014 Math 1a Homework Solutions Spring, 014 1. Based on Stewart 11.8 #6 ) Consider the function fx, y) = e xy, and the constraint x 3 + y 3 = 16. a) Use Lagrange multipliers to find the coordinates x, y) of

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

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

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

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

Section 4: Extreme Values & Lagrange Multipliers.

Section 4: Extreme Values & Lagrange Multipliers. Section 4: Extreme Values & Lagrange Multipliers. Compiled by Chris Tisdell S1: Motivation S2: What are local maxima & minima? S3: What is a critical point? S4: Second derivative test S5: Maxima and Minima

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

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

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

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

Limits and Continuity: section 12.2

Limits and Continuity: section 12.2 Limits and Continuity: section 1. Definition. Let f(x,y) be a function with domain D, and let (a,b) be a point in the plane. We write f (x,y) = L if for each ε > 0 there exists some δ > 0 such that if

More information

Increasing and Decreasing Functions. MATH 1003 Calculus and Linear Algebra (Lecture 20) Increasing and Decreasing Functions

Increasing and Decreasing Functions. MATH 1003 Calculus and Linear Algebra (Lecture 20) Increasing and Decreasing Functions Increasing and Decreasing Functions MATH 1003 Calculus and Linear Algebra (Lecture 20) Maosheng Xiong Department of Mathematics, HKUST Suppose y = f (x). 1. f (x) is increasing on an interval a < x < b,

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

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

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

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

NAME: Section # SSN: X X X X

NAME: Section # SSN: X X X X Math 155 FINAL EXAM A May 5, 2003 NAME: Section # SSN: X X X X Question Grade 1 5 (out of 25) 6 10 (out of 25) 11 (out of 20) 12 (out of 20) 13 (out of 10) 14 (out of 10) 15 (out of 16) 16 (out of 24)

More information

Lecture-12: Closed Sets

Lecture-12: Closed Sets and Its Examples Properties of Lecture-12: Dr. Department of Mathematics Lovely Professional University Punjab, India October 18, 2014 Outline Introduction and Its Examples Properties of 1 Introduction

More information

Paul's Online Math Notes Calculus III (Notes) / Applications of Partial Derivatives / Lagrange Multipliers Problems][Assignment Problems]

Paul's Online Math Notes Calculus III (Notes) / Applications of Partial Derivatives / Lagrange Multipliers Problems][Assignment Problems] 1 of 9 25/04/2016 13:15 Paul's Online Math Notes Calculus III (Notes) / Applications of Partial Derivatives / Lagrange Multipliers Problems][Assignment Problems] [Notes] [Practice Calculus III - Notes

More information

2 Second Derivatives. As we have seen, a function f (x, y) of two variables has four different partial derivatives: f xx. f yx. f x y.

2 Second Derivatives. As we have seen, a function f (x, y) of two variables has four different partial derivatives: f xx. f yx. f x y. 2 Second Derivatives As we have seen, a function f (x, y) of two variables has four different partial derivatives: (x, y), (x, y), f yx (x, y), (x, y) It is convenient to gather all four of these into

More information

(1) Given the following system of linear equations, which depends on a parameter a R, 3x y + 5z = 2 4x + y + (a 2 14)z = a + 2

(1) Given the following system of linear equations, which depends on a parameter a R, 3x y + 5z = 2 4x + y + (a 2 14)z = a + 2 (1 Given the following system of linear equations, which depends on a parameter a R, x + 2y 3z = 4 3x y + 5z = 2 4x + y + (a 2 14z = a + 2 (a Classify the system of equations depending on the values of

More information

11/1/2017 Second Hourly Practice 11 Math 21a, Fall Name:

11/1/2017 Second Hourly Practice 11 Math 21a, Fall Name: 11/1/217 Second Hourly Practice 11 Math 21a, Fall 217 Name: MWF 9 Jameel Al-Aidroos MWF 9 Dennis Tseng MWF 1 Yu-Wei Fan MWF 1 Koji Shimizu MWF 11 Oliver Knill MWF 11 Chenglong Yu MWF 12 Stepan Paul TTH

More information

1 extrema notebook. November 25, 2012

1 extrema notebook. November 25, 2012 Do now as a warm up: Suppose this graph is a function f, defined on [a,b]. What would you say about the value of f at each of these x values: a, x 1, x 2, x 3, x 4, x 5, x 6, and b? What would you say

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

ReviewUsingDerivatives.nb 1. As we have seen, the connection between derivatives of a function and the function itself is given by the following:

ReviewUsingDerivatives.nb 1. As we have seen, the connection between derivatives of a function and the function itself is given by the following: ReviewUsingDerivatives.nb Calculus Review: Using First and Second Derivatives As we have seen, the connection between derivatives of a function and the function itself is given by the following: à If f

More information

Introduction to PDEs: Notation, Terminology and Key Concepts

Introduction to PDEs: Notation, Terminology and Key Concepts Chapter 1 Introduction to PDEs: Notation, Terminology and Key Concepts 1.1 Review 1.1.1 Goal The purpose of this section is to briefly review notation as well as basic concepts from calculus. We will also

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

4.3 Finding Local Extreme Values: First and Second Derivatives

4.3 Finding Local Extreme Values: First and Second Derivatives Arkansas Tech University MATH 2914: Calculus I Dr. Marcel B. Finan 4.3 Finding Local Extreme Values: First and Second Derivatives Recall that a function f(x) is said to be increasing (respectively decreasing)

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

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

Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes

Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes 1 of 11 1) Give f(g(1)), given that Calculators ARE NOT Permitted On This Portion Of The Exam 28 Questions - 55 Minutes 2) Find the slope of the tangent line to the graph of f at x = 4, given that 3) Determine

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

Open and Closed Sets

Open and Closed Sets Open and Closed Sets Definition: A subset S of a metric space (X, d) is open if it contains an open ball about each of its points i.e., if x S : ɛ > 0 : B(x, ɛ) S. (1) Theorem: (O1) and X are open sets.

More information

we wish to minimize this function; to make life easier, we may minimize

we wish to minimize this function; to make life easier, we may minimize Optimization and Lagrange Multipliers We studied single variable optimization problems in Calculus 1; given a function f(x), we found the extremes of f relative to some constraint. Our ability to find

More information

Math 11 Fall Multivariable Calculus. Final Exam

Math 11 Fall Multivariable Calculus. Final Exam Math 11 Fall 2004 Multivariable Calculus for Two-Term Advanced Placement First-Year Students Final Exam Tuesday, December 7, 11:30-2:30 Murdough, Cook Auditorium Your name (please print): Instructions:

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

. 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

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

Unconstrained Optimization

Unconstrained Optimization Unconstrained Optimization Joshua Wilde, revised by Isabel Tecu, Takeshi Suzuki and María José Boccardi August 13, 2013 1 Denitions Economics is a science of optima We maximize utility functions, minimize

More information

Inverse and Implicit functions

Inverse and Implicit functions CHAPTER 3 Inverse and Implicit functions. Inverse Functions and Coordinate Changes Let U R d be a domain. Theorem. (Inverse function theorem). If ϕ : U R d is differentiable at a and Dϕ a is invertible,

More information

CCNY Math Review Chapter 2: Functions

CCNY Math Review Chapter 2: Functions CCN Math Review Chapter : Functions Section.1: Functions.1.1: How functions are used.1.: Methods for defining functions.1.3: The graph of a function.1.: Domain and range.1.5: Relations, functions, and

More information

Partial Derivatives (Online)

Partial Derivatives (Online) 7in x 10in Felder c04_online.tex V3 - January 21, 2015 9:44 A.M. Page 1 CHAPTER 4 Partial Derivatives (Online) 4.7 Tangent Plane Approximations and Power Series It is often helpful to use a linear approximation

More information

Introduction to Functions of Several Variables

Introduction to Functions of Several Variables Introduction to Functions of Several Variables Philippe B. Laval KSU Today Philippe B. Laval (KSU) Functions of Several Variables Today 1 / 20 Introduction In this section, we extend the definition of

More information

Increasing/Decreasing Behavior

Increasing/Decreasing Behavior Derivatives and the Shapes of Graphs In this section, we will specifically discuss the information that f (x) and f (x) give us about the graph of f(x); it turns out understanding the first and second

More information

Increasing/Decreasing Behavior

Increasing/Decreasing Behavior Derivatives and the Shapes of Graphs In this section, we will specifically discuss the information that f (x) and f (x) give us about the graph of f(x); it turns out understanding the first and second

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

AB Calculus: Extreme Values of a Function

AB Calculus: Extreme Values of a Function AB Calculus: Extreme Values of a Function Name: Extrema (plural for extremum) are the maximum and minimum values of a function. In the past, you have used your calculator to calculate the maximum and minimum

More information

Use Derivatives to Sketch the Graph of a Polynomial Function.

Use Derivatives to Sketch the Graph of a Polynomial Function. Applications of Derivatives Curve Sketching (using derivatives): A) Polynomial Functions B) Rational Functions Lesson 5.2 Use Derivatives to Sketch the Graph of a Polynomial Function. Idea: 1) Identify

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 Lagrange multipliers in 3 variables Fall 2016

MATH Lagrange multipliers in 3 variables Fall 2016 MATH 20550 Lagrange multipliers in 3 variables Fall 2016 1. The one constraint they The problem is to find the extrema of a function f(x, y, z) subject to the constraint g(x, y, z) = c. The book gives

More information

Absolute extrema of two variables functions

Absolute extrema of two variables functions Absolute extrema of two variables functions Apellidos, Nombre: Departamento: Centro: Alicia Herrero Debón aherrero@mat.upv.es) Departamento de Matemática Aplicada Instituto de Matemática Multidisciplnar

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

In other words, we want to find the domain points that yield the maximum or minimum values (extrema) of the function.

In other words, we want to find the domain points that yield the maximum or minimum values (extrema) of the function. 1 The Lagrange multipliers is a mathematical method for performing constrained optimization of differentiable functions. Recall unconstrained optimization of differentiable functions, in which we want

More information

Section 4.1: Maximum and Minimum Values

Section 4.1: Maximum and Minimum Values Section 4.: Maimum and Minimum Values In this chapter, we shall consider further applications of the derivative. The main application we shall consider is using derivatives to sketch accurate graphs of

More information

The Extreme Value Theorem (IVT)

The Extreme Value Theorem (IVT) 3.1 3.6 old school 1 Extrema If f(c) f(x) (y values) for all x on an interval, then is the (value) of f(x) (the function) on that interval. If f(c) f(x) (y-values) for all x on an interval, then is the

More information

Chapter 4.1 & 4.2 (Part 1) Practice Problems

Chapter 4.1 & 4.2 (Part 1) Practice Problems Chapter 4. & 4. Part Practice Problems EXPECTED SKILLS: Understand how the signs of the first and second derivatives of a function are related to the behavior of the function. Know how to use the first

More information

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009

Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Practice problems from old exams for math 233 William H. Meeks III December 21, 2009 Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These

More information

Winter 2012 Math 255 Section 006. Problem Set 7

Winter 2012 Math 255 Section 006. Problem Set 7 Problem Set 7 1 a) Carry out the partials with respect to t and x, substitute and check b) Use separation of varibles, i.e. write as dx/x 2 = dt, integrate both sides and observe that the solution also

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

SOME PROPERTIES OF TRIGONOMETRIC FUNCTIONS. 5! x7 7! + = 6! + = 4! x6

SOME PROPERTIES OF TRIGONOMETRIC FUNCTIONS. 5! x7 7! + = 6! + = 4! x6 SOME PROPERTIES OF TRIGONOMETRIC FUNCTIONS PO-LAM YUNG We defined earlier the sine cosine by the following series: sin x = x x3 3! + x5 5! x7 7! + = k=0 cos x = 1 x! + x4 4! x6 6! + = k=0 ( 1) k x k+1

More information

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Homework 1 - Solutions 3. 2 Homework 2 - Solutions 13

Contents. MATH 32B-2 (18W) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables. 1 Homework 1 - Solutions 3. 2 Homework 2 - Solutions 13 MATH 32B-2 (8) (L) G. Liu / (TA) A. Zhou Calculus of Several Variables Contents Homework - Solutions 3 2 Homework 2 - Solutions 3 3 Homework 3 - Solutions 9 MATH 32B-2 (8) (L) G. Liu / (TA) A. Zhou Calculus

More information

1 Vector Functions and Space Curves

1 Vector Functions and Space Curves ontents 1 Vector Functions and pace urves 2 1.1 Limits, Derivatives, and Integrals of Vector Functions...................... 2 1.2 Arc Length and urvature..................................... 2 1.3 Motion

More information

Topology 550A Homework 3, Week 3 (Corrections: February 22, 2012)

Topology 550A Homework 3, Week 3 (Corrections: February 22, 2012) Topology 550A Homework 3, Week 3 (Corrections: February 22, 2012) Michael Tagare De Guzman January 31, 2012 4A. The Sorgenfrey Line The following material concerns the Sorgenfrey line, E, introduced in

More information

18.02 Final Exam. y = 0

18.02 Final Exam. y = 0 No books, notes or calculators. 5 problems, 50 points. 8.0 Final Exam Useful formula: cos (θ) = ( + cos(θ)) Problem. (0 points) a) (5 pts.) Find the equation in the form Ax + By + z = D of the plane P

More information

13.2 LIMITS AND CONTINUITY

13.2 LIMITS AND CONTINUITY 3.2 Limits and Continuity Contemporary Calculus 3.2 LIMITS AND CONTINUITY Our development of the properties and the calculus of functions z = f(x,y) of two (and more) variables parallels the development

More information

5 Day 5: Maxima and minima for n variables.

5 Day 5: Maxima and minima for n variables. UNIVERSITAT POMPEU FABRA INTERNATIONAL BUSINESS ECONOMICS MATHEMATICS III. Pelegrí Viader. 2012-201 Updated May 14, 201 5 Day 5: Maxima and minima for n variables. The same kind of first-order and second-order

More information

Math-3 Lesson 1-7 Analyzing the Graphs of Functions

Math-3 Lesson 1-7 Analyzing the Graphs of Functions Math- Lesson -7 Analyzing the Graphs o Functions Which unctions are symmetric about the y-axis? cosx sin x x We call unctions that are symmetric about the y -axis, even unctions. Which transormation is

More information

Lecture 5: Properties of convex sets

Lecture 5: Properties of convex sets Lecture 5: Properties of convex sets Rajat Mittal IIT Kanpur This week we will see properties of convex sets. These properties make convex sets special and are the reason why convex optimization problems

More information

Volumes of Solids of Revolution Lecture #6 a

Volumes of Solids of Revolution Lecture #6 a Volumes of Solids of Revolution Lecture #6 a Sphereoid Parabaloid Hyperboloid Whateveroid Volumes Calculating 3-D Space an Object Occupies Take a cross-sectional slice. Compute the area of the slice. Multiply

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

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 33 Notes These notes correspond to Section 9.3 in the text. Polar Coordinates Throughout this course, we have denoted a point in the plane by an ordered

More information

7/28/2011 SECOND HOURLY PRACTICE V Maths 21a, O.Knill, Summer 2011

7/28/2011 SECOND HOURLY PRACTICE V Maths 21a, O.Knill, Summer 2011 7/28/2011 SECOND HOURLY PRACTICE V Maths 21a, O.Knill, Summer 2011 Name: Start by printing your name in the above box. Try to answer each question on the same page as the question is asked. If needed,

More information

Final Exam May 2, 2017

Final Exam May 2, 2017 Math 07 Calculus II Name: Final Exam May, 07 Circle the name of your instructor and, in the appropriate column, the name of your recitation leader. The second row is the time of your lecture. Radu Ledder

More information

THS Step By Step Calculus Chapter 3

THS Step By Step Calculus Chapter 3 Name: Class Period: Throughout this packet there will be blanks you are expected to fill in prior to coming to class. This packet follows your Larson Textbook. Do NOT throw away! Keep in 3 ring-binder

More information

Lecture 2 September 3

Lecture 2 September 3 EE 381V: Large Scale Optimization Fall 2012 Lecture 2 September 3 Lecturer: Caramanis & Sanghavi Scribe: Hongbo Si, Qiaoyang Ye 2.1 Overview of the last Lecture The focus of the last lecture was to give

More information

MEI Desmos Tasks for AS Pure

MEI Desmos Tasks for AS Pure Task 1: Coordinate Geometry Intersection of a line and a curve 1. Add a quadratic curve, e.g. y = x² 4x + 1 2. Add a line, e.g. y = x 3 3. Select the points of intersection of the line and the curve. What

More information

Math Exam 2a. 1) Take the derivatives of the following. DO NOT SIMPLIFY! 2 c) y = tan(sec2 x) ) b) y= , for x 2.

Math Exam 2a. 1) Take the derivatives of the following. DO NOT SIMPLIFY! 2 c) y = tan(sec2 x) ) b) y= , for x 2. Math 111 - Exam 2a 1) Take the derivatives of the following. DO NOT SIMPLIFY! a) y = ( + 1 2 x ) (sin(2x) - x- x 1 ) b) y= 2 x + 1 c) y = tan(sec2 x) 2) Find the following derivatives a) Find dy given

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

Optimizations and Lagrange Multiplier Method

Optimizations and Lagrange Multiplier Method Introduction Applications Goal and Objectives Reflection Questions Once an objective of any real world application is well specified as a function of its control variables, which may subject to a certain

More information

Calculus II (Math 122) Final Exam, 11 December 2013

Calculus II (Math 122) Final Exam, 11 December 2013 Name ID number Sections B Calculus II (Math 122) Final Exam, 11 December 2013 This is a closed book exam. Notes and calculators are not allowed. A table of trigonometric identities is attached. To receive

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

= f (a, b) + (hf x + kf y ) (a,b) +

= f (a, b) + (hf x + kf y ) (a,b) + Chapter 14 Multiple Integrals 1 Double Integrals, Iterated Integrals, Cross-sections 2 Double Integrals over more general regions, Definition, Evaluation of Double Integrals, Properties of Double Integrals

More information

Lecture 2 - Introduction to Polytopes

Lecture 2 - Introduction to Polytopes Lecture 2 - Introduction to Polytopes Optimization and Approximation - ENS M1 Nicolas Bousquet 1 Reminder of Linear Algebra definitions Let x 1,..., x m be points in R n and λ 1,..., λ m be real numbers.

More information

MATH 2023 Multivariable Calculus

MATH 2023 Multivariable Calculus MATH 2023 Multivariable Calculus Problem Sets Note: Problems with asterisks represent supplementary informations. You may want to read their solutions if you like, but you don t need to work on them. Set

More information

Math 1113 Notes - Functions Revisited

Math 1113 Notes - Functions Revisited Math 1113 Notes - Functions Revisited Philippe B. Laval Kennesaw State University February 14, 2005 Abstract This handout contains more material on functions. It continues the material which was presented

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

30. Constrained Optimization

30. Constrained Optimization 30. Constrained Optimization The graph of z = f(x, y) is represented by a surface in R 3. Normally, x and y are chosen independently of one another so that one may roam over the entire surface of f (within

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

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

Math 734 Aug 22, Differential Geometry Fall 2002, USC

Math 734 Aug 22, Differential Geometry Fall 2002, USC Math 734 Aug 22, 2002 1 Differential Geometry Fall 2002, USC Lecture Notes 1 1 Topological Manifolds The basic objects of study in this class are manifolds. Roughly speaking, these are objects which locally

More information

Total. Math 2130 Practice Final (Spring 2017) (1) (2) (3) (4) (5) (6) (7) (8)

Total. Math 2130 Practice Final (Spring 2017) (1) (2) (3) (4) (5) (6) (7) (8) Math 130 Practice Final (Spring 017) Before the exam: Do not write anything on this page. Do not open the exam. Turn off your cell phone. Make sure your books, notes, and electronics are not visible during

More information