1 Definition of the derivative

Size: px
Start display at page:

Download "1 Definition of the derivative"

Transcription

1 Math 20A - Calculus by Jon Rogawski Chapter 3 - Differentiation Prepare by Jason Gais Definition of the erivative Remark.. Recall our iscussion of tangent lines from way back. We now rephrase this in terms of limits. Let f(x) be a continuous function an P = (a, f(a)). If Q = (x, f(x)) is any other point on the graph of f, then the slope of the secant line is f x f(x) f(a) =. x a The closer x is to a, the closer this approximates the slope of the tangent line. Definition.2. The erivative of f(x) at x = a is the limit of the ifference quotients f f(x) f(a) (a), x a x a if this limit exists. When this limit exists, we say f is ifferentiable. Alternatively, taking x = a + h, we can rewrite the erivative as, f f(a + h) f(a) (a). Remark.3. The key point here is the following: the erivative at x = a is the slope of the tangent line at (a, f(a)). Definition.4. Assue f(x) is ifferentiable at x = a. The tangent line to the graph of y = f(x) at P = (a, f(a)) us the line through P of slope f (a). The equation of the tangent line is y f(a) = f (a)(x a). Example.5. Let f(x) = x 3. Write the equation of the tangent line to the graph y = f(x) at x =.

2 We compute the slope of the tangent line at x = by computing f (). f f(x) f() () x x x x 2 + x + = 3. x 3 x x (x )(x 2 + x + ) x x Thus, the equation of the tangent line is y = 3(x ), or equivalently, y = 3x 2. Example.6. Let f(x) = x 2. Compute f (2). To simplify matters, we first compute f(2 + h) f(2). f(2 + h) f(2) = Diviing by h gives (2 + h) 2 4 Now taking the limit, we get f(2 + h) f(2) h = 4 (2 + h)2 4(2 + h) 2. = = f (2) x 0 f(2 + h) f(2) h (4 + h) 4(2 + h) 2. 4h h2 (4 + h)h = 4(2 + h) 2 4(2 + h) 2 = 4 4(2) 2 = 4. 2

3 2 The erivative of a function Remark 2.. In the previous section, we compute the erivative at a point. This is inconvenient if we want to know the erivative of the same function at multiple points. In this section, we stuy the erivative function an look at ways to compute the erivative in several basic cases. Definition 2.2. We say a function f(x) is ifferentiable on (a, b) if the erivative exists for every point x (a, b). The function f f(x + h) f(x) (x), is the erivative of f. Alternatively, we write (in Leibniz notation), f (x) = x f(x). Example 2.3. Compute the erivative of f(x) = x + x. f f(x + h) f(x) (x + h) + x + h (x + x) (x) h 0 h ( ) h + x + h x x + h x + h 0 h x + h x = + lim ( x + h + x) = + lim = + h 0 x + h + x 2 x. Remark 2.4 (Power Rule). It is worth reaing the proof of the following rule on page 3, x xn = nx n. Example 2.5. Compute the erivative of f(x) = x + x. f (x) = x x + x x/2 = x x /2 = + 2 x. 3

4 Remark 2.6 (Linearity Rules). Let f an g be ifferentiable functions an c a constant. Then x (f + g) = f + g an x cf = cf. We prove the secon. The proof of the first is on page 32. cf(x + h) cf(x) cf(x) x f(x + h) f(x) = c lim f(x + h) f(x) c = cf (x). Example 2.7. Compute the erivative of f(x) = e x. f f(x + h) f(x) (x) = e x e h lim = e x. This last step follows by the efinition of e x. Theorem 2.8. Differentiability implies continuity. Proof. Suppose f is ifferentiable at x = c. x = c. That is, lim f(x) = f(c). x c For x c, we have f(x) f(c) = (x c) On either sie, we compute the limit at x c. ( (x c) On the other han, lim(f(x) f(c)) x c x c h 0 e x+h e x h We claim f is continuous at f(x) f(c). x c f(x) f(c) x c ) f(x) f(c) (x c) lim x c x c x c = 0 f (c) = 0. lim(f(x) f(c)) f(x) lim f(c) f(x) f(c). x c x c x c x c The result now follows. 4

5 Remark 2.9. The converse to this statement is not true. Let f(x) = x, then f f(x) f(0) (0) x 0 x 0 x x 0 x. We have seen before that this limit oes not exist. Remark 2.0. Let f(x) = x n with 0 < n <, then f is not ifferentiable at x = 0. In particular, the tangent line is vertical. 5

6 3 Prouct an quotient rules Remark 3.. We stuy two aitional rules that allow us to compute certain erivatives quickly. Theorem 3.2 (Prouct rule). Suppose f an g are ifferentiable, then fg is ifferentiable an Proof. (fg) (x) = f (x)g(x) + f(x)g (x). (fg) f(x + h)g(x + h) f(x)g(x) (x) f(x + h)g(x + h) f(x + h)g(x) + f(x + h)g(x) f(x)g(x) f(x + h)(g(x + h) g(x)) + (f(x + h) f(x)) g(x) g(x + h) g(x) f(x + h) f(x) f(x + h) + lim g(x) = f(x)g (x) + f (x)g(x). Example 3.3. Let h(x) = e x (5x 2 + x ). Compute h (x). Theorem 3.4 (Quotient rule). Suppose f an g are ifferentiable, then f/g is ifferentiable for all x with g(x) 0 an ( ) f (x) = f (x)g(x) f(x)g (x) g (g(x)) 2. Remark 3.5. This might be best remembere in the following way: ( ) hi = lo (lo)(hi) (hi)(lo). lolo Example 3.6. Let h(x) = x2 +3x 3 2x 5x 2. Compute h (x). 6

7 4 Rates of Change Remark 4.. Recall that if y = f(x) is a function over an interval [x 0, x ], then we enote the change in f as f = f(x ) f(x 0 ) an change in x as x = x x 0. Then average rate of change is given as f x an instantaneous f rate of change is given as lim x 0 x. Example 4.2. Let A = s 3 be the area of a cube of sie length s cm. Compute the rate of change of A with respect to s when s = 4. We compute the erivative A s = s (s3 ) = 3s 2 A s = 3(4) 2 = 48cm/sec. s=4 Note that, when s = 5 then the rate is 75 cm/sec. Hence, the larger the sie length, the faster the rate of growth. This is because rate of growth epens on the length of the sie. Remark 4.3. Recall that velocity is the change in position with respect to time. That is, velocity is the instantaneous rate of change of the position function. That is, v(t) = s t where s(t) is the position function. The sign of v(t) (±) inicates irection (up/own, forwar/backwar). Spee is the absolute value of the velocity function. The formulas (iscovere by Galileo) for height an velocity of an object thrown irectly into the air (near the surface of the earth) are given as s(t) = s 0 + v 0 t 2 gt2, v(t) = s t = v 0 gt, where s 0 = s(0) an v 0 = v(0). Notice that v(t) = s (t). The constant g is acceleration ue to gravity, so g 9.8m/sec 2 or g 32ft/sec 2. Example 4.4. A ball is fire irectly into the air with an initial velocity of 64ft/sec from an initial height of 20ft. Fin the maximum height. The maximum height occurs when v(t) = 0. We have Thus, the position is 0 = v(t) = 64 32t t = 2. s(2) = (2) 6(2 2 ) = 84ft. 7

8 Remark 4.5 (Marginal Cost). If C(x) is the cost function for proucing x units, then marginal cost is efine as the cost of proucing one aitional unit. That is, C(x 0 + ) C(x 0 ). However, we can approximate marginal cost using the erivative C (x 0 ). Example 4.6. Let C(x) = x 0.5(x/000) 3 be the cost of proucing x bagels (in ollars). Compute the cost of proucing 2000 bagels. Compare the estimate an exact value of the marginal cost of proucing 200 bagels. We have C(2000) = 796. Now C (x) =.25 (.5/000 3 )x 2. Then C (200) The actual marginal cost is C(200) C(2000) = Higher erivatives 8

9 6 Trig functions Remark 6.. We ll start toay by working out the erivative of cos x with the limit efinition of the erivative. cos(x + h) cos x cos x. x Using the angle sum ientity for cos(x + h) we have Thus, we have cos(x + h) cos x = cos x cos h sin x sin h cosx = cos x(cos h ) sin x sin h. cos(x + h) cos x cos x x h 0 ( h ) cos x(cos h ) sin x sin h h cos h sin h = cos x lim sin x lim = (cos x) 0 (sin x) = sin x. Theorem 6.2. The functions y = sin x an y = cos x are ifferentiable an sin x = cos x an cos x = sin x. x x Remark 6.3. The rules for the other four trig functions can now be worke out with the quotient rule. Prove rule for sec x. Theorem 6.4. x tan x = sec2 x, x cot x = csc2 x, sec x = sec x tan x x csc x = csc x cot x. x 9

10 7 The chain rule Theorem 7.. If f an g are ifferentiable, then the composite function (f g)(x) = f(g(x)) is ifferentiable an (f(g(x)) = f (g(x)) g (x). Example 7.2. Compute the erivative of sin(cos(x)). Example 7.3. Compute the erivative of x Theorem 7.4 (General power an exponential rules). If g(x) is ifferentiable, then x g(x)n = ng(x) n g (x) x e( g(x)) = g (x)e g(x). Example 7.5. Compute the erivative of tan(e cos x ). 0

11 8 Derivatives of inverse functions Example 8.. Let f(x) = x on [0, ]. Compute the erivative of f. First, we fin the inverse function g(x) = f (x). Algebra shows g(x) = x 4. Then, g (x) = 2 (x 4) /2. Theorem 8.2 (Derivative of the Inverse). Assume that f(x) is ifferentiable an - with inverse g(x) = f (x). If b belongs to the omain of g(x) an f (g(b)) 0, then g (b) exists an g (b) = f (g(b)). Remark 8.3. The proof that g(x) is ifferentiable is beyon the scope of this class. In particular, it uses the formal efinition of a limit. However, if we assume that g(x) is ifferentiable, then we can use the chain rule to erive the formula above. Since g(x) is the inverse of f(x), then f(g(x)) = x. Differentiating both sies gives x f(g(x)) = x x f (g(x)) g (x) = g (x) = /f (g(x)). Graphically, we recall that the graph of g is the reflection of the graph of f over the line y = x. Thus, the slopes of the tangent lines at a point shoul be reciprocals of one another. Example 8.4. This result matches our previous example. Since f (x) = 2x. Then f (g(x)) = 2(x 4) /2 an so g (x) = /f (g(x)) = 2 x 4. Example 8.5. Compute the erivative of sin x an cos x. Let f(x) = sin x an g(x) = sin x. Then f (x) = cos x an an so g (x) = /f (g(x)) = / cos(sin (x)). Consier the right triangle with leg x an hypotenuse. The other leg then has length x 2 an so cos sin (x) = x 2 so x sin x = x 2.

12 The book uses the trick that cos x + sin x = π 2 to compute x cos x. However, it is easy enough to work out in a manner similar to the above, giving x cos x =. x 2 Theorem 8.6. The erivatives for the six inverse trig functions are given below, x sin x = x 2 x cos x = x 2 x tan x = + x 2 x cot x = + x 2 x sec x = x x 2 x csc x = x x 2 2

13 9 Derivative of general exponential an logarithmic functions Theorem 9.. Let f(x) = b x for b > 0. Then Proof. By the chain rule, x bx = (ln b)b x. x bx = x eln bx = x ex ln b = (ln b)e x ln b = (ln b)b x. Example 9.2. Compute the erivative of f(x) = 2 cos x. Theorem 9.3. For x > 0, x ln x = x. Proof. Let f(x) = e x so f (x) = ln x. Then x ln x = x f (x) = f (ln x) = e = ln x x. Remark 9.4. The chain rule now implies x ln(f(x)) = f (x) f(x). 3

14 0 Implicit ifferentiation Remark 0.. Suppose we want the equation for the tangent line on a circle at a given point. The equation of a circle is x 2 + y 2 =. So to get the erivative we have to solve for y an then take the erivative (technically, two erivatives). (Do this!) An easier way is to use implicit ifferentiation. function of x an apply the chain rule. That is, we treat y as a Example 0.2. Fin y/x with x 2 + y 2 =. Use it to fin the equation of the tangent line at ( 2, 3 2 ). We treat y/x as an unknown. ( x 2 + y 2) = x x () x (x2 ) + x (y2 ) = 0 2x + 2y y = 0 by the chain rule x y x = x y. Remark 0.3. It may not always be possible to solve for y easily an so implicit ifferentiation becomes an important tool. Example 0.4. Fin y/x with xe y = 2xy + y 3. Remark 0.5. If we are only intereste in the erivative at a point, then it is not necessary to solve for y/x. Example 0.6. Fin the equation of the tangent line at the point (, 0) for the function x 2 + sin y = xy

15 Relate Rates Remark.. Suppose we have a function which changes accoring to two variables. We can use implicit ifferentiation to compare rates for both variables, treating them both as inepenent variables. Example.2. Each sie of a square is increasing at a rate of 6 cm/sec. At what rate is the area of the square increasing when the area of the square is 6 cm 2? We have A = s 2, so A t = 2s s A t. When A = 6, s = 4, so t = 2(4)(6) = 48 cm 2 /sec when s t = 6 cm/sec. Example.3. A spotlight on the groun shines on a wall 2 m away. If a man 2 m tall walks from the spotlight towar the builing at a spee of.6 m/sec, how fast is the length of his shaow on the builing ecreasing when he is 4 m from the builing? See note page. Example.4. Water is leaking out of an inverte conical tank at a rate of 0,000 cm 3 /min at the same time that water is being pumpe into the tank at a constant rate. The tank has height 6m an the iameter at the top is 4m. If the water level is rising at a rate of 20 cm/min when the height of the water is 2m, fin the rate at which water is being pumpe into the tank. If C is the rate the water is pumpe in, then V t = C 0, 000, where V = 3 πr2 h is the volume at time t. By similar triangles, Thus, When h = 2 m, h t r 2 = h 6 r = 3 h. V = 3 π ( 3 h ) 2 h = π 27 h3 V t = π 9 h2h t. = 20 cm/min, so C 0, 000 = π 9 (200)2 (20) C = 0, , 000 π 289, 253cm 3 /min. 9 5

Math Chapter 2 Essentials of Calculus by James Stewart Prepared by Jason Gaddis

Math Chapter 2 Essentials of Calculus by James Stewart Prepared by Jason Gaddis Math 231 - Chapter 2 Essentials of Calculus by James Stewart Prepare by Jason Gais Chapter 2 - Derivatives 21 - Derivatives an Rates of Change Definition A tangent to a curve is a line that intersects

More information

Math 190 Chapter 3 Lecture Notes. Professor Miguel Ornelas

Math 190 Chapter 3 Lecture Notes. Professor Miguel Ornelas Math 190 Chapter 3 Lecture Notes Professor Miguel Ornelas 1 M. Ornelas Math 190 Lecture Notes Section 3.1 Section 3.1 Derivatives of Polynomials an Exponential Functions Derivative of a Constant Function

More information

February 21 Math 1190 sec. 63 Spring 2017

February 21 Math 1190 sec. 63 Spring 2017 February 21 Math 1190 sec. 63 Spring 2017 Chapter 2: Derivatives Let s recall the efinitions an erivative rules we have so far: Let s assume that y = f (x) is a function with c in it s omain. The erivative

More information

Math 115 Section 018 Course Note

Math 115 Section 018 Course Note Course Note 1 General Functions Definition 1.1. A function is a rule that takes certain numbers as inputs an assigns to each a efinite output number. The set of all input numbers is calle the omain of

More information

Define each term or concept.

Define each term or concept. Chapter Differentiation Course Number Section.1 The Derivative an the Tangent Line Problem Objective: In this lesson you learne how to fin the erivative of a function using the limit efinition an unerstan

More information

Differentiability, Computing Derivatives, Trig Review. Goals:

Differentiability, Computing Derivatives, Trig Review. Goals: Secants vs. Derivatives - Unit #3 : Goals: Differentiability, Computing Derivatives, Trig Review Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an

More information

Differentiation Rules and Formulas

Differentiation Rules and Formulas Differentiation Rules an Formulas Professor D. Olles December 1, 01 1 Te Definition of te Derivative Consier a function y = f(x) tat is continuous on te interval a, b]. Ten, te slope of te secant line

More information

Differentiability, Computing Derivatives, Trig Review

Differentiability, Computing Derivatives, Trig Review Unit #3 : Differentiability, Computing Derivatives, Trig Review Goals: Determine when a function is ifferentiable at a point Relate the erivative graph to the the graph of an original function Compute

More information

Differentiation Rules Derivatives of Polynomials and Exponential Functions

Differentiation Rules Derivatives of Polynomials and Exponential Functions Derivatives of Polynomials an Exponential Functions Differentiation Rules Derivatives of Polynomials an Exponential Functions Let s start with the simplest of all functions, the constant function f(x)

More information

The derivative of a constant function is 0. That is,

The derivative of a constant function is 0. That is, NOTES 3: DIFFERENTIATION RULES Name: Date: Perio: LESSON 3. DERIVATIVE OF POLYNOMIALS AND EXPONENTIAL FUNCTIONS Eample : Prove f ( ) 6 is not ifferentiable at 4. Practice Problems: Fin f '( ) using the

More information

The derivative of a constant function is 0. That is,

The derivative of a constant function is 0. That is, NOTES : DIFFERENTIATION RULES Name: LESSON. DERIVATIVE OF POLYNOMIALS AND EXPONENTIAL FUNCTIONS Date: Perio: Mrs. Nguyen s Initial: Eample : Prove f ( ) 4 is not ifferentiable at. Practice Problems: Fin

More information

d dx [xn ] = nx n 1. (1) dy dx = 4x4 1 = 4x 3. Theorem 1.3 (Derivative of a constant function). If f(x) = k and k is a constant, then f (x) = 0.

d dx [xn ] = nx n 1. (1) dy dx = 4x4 1 = 4x 3. Theorem 1.3 (Derivative of a constant function). If f(x) = k and k is a constant, then f (x) = 0. Calculus refresher Disclaimer: I claim no original content on this ocument, which is mostly a summary-rewrite of what any stanar college calculus book offers. (Here I ve use Calculus by Dennis Zill.) I

More information

f(x) f(a) Limit definition of the at a point in slope notation.

f(x) f(a) Limit definition of the at a point in slope notation. Lesson 9: Orinary Derivatives Review Hanout Reference: Brigg s Calculus: Early Transcenentals, Secon Eition Topics: Chapter 3: Derivatives, p. 126-235 Definition. Limit Definition of Derivatives at a point

More information

1 Lecture 18: The chain rule

1 Lecture 18: The chain rule 1 Lecture 18: The chain rule 1.1 Outline Comparing the graphs of sin(x) an sin(2x). The chain rule. The erivative of a x. Some examples. 1.2 Comparing the graphs of sin(x) an sin(2x) We graph f(x) = sin(x)

More information

UNIT 3: DERIVATIVES STUDY GUIDE

UNIT 3: DERIVATIVES STUDY GUIDE Calculus I UNIT 3: Derivatives REVIEW Name: Date: UNIT 3: DERIVATIVES STUDY GUIDE Section 1: Section 2: Limit Definition (Derivative as the Slope of the Tangent Line) Calculating Rates of Change (Average

More information

Math Implicit Differentiation. We have discovered (and proved) formulas for finding derivatives of functions like

Math Implicit Differentiation. We have discovered (and proved) formulas for finding derivatives of functions like Math 400 3.5 Implicit Differentiation Name We have iscovere (an prove) formulas for fining erivatives of functions like f x x 3x 4x. 3 This amounts to fining y for 3 y x 3x 4x. Notice that in this case,

More information

2.1 Derivatives and Rates of Change

2.1 Derivatives and Rates of Change 1a 1b 2.1 Derivatives an Rates of Change Tangent Lines Example. Consier y f x x 2 0 2 x-, 0 4 y-, f(x) axes, curve C Consier a smooth curve C. A line tangent to C at a point P both intersects C at P an

More information

1 Limits Finding limits graphically. 1.3 Finding limits analytically. Examples 1. f(x) = x3 1. f(x) = f(x) =

1 Limits Finding limits graphically. 1.3 Finding limits analytically. Examples 1. f(x) = x3 1. f(x) = f(x) = Theorem 13 (i) If p(x) is a polynomial, then p(x) = p(c) 1 Limits 11 12 Fining its graphically Examples 1 f(x) = x3 1, x 1 x 1 The behavior of f(x) as x approximates 1 x 1 f(x) = 3 x 2 f(x) = x+1 1 f(x)

More information

Calculus I Announcements

Calculus I Announcements Slie 1 Calculus I Announcements Office Hours: Amos Eaton 309, Monays 12:50-2:50 Exam 2 is Thursay, October 22n. The stuy guie is now on the course web page. Start stuying now, an make a plan to succee.

More information

Chapter 3 Definitions and Theorems

Chapter 3 Definitions and Theorems Chapter 3 Definitions an Theorems (from 3.1) Definition of Tangent Line with slope of m If f is efine on an open interval containing c an the limit Δy lim Δx 0 Δx = lim f (c + Δx) f (c) = m Δx 0 Δx exists,

More information

Differentiation ( , 9.5)

Differentiation ( , 9.5) Chapter 2 Differentiation (8.1 8.3, 9.5) 2.1 Rate of Change (8.2.1 5) Recall that the equation of a straight line can be written as y = mx + c, where m is the slope or graient of the line, an c is the

More information

Section 2.1 The Derivative and the Tangent Line Problem

Section 2.1 The Derivative and the Tangent Line Problem Chapter 2 Differentiation Course Number Section 2.1 The Derivative an the Tangent Line Problem Objective: In this lesson you learne how to fin the erivative of a function using the limit efinition an unerstan

More information

DRAFT - Math 101 Lecture Note - Dr. Said Algarni

DRAFT - Math 101 Lecture Note - Dr. Said Algarni 3 Differentiation Rules 3.1 The Derivative of Polynomial and Exponential Functions In this section we learn how to differentiate constant functions, power functions, polynomials, and exponential functions.

More information

Implicit Differentiation and Inverse Trigonometric Functions

Implicit Differentiation and Inverse Trigonometric Functions Implicit Differentiation an Inverse Trigonometric Functions MATH 161 Calculus I J. Robert Buchanan Department of Mathematics Summer 2018 Explicit vs. Implicit Functions 0.5 1 y 0.0 y 2 0.5 3 4 1.0 0.5

More information

You should also review L Hôpital s Rule, section 3.6; follow the homework link above for exercises.

You should also review L Hôpital s Rule, section 3.6; follow the homework link above for exercises. BEFORE You Begin Calculus II If it has been awhile since you ha Calculus, I strongly suggest that you refresh both your ifferentiation an integration skills. I woul also like to remin you that in Calculus,

More information

x f(x) x f(x) approaching 1 approaching 0.5 approaching 1 approaching 0.

x f(x) x f(x) approaching 1 approaching 0.5 approaching 1 approaching 0. Engineering Mathematics 2 26 February 2014 Limits of functions Consier the function 1 f() = 1. The omain of this function is R + \ {1}. The function is not efine at 1. What happens when is close to 1?

More information

Solutions to Math 41 Second Exam November 4, 2010

Solutions to Math 41 Second Exam November 4, 2010 Solutions to Math 41 Secon Exam November 4, 2010 1. (13 points) Differentiate, using the metho of your choice. (a) p(t) = ln(sec t + tan t) + log 2 (2 + t) (4 points) Using the rule for the erivative of

More information

By writing (1) as y (x 5 1). (x 5 1), we can find the derivative using the Product Rule: y (x 5 1) 2. we know this from (2)

By writing (1) as y (x 5 1). (x 5 1), we can find the derivative using the Product Rule: y (x 5 1) 2. we know this from (2) 3.5 Chain Rule 149 3.5 Chain Rule Introuction As iscusse in Section 3.2, the Power Rule is vali for all real number exponents n. In this section we see that a similar rule hols for the erivative of a power

More information

Chapter 3 Notes, Applied Calculus, Tan

Chapter 3 Notes, Applied Calculus, Tan Contents 3.1 Basic Rules of Differentiation.............................. 2 3.2 The Prouct an Quotient Rules............................ 6 3.3 The Chain Rule...................................... 9 3.4

More information

Math 251 Notes. Part I.

Math 251 Notes. Part I. Math 251 Notes. Part I. F. Patricia Meina May 6, 2013 Growth Moel.Consumer price inex. [Problem 20, page 172] The U.S. consumer price inex (CPI) measures the cost of living base on a value of 100 in the

More information

Lecture 4 : General Logarithms and Exponentials. a x = e x ln a, a > 0.

Lecture 4 : General Logarithms and Exponentials. a x = e x ln a, a > 0. For a > 0 an x any real number, we efine Lecture 4 : General Logarithms an Exponentials. a x = e x ln a, a > 0. The function a x is calle the exponential function with base a. Note that ln(a x ) = x ln

More information

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h 1 Sec 4.1 Limits, Informally When we calculated f (x), we first started with the difference quotient f(x + h) f(x) h and made h small. In other words, f (x) is the number f(x+h) f(x) approaches as h gets

More information

Your signature: (1) (Pre-calculus Review Set Problems 80 and 124.)

Your signature: (1) (Pre-calculus Review Set Problems 80 and 124.) (1) (Pre-calculus Review Set Problems 80 an 14.) (a) Determine if each of the following statements is True or False. If it is true, explain why. If it is false, give a counterexample. (i) If a an b are

More information

This file is /conf/snippets/setheader.pg you can use it as a model for creating files which introduce each problem set.

This file is /conf/snippets/setheader.pg you can use it as a model for creating files which introduce each problem set. Yanimov Almog WeBWorK assignment number Sections 3. 3.2 is ue : 08/3/207 at 03:2pm CDT. Te (* replace wit url for te course ome page *) for te course contains te syllabus, graing policy an oter information.

More information

Exam 3 Review. Lesson 19: Concavity, Inflection Points, and the Second Derivative Test. Lesson 20: Absolute Extrema on an Interval

Exam 3 Review. Lesson 19: Concavity, Inflection Points, and the Second Derivative Test. Lesson 20: Absolute Extrema on an Interval Exam 3 Review Lessons 17-18: Relative Extrema, Critical Numbers, an First Derivative Test (from exam 2 review neee for curve sketching) Critical Numbers: where the erivative of a function is zero or unefine.

More information

x f(x) x f(x) approaching 1 approaching 0.5 approaching 1 approaching 0.

x f(x) x f(x) approaching 1 approaching 0.5 approaching 1 approaching 0. Engineering Mathematics 2 26 February 2014 Limits of functions Consier the function 1 f() = 1. The omain of this function is R + \ {1}. The function is not efine at 1. What happens when is close to 1?

More information

Chapter 1. Functions, Graphs, and Limits

Chapter 1. Functions, Graphs, and Limits Review for Final Exam Lecturer: Sangwook Kim Office : Science & Tech I, 226D math.gmu.eu/ skim22 Chapter 1. Functions, Graphs, an Limits A function is a rule that assigns to each objects in a set A exactly

More information

Calculus in the AP Physics C Course The Derivative

Calculus in the AP Physics C Course The Derivative Limits an Derivatives Calculus in the AP Physics C Course The Derivative In physics, the ieas of the rate change of a quantity (along with the slope of a tangent line) an the area uner a curve are essential.

More information

CHAPTER 3 DERIVATIVES (continued)

CHAPTER 3 DERIVATIVES (continued) CHAPTER 3 DERIVATIVES (continue) 3.3. RULES FOR DIFFERENTIATION A. The erivative of a constant is zero: [c] = 0 B. The Power Rule: [n ] = n (n-1) C. The Constant Multiple Rule: [c *f()] = c * f () D. The

More information

Math Test #2 Info and Review Exercises

Math Test #2 Info and Review Exercises Math 180 - Test #2 Info an Review Exercises Spring 2019, Prof. Beyler Test Info Date: Will cover packets #7 through #16. You ll have the entire class to finish the test. This will be a 2-part test. Part

More information

MATH2231-Differentiation (2)

MATH2231-Differentiation (2) -Differentiation () The Beginnings of Calculus The prime occasion from which arose my iscovery of the metho of the Characteristic Triangle, an other things of the same sort, happene at a time when I ha

More information

SYDE 112, LECTURE 1: Review & Antidifferentiation

SYDE 112, LECTURE 1: Review & Antidifferentiation SYDE 112, LECTURE 1: Review & Antiifferentiation 1 Course Information For a etaile breakown of the course content an available resources, see the Course Outline. Other relevant information for this section

More information

Derivatives. if such a limit exists. In this case when such a limit exists, we say that the function f is differentiable.

Derivatives. if such a limit exists. In this case when such a limit exists, we say that the function f is differentiable. Derivatives 3. Derivatives Definition 3. Let f be a function an a < b be numbers. Te average rate of cange of f from a to b is f(b) f(a). b a Remark 3. Te average rate of cange of a function f from a to

More information

( 3x +1) 2 does not fit the requirement of the power rule that the base be x

( 3x +1) 2 does not fit the requirement of the power rule that the base be x Section 3 4A: The Chain Rule Introuction The Power Rule is state as an x raise to a real number If y = x n where n is a real number then y = n x n-1 What if we wante to fin the erivative of a variable

More information

Final Exam Study Guide and Practice Problems Solutions

Final Exam Study Guide and Practice Problems Solutions Final Exam Stuy Guie an Practice Problems Solutions Note: These problems are just some of the types of problems that might appear on the exam. However, to fully prepare for the exam, in aition to making

More information

Solutions to Practice Problems Tuesday, October 28, 2008

Solutions to Practice Problems Tuesday, October 28, 2008 Solutions to Practice Problems Tuesay, October 28, 2008 1. The graph of the function f is shown below. Figure 1: The graph of f(x) What is x 1 + f(x)? What is x 1 f(x)? An oes x 1 f(x) exist? If so, what

More information

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued)

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Prove this Result How Can a Derivative Not Exist? Remember that the derivative at a point (or slope of a tangent line) is a LIMIT, so it doesn t exist whenever

More information

Make graph of g by adding c to the y-values. on the graph of f by c. multiplying the y-values. even-degree polynomial. graph goes up on both sides

Make graph of g by adding c to the y-values. on the graph of f by c. multiplying the y-values. even-degree polynomial. graph goes up on both sides Reference 1: Transformations of Graphs an En Behavior of Polynomial Graphs Transformations of graphs aitive constant constant on the outsie g(x) = + c Make graph of g by aing c to the y-values on the graph

More information

Lecture 14 September 26, Today. WH 3 now posted Due Tues. Oct. 2, 2018 Quiz 4 tomorrow. Differentiation summary Related rates

Lecture 14 September 26, Today. WH 3 now posted Due Tues. Oct. 2, 2018 Quiz 4 tomorrow. Differentiation summary Related rates Lecture 4 September 6, 08 WH 3 now poste Due Tues. Oct., 08 Quiz 4 tomorrow Toay Differentiation summary Relate rates Differentiation Summary Basic erivatives (memorize) x x x c = 0 sin x = cos x cos x

More information

1 Lecture 13: The derivative as a function.

1 Lecture 13: The derivative as a function. 1 Lecture 13: Te erivative as a function. 1.1 Outline Definition of te erivative as a function. efinitions of ifferentiability. Power rule, erivative te exponential function Derivative of a sum an a multiple

More information

Inverse Trig Functions

Inverse Trig Functions Inverse Trig Functions -8-006 If you restrict fx) = sinx to the interval π x π, the function increases: y = sin x - / / This implies that the function is one-to-one, an hence it has an inverse. The inverse

More information

Math 210 Midterm #1 Review

Math 210 Midterm #1 Review Math 20 Miterm # Review This ocument is intene to be a rough outline of what you are expecte to have learne an retaine from this course to be prepare for the first miterm. : Functions Definition: A function

More information

Section The Chain Rule and Implicit Differentiation with Application on Derivative of Logarithm Functions

Section The Chain Rule and Implicit Differentiation with Application on Derivative of Logarithm Functions Section 3.4-3.6 The Chain Rule an Implicit Differentiation with Application on Derivative of Logarithm Functions Ruipeng Shen September 3r, 5th Ruipeng Shen MATH 1ZA3 September 3r, 5th 1 / 3 The Chain

More information

1 + x 2 d dx (sec 1 x) =

1 + x 2 d dx (sec 1 x) = Page This exam has: 8 multiple choice questions worth 4 points each. hand graded questions worth 4 points each. Important: No graphing calculators! Any non-graphing, non-differentiating, non-integrating

More information

Lecture 6: Calculus. In Song Kim. September 7, 2011

Lecture 6: Calculus. In Song Kim. September 7, 2011 Lecture 6: Calculus In Song Kim September 7, 20 Introuction to Differential Calculus In our previous lecture we came up with several ways to analyze functions. We saw previously that the slope of a linear

More information

Math 180, Exam 2, Fall 2012 Problem 1 Solution. (a) The derivative is computed using the Chain Rule twice. 1 2 x x

Math 180, Exam 2, Fall 2012 Problem 1 Solution. (a) The derivative is computed using the Chain Rule twice. 1 2 x x . Fin erivatives of the following functions: (a) f() = tan ( 2 + ) ( ) 2 (b) f() = ln 2 + (c) f() = sin() Solution: Math 80, Eam 2, Fall 202 Problem Solution (a) The erivative is compute using the Chain

More information

Exam 2 Review Solutions

Exam 2 Review Solutions Exam Review Solutions 1. True or False, an explain: (a) There exists a function f with continuous secon partial erivatives such that f x (x, y) = x + y f y = x y False. If the function has continuous secon

More information

f(x 0 + h) f(x 0 ) h slope of secant line = m sec

f(x 0 + h) f(x 0 ) h slope of secant line = m sec Derivatives Using limits, we can define the slope of a tangent line to a function. When given a function f(x), and given a point P (x 0, f(x 0 )) on f, if we want to find the slope of the tangent line

More information

m(x) = f(x) + g(x) m (x) = f (x) + g (x) (The Sum Rule) n(x) = f(x) g(x) n (x) = f (x) g (x) (The Difference Rule)

m(x) = f(x) + g(x) m (x) = f (x) + g (x) (The Sum Rule) n(x) = f(x) g(x) n (x) = f (x) g (x) (The Difference Rule) Chapter 3 Differentiation Rules 3.1 Derivatives of Polynomials and Exponential Functions Aka The Short Cuts! Yay! f(x) = c f (x) = 0 g(x) = x g (x) = 1 h(x) = x n h (x) = n x n-1 (The Power Rule) k(x)

More information

Tutorial 1 Differentiation

Tutorial 1 Differentiation Tutorial 1 Differentiation What is Calculus? Calculus 微積分 Differential calculus Differentiation 微分 y lim 0 f f The relation of very small changes of ifferent quantities f f y y Integral calculus Integration

More information

Chapter 2 Derivatives

Chapter 2 Derivatives Contents Chapter 2 Derivatives Motivation to Chapter 2 2 1 Derivatives and Rates of Change 3 1.1 VIDEO - Definitions................................................... 3 1.2 VIDEO - Examples and Applications

More information

Optimization Notes. Note: Any material in red you will need to have memorized verbatim (more or less) for tests, quizzes, and the final exam.

Optimization Notes. Note: Any material in red you will need to have memorized verbatim (more or less) for tests, quizzes, and the final exam. MATH 2250 Calculus I Date: October 5, 2017 Eric Perkerson Optimization Notes 1 Chapter 4 Note: Any material in re you will nee to have memorize verbatim (more or less) for tests, quizzes, an the final

More information

Implicit Differentiation

Implicit Differentiation Implicit Differentiation Thus far, the functions we have been concerne with have been efine explicitly. A function is efine explicitly if the output is given irectly in terms of the input. For instance,

More information

Some functions and their derivatives

Some functions and their derivatives Chapter Some functions an their erivatives. Derivative of x n for integer n Recall, from eqn (.6), for y = f (x), Also recall that, for integer n, Hence, if y = x n then y x = lim δx 0 (a + b) n = a n

More information

Algebra/Trig Review Flash Cards. Changes. equation of a line in various forms. quadratic formula. definition of a circle

Algebra/Trig Review Flash Cards. Changes. equation of a line in various forms. quadratic formula. definition of a circle Math Flash cars Math Flash cars Algebra/Trig Review Flash Cars Changes Formula (Precalculus) Formula (Precalculus) quaratic formula equation of a line in various forms Formula(Precalculus) Definition (Precalculus)

More information

Further Differentiation and Applications

Further Differentiation and Applications Avance Higher Notes (Unit ) Prerequisites: Inverse function property; prouct, quotient an chain rules; inflexion points. Maths Applications: Concavity; ifferentiability. Real-Worl Applications: Particle

More information

, find the value(s) of a and b which make f differentiable at bx 2 + x if x 2 x = 2 or explain why no such values exist.

, find the value(s) of a and b which make f differentiable at bx 2 + x if x 2 x = 2 or explain why no such values exist. Math 171 Exam II Summary Sheet and Sample Stuff (NOTE: The questions posed here are not necessarily a guarantee of the type of questions which will be on Exam II. This is a sampling of questions I have

More information

Implicit Differentiation

Implicit Differentiation Implicit Differentiation Implicit Differentiation Using the Chain Rule In the previous section we focuse on the erivatives of composites an saw that THEOREM 20 (Chain Rule) Suppose that u = g(x) is ifferentiable

More information

MATH 120 Theorem List

MATH 120 Theorem List December 11, 2016 Disclaimer: Many of the theorems covere in class were not name, so most of the names on this sheet are not efinitive (they are escriptive names rather than given names). Lecture Theorems

More information

Chapter 1 Overview: Review of Derivatives

Chapter 1 Overview: Review of Derivatives Chapter Overview: Review of Derivatives The purpose of this chapter is to review the how of ifferentiation. We will review all the erivative rules learne last year in PreCalculus. In the net several chapters,

More information

Fall 2016: Calculus I Final

Fall 2016: Calculus I Final Answer the questions in the spaces provie on the question sheets. If you run out of room for an answer, continue on the back of the page. NO calculators or other electronic evices, books or notes are allowe

More information

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

Name Date Period. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. AB Fall Final Exam Review 200-20 Name Date Period MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Solve the problem. ) The position of a particle

More information

Chapter 2 Derivatives

Chapter 2 Derivatives Chapter Derivatives Section. An Intuitive Introuction to Derivatives Consier a function: Slope function: Derivative, f ' For each, the slope of f is the height of f ' Where f has a horizontal tangent line,

More information

Section 1.4 Tangents and Velocity

Section 1.4 Tangents and Velocity Math 132 Tangents and Velocity Section 1.4 Section 1.4 Tangents and Velocity Tangent Lines A tangent line to a curve is a line that just touches the curve. In terms of a circle, the definition is very

More information

IMPLICIT DIFFERENTIATION

IMPLICIT DIFFERENTIATION IMPLICIT DIFFERENTIATION CALCULUS 3 INU0115/515 (MATHS 2) Dr Arian Jannetta MIMA CMath FRAS Implicit Differentiation 1/ 11 Arian Jannetta Explicit an implicit functions Explicit functions An explicit function

More information

Derivative Methods: (csc(x)) = csc(x) cot(x)

Derivative Methods: (csc(x)) = csc(x) cot(x) EXAM 2 IS TUESDAY IN QUIZ SECTION Allowe:. A Ti-30x IIS Calculator 2. An 8.5 by inch sheet of hanwritten notes (front/back) 3. A pencil or black/blue pen Covers: 3.-3.6, 0.2, 3.9, 3.0, 4. Quick Review

More information

YORK UNIVERSITY. Faculty of Science Department of Mathematics and Statistics. MATH A Test #2. June 25, 2014 SOLUTIONS

YORK UNIVERSITY. Faculty of Science Department of Mathematics and Statistics. MATH A Test #2. June 25, 2014 SOLUTIONS YORK UNIVERSITY Faculty of Science Department of Mathematics an Statistics MATH 505 6.00 A Test # June 5, 04 SOLUTIONS Family Name (print): Given Name: Stuent No: Signature: INSTRUCTIONS:. Please write

More information

Calculus I Practice Test Problems for Chapter 3 Page 1 of 9

Calculus I Practice Test Problems for Chapter 3 Page 1 of 9 Calculus I Practice Test Problems for Chapter 3 Page of 9 This is a set of practice test problems for Chapter 3. This is in no wa an inclusive set of problems there can be other tpes of problems on the

More information

CALCULUS. Berkant Ustaoğlu CRYPTOLOUNGE.NET

CALCULUS. Berkant Ustaoğlu CRYPTOLOUNGE.NET CALCULUS Berkant Ustaoğlu CRYPTOLOUNGE.NET Secant 1 Definition Let f be defined over an interval I containing u. If x u and x I then f (x) f (u) Q = x u is the difference quotient. Also if h 0, such that

More information

L Hôpital s Rule was discovered by Bernoulli but written for the first time in a text by L Hôpital.

L Hôpital s Rule was discovered by Bernoulli but written for the first time in a text by L Hôpital. 7.5. Ineterminate Forms an L Hôpital s Rule L Hôpital s Rule was iscovere by Bernoulli but written for the first time in a text by L Hôpital. Ineterminate Forms 0/0 an / f(x) If f(x 0 ) = g(x 0 ) = 0,

More information

Related Rates. Introduction. We are familiar with a variety of mathematical or quantitative relationships, especially geometric ones.

Related Rates. Introduction. We are familiar with a variety of mathematical or quantitative relationships, especially geometric ones. Relate Rates Introuction We are familiar with a variety of mathematical or quantitative relationships, especially geometric ones For example, for the sies of a right triangle we have a 2 + b 2 = c 2 or

More information

Integration Review. May 11, 2013

Integration Review. May 11, 2013 Integration Review May 11, 2013 Goals: Review the funamental theorem of calculus. Review u-substitution. Review integration by parts. Do lots of integration eamples. 1 Funamental Theorem of Calculus In

More information

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3)

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Final Exam Review AP Calculus AB Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Use the graph to evaluate the limit. 2) lim x

More information

Using the definition of the derivative of a function is quite tedious. f (x + h) f (x)

Using the definition of the derivative of a function is quite tedious. f (x + h) f (x) Derivative Rules Using te efinition of te erivative of a function is quite teious. Let s prove some sortcuts tat we can use. Recall tat te efinition of erivative is: Given any number x for wic te limit

More information

x = c of N if the limit of f (x) = L and the right-handed limit lim f ( x)

x = c of N if the limit of f (x) = L and the right-handed limit lim f ( x) Limit We say the limit of f () as approaches c equals L an write, lim L. One-Sie Limits (Left an Right-Hane Limits) Suppose a function f is efine near but not necessarily at We say that f has a left-hane

More information

The derivative of a function f(x) is another function, defined in terms of a limiting expression: f(x + δx) f(x)

The derivative of a function f(x) is another function, defined in terms of a limiting expression: f(x + δx) f(x) Y. D. Chong (2016) MH2801: Complex Methos for the Sciences 1. Derivatives The erivative of a function f(x) is another function, efine in terms of a limiting expression: f (x) f (x) lim x δx 0 f(x + δx)

More information

016A Homework 10 Solution

016A Homework 10 Solution 016A Homework 10 Solution Jae-young Park November 2, 2008 4.1 #14 Write each expression in the form of 2 kx or 3 kx, for a suitable constant k; (3 x 3 x/5 ) 5, (16 1/4 16 3/4 ) 3x Solution (3 x 3 x/5 )

More information

CHAPTER 3 DIFFERENTIATION

CHAPTER 3 DIFFERENTIATION CHAPTER 3 DIFFERENTIATION 3.1 THE DERIVATIVE AND THE TANGENT LINE PROBLEM You will be able to: - Find the slope of the tangent line to a curve at a point - Use the limit definition to find the derivative

More information

Math 1 Lecture 20. Dartmouth College. Wednesday

Math 1 Lecture 20. Dartmouth College. Wednesday Math 1 Lecture 20 Dartmouth College Wenesay 10-26-16 Contents Reminers/Announcements Last Time Derivatives of Trigonometric Functions Reminers/Announcements WebWork ue Friay x-hour problem session rop

More information

Rules of Differentiation. Lecture 12. Product and Quotient Rules.

Rules of Differentiation. Lecture 12. Product and Quotient Rules. Rules of Differentiation. Lecture 12. Prouct an Quotient Rules. We warne earlier that we can not calculate the erivative of a prouct as the prouct of the erivatives. It is easy to see that this is so.

More information

Lecture Notes for Math 1000

Lecture Notes for Math 1000 Lecture Notes for Math 1000 Dr. Xiang-Sheng Wang Memorial University of Newfoundland Office: HH-2016, Phone: 864-4321 Office hours: 13:00-15:00 Wednesday, 12:00-13:00 Friday Email: xswang@mun.ca Course

More information

MA4001 Engineering Mathematics 1 Lecture 14 Derivatives of Trigonometric Functions Critical Points

MA4001 Engineering Mathematics 1 Lecture 14 Derivatives of Trigonometric Functions Critical Points MA4001 Engineering Mathematics 1 Lecture 14 Derivatives of Trigonometric Functions Critical Points Dr. Sarah Mitchell Autumn 2014 An important limit To calculate the limits of basic trigonometric functions

More information

THEOREM: THE CONSTANT RULE

THEOREM: THE CONSTANT RULE MATH /MYERS/ALL FORMULAS ON THIS REVIEW MUST BE MEMORIZED! DERIVATIVE REVIEW THEOREM: THE CONSTANT RULE The erivative of a constant function is zero. That is, if c is a real number, then c 0 Eample 1:

More information

1 The Derivative and Differrentiability

1 The Derivative and Differrentiability 1 The Derivative and Differrentiability 1.1 Derivatives and rate of change Exercise 1 Find the equation of the tangent line to f (x) = x 2 at the point (1, 1). Exercise 2 Suppose that a ball is dropped

More information

AP Calculus AB: Semester Review Notes Information in the box are MASTERY CONCEPTS. Be prepared to apply these concepts on your midterm.

AP Calculus AB: Semester Review Notes Information in the box are MASTERY CONCEPTS. Be prepared to apply these concepts on your midterm. AP Calculus AB: Semester Review Notes Information in the box are MASTERY CONCEPTS. Be prepared to apply these concepts on your midterm. Name: Date: Period: I. Limits and Continuity Definition of Average

More information

Derivatives and Its Application

Derivatives and Its Application Chapter 4 Derivatives an Its Application Contents 4.1 Definition an Properties of erivatives; basic rules; chain rules 3 4. Derivatives of Inverse Functions; Inverse Trigonometric Functions; Hyperbolic

More information

Formulas that must be memorized:

Formulas that must be memorized: Formulas that must be memorized: Position, Velocity, Acceleration Speed is increasing when v(t) and a(t) have the same signs. Speed is decreasing when v(t) and a(t) have different signs. Section I: Limits

More information

AP Calculus Chapter 3 Testbank (Mr. Surowski)

AP Calculus Chapter 3 Testbank (Mr. Surowski) AP Calculus Chapter 3 Testbank (Mr. Surowski) Part I. Multiple-Choice Questions (5 points each; please circle the correct answer.). If f(x) = 0x 4 3 + x, then f (8) = (A) (B) 4 3 (C) 83 3 (D) 2 3 (E) 2

More information

1 Lecture 20: Implicit differentiation

1 Lecture 20: Implicit differentiation Lecture 20: Implicit ifferentiation. Outline The technique of implicit ifferentiation Tangent lines to a circle Derivatives of inverse functions by implicit ifferentiation Examples.2 Implicit ifferentiation

More information

Rules for Derivatives

Rules for Derivatives Chapter 3 Rules for Derivatives 3.1 Shortcuts for powers of x, constants, sums, an ifferences Leibniz notation for erivative: f 0 (x) = f, V 0 (t) = V t, C0 (q) = C q, etc. reas as the erivative of....

More information