Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Size: px
Start display at page:

Download "Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996."

Transcription

1 Differentiation 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine,

2 Launch Mathematica. Type <<Mathetic`diffpack` Instructions for Getting Started hold down the shift key, and press the return key. Wait for Mathematica s response. (Note: be sure to use the ` symbol rather than the '. You may need to hunt for it on your keyboard: on most, it s in the top left corner.) This essential first step sets up Mathematica for this module. If you omit this bit, the special commands (see below) will not work. Mathematica Commands The following Mathematica commands may be useful to you in this module. Commands that come with Mathematica: Plot, Limit, D, Derivative, Show, InverseFunction Special commands for this module: PlotChord, GiveQuestion, LastAnswer For information on, say, the Limit command, type?limit hold down shift, and press return. 2

3 Experiment 1: Gradients of straight lines Preparatory reading The gradient of a straight line is a measure of its steepness. It s equal to the number of units the line rises for each unit step to the right. The following graph, then, has gradient 2: it goes up 2 units for every 1 unit along. If the graph falls instead of rises, then the gradient is negative: here s a line with gradient 3. To calculate the gradient of a straight line, fix two points on it, (x 0, y 0 ) and (x 1, y 1 ). The line s gradient is then 3

4 y 1 y 0 x 1 x 0, change in y or, more simply, change in x. You ll have spotted, probably, that there s a correspondence between a function s equation and its graph. The function with equation y = 2x 4 has a graph with gradient 2, and the function with equation y = 6 3x has a graph with gradient 3. In general, the function with gradient y = mx + c has a graph with gradient m. 1) Type in the following Mathematica input, hold down the shift key, and press the return key (called enter on some machines). Plot[{x-5, 2-x, 2x+1}, {x, -6, 6}, AspectRatio->Automatic] The AspectRatio->Automatic part sets an option. In this case, all you re doing is ensuring that the scales are the same on both axes. If you leave out this bit, the plot will still work but the scales might be different. 2) Experiment with plotting different functions, keeping the following questions in mind: what kinds of equations have straight line graphs? what kinds don t? for a straight line graph, how can we predict its slope from its equation? for a straight line graph, how can we predict, from its equation, where it crosses the y-axis? 3) Type the following Mathematica code: StraightLinesPicture This should generate a graph of three straight lines. Using the Plot command, reproduce this graph. Note: this section uses this module's special functions. If they fail to work, try going back to the Instructions for Getting Started at the beginning. Experiment 2: Chords and tangents Preparatory reading It's often important for us, as users of mathematics, to know about gradients of graphs. If the horizontal axis represents time, for instance, then the gradient of the graph represents how rapidly the quantity is changing in time (velocity = gradient of distance time graph, acceleration = gradient of velocity time graph, inflation = gradient of price time graph, etc.) The problem is, few graphs we study are straight lines. We need, then, some idea of gradient for curves. 4

5 Suppose we're interested in the gradient of a curve at a given point. Now: we already know about gradients of straight lines. So we can draw a straight line through our point, exactly as steep as the curve and then ask: what's the gradient of this line? This line, which just touches the curve, is called a tangent. The bad news is that, in general, it's hard to calculate gradients of tangents. Far harder, for example, than it is to calculate the gradient of a line that crosses the curve at two given points. Lines like this are called chords or secants. Because they pass through two points whose coordinates we know, we can use the formula to find their gradients. change in y change in x BIG IDEA: The closer together the two points, the more the chord looks like a tangent 5

6 The first part of the experiment involves generating a certain diagram. To produce this particular diagram type PlotChord[x^2, {x, -5, 5}, 2, 4, PlotRange->{-5, 25}] then shift-return in the normal way. 1) Generate a diagram showing the graph of the function y = x 2, together with a chord passing through the points corresponding to x = 2 and x = 4. Note down the gradient of this chord. 2) Generate a fresh diagram. This time, keep the first point at x = 2, but move the second point a little nearer: say to x = 3. Again, note down the gradient of the chord. Repeat, moving the second point nearer and nearer to x = 2. Note down the gradient each time. 3) Write a short report stating what you believe to be the gradient of the tangent at the point x = 2. Explain why you believe this to be the case, based on the results of your experiment. 4) Use the same technique to find the gradients of the tangents at the points x = 1, x = 3 and x = 4. 5) What do your findings from part 4 suggest? Write down your answer. Note: this section uses this module s special functions. If they fail to work, try going back to the Instructions for Getting Started at the beginning. Experiment 3: Limits and derivatives Preparatory reading We can express the ideas you met in Experiment 2 like this: the gradient of the tangent at the point P is the limit, as Q approaches P, of the gradient of the chord PQ. A limit is a number that we can get as close to as we like, even though we may not be able to quite reach it. 6

7 Let's think about the equation y = x 2. If P has coordinates (2, 4), and Q has coordinates (2 + h, [2 + h] 2 ), then the gradient of the chord PQ is given by change in y change in x = ( 2+h)2 4 h As h gets progressively smaller (we say it tends to zero) Q approaches P and the gradient of the chord PQ gets closer to that of the tangent at P. The gradient of this tangent, then, is the limit as h tends to zero of the above quantity. We write this as Notice, though, that and therefore that ( 2 + h) 2 4 lim. h (2 + h) 2 4 = 4 + 4h + h 2 4 lim ( 2 + h ) 2 4 h = 4h + h 2, 4h + h2 = lim h = lim 4 + h This shows us, then, that the gradient of the tangent at x = 2 is 4. Does this fit in with what you found? More generally, the gradient of the graph y = f(x) at the point (x, f(x)) is given by lim = 4. f (x + h) f (x) h This is called the derivative of f, and is written f '(x) or sometimes just f '.. Mathematica is good at handling symbolic quantities. In this experiment, you get to use some of these symbolic capabilities as you explore an algebraic approach to the numerical and graphical work you did in Experiment 2. 1) Begin by defining, in Mathematica, a function f such that f(x) = x 2. You do this by typing f[x_] = x^2 then holding down shift and pressing return. Be sure you type it exactly as it appears: notice that Mathematica uses square brackets where functions are concerned, and that all variables on the left-hand side of a function definition need to be followed with an underscore, _. 2) Use Mathematica to find the gradient of the tangent to the curve y = f(x) at x = 2. You can do this through the following Mathematica commands: 7

8 chordgradient = (f[2+h] - f[2])/h tangentgradient = Limit[chordGradient, h->0] 3) Repeat for x = 1, 3 and 4. Compare your answers to those from Experiment 2. 4) You can streamline this process considerably. To find the gradient of the tangent to the curve y = f(x) at x = 2, simply type f'[2] then hold down shift and press return. Repeat this for x = 1, 3 and 4, and for any other values you care to choose. 5) Based on your results, and on those of Experiment 2, what would you predict would be the output from the following Mathematica input command: f'[x] Try it: were you right? Experiment 4: Differentiation Preparatory reading In the background reading for Experiment 3, we saw a mathematical argument proving that the gradient of the graph y = x 2 at the point (2, 4) was 4. We can use a very similar argument to prove that gradient of the graph y = x 2 at the point (x, x 2 ) is 2x, whatever the value of x may be: lim The derivative of x 2, then, is 2x. We write or ( x + h ) 2 x 2 h = 2 xh + h2 lim h lim 2 x + h = = 2x. if f(x) = x 2 then f '(x) = 2x if y = x 2 then dy dx = 2x. Finding a function's derivative is called differentiating the function. We could repeat these kinds of calculation every time we need to differentiate (what we call differentiation from first principles), but that would be time-consuming. Alternatively, we could rely on Mathematica to do the job for us every time; that, though, would be a kind of cheating. 8

9 It would be ideal to have sets of rules that allow us to differentiate relatively quickly without relying on technology and without getting bogged down in calculations involving limits. In this experiment, you'll use Mathematica to explore some rules of that type. We've already met one Mathematica approach to differentiation: the f'[x] idea you saw in Experiment 3. Another uses something called the D operator. Try the following: D[x^2, x] 1) Using either the D operator or the f'[x] technique, find the derivatives of x 3, x 4 and x. What do you notice? Explore further. 2) Find the derivatives of x, 1/x, and 1/x 2. Do these fit in with your findings from part 1? 3) Write a short report summarising your findings about derivatives of functions of the form f(x) = x n. 4) Try the following: 5x 3 + 2x 2 + 1/x; 11x x; 2x 3-3 x+ 7. Write down what you observe. Try some other examples of this type. Post-experiment reading The observations etc. can be summed up in the single rule if f(x) = x 2 then f '(x) = 2x, if f(x) = x 3 then f '(x) = 3x 2, if f(x) = x 4 then f '(x) = 4x 3, if f(x) = x n then f '(x) = nx n 1. This rule isn't hard to prove from first principles. It applies to any function of the form f(x) = x n, including cases where n is fractional or negative. Thus, for example, suppose f(x) = x. Then and thus f (x) = x 1/2 9

10 f ' ( x) = 1 2 x 1/2 = 1 2 x. You'll notice, too, that the derivative of, say, 5x 3 is 5 3x 2 (or 15x 2 ), and that the derivative of, say, 5x 3 + 2x 2 is 5 3x x (or 15x 2 + 4x). This works quite generally: the derivative of a f(x) + b g(x) is a f '(x) + b g'(x). Practice Questions We've included a feature which allows you to get Mathematica to generate practice questions and their answers. There are three sets of questions on differentiation of x n. To generate a question of the simplest kind, type GiveQuestion["diff, simple x^n"] not forgetting to shift-enter. To generate the answer for checking, type LastAnswer["diff, simple x^n"] You can do this as often as you want: the questions are randomly generated, and repetitions should be rare. The other two sets of questions are accessed by the commands GiveQuestion["diff, harder x^n"] and GiveQuestion["diff, several terms"] Note: this section uses this module's special functions. If they fail to work, try going back to the Instructions for Getting Started at the beginning. Experiment 5: Trigonometric functions In this short experiment, we look at the derivatives of the principal trigonometric functions, sin x and cos x. Throughout, we'll be working in radians: if you've forgotten this way of measuring angle, or if you've never met it, consult the Trigonometry module. 1) Generate a plot of the graph of y = sin x, for x between and, such that the scales are the same on both axes. If you need a reminder about how to force the scales to be the same, consult the instructions for Experiment 1. (Note: Mathematica recognises the word Pi as meaning.) 2) What would you estimate to be the gradient of this graph at x = 0? At x = /2? At x =? On a piece of paper, sketch a graph of this gradient against x. 3) On the basis of your sketch, what would you conjecture to be the derivative of sin x? Use Mathematica to check your answer. 10

11 4) Repeat this process for y = cos x. Post-experiment reading It isn t hard to show, from first principles, that the derivative of sin x is, in fact, cos x. You need to know two facts: that, for small values of h, sin h is very close to h and cos h is very close to 1 h 2 /2; that sin (A + B) = sin A cos B + cos A sin B. The argument then goes like this. Suppose f(x) = sin x. Then f ' ( x) = = lim sin x + h h lim = lim ( ) sin x sin xcosh + cosx sinh sin x h sin x 1 h2 2 + hcos x sin x h = lim cosx h 2 sin x = cos x. A similar method can be used to show that the derivative of cos x is sin x. Note, though, that all this only works if you measure all angles in radians. Experiment 6: Exponential functions and e Preparatory reading Exponential functions are functions such as y = 2 x, y = 4 x, y = 5 x, etc. Note that these functions are not the same as things like y = x 2 or y = x 3 : we can t apply the same rules when we differentiate them. The general shape of the graph of y = a x is more or less the same for all positive values of a: they all look roughly like this: 11

12 The graph begins very flat, so for x negative the gradient is close to zero. Then, as x gets larger, the graph gets very quickly steeper: the gradient rises rapidly. If we were to plot a graph of gradient against x, then, we d get something that begins close to zero, then rises very rapidly: something very like the graph of the function itself! This suggests that the derivative of an exponential function might be another exponential function, or something very like one. In this experiment, we take a graphical look at the problem of differentiating exponential functions. You re asked early on to plot, for 3 < x < 3, a graph of the function f(x) = 2 x and its derivative. You re asked to do this in such a way that the graph of the function appears in red, and that of the derivative in blue. The quickest way to do this is to type f[x_] = 2^x Plot[{f[x], f'[x]}, {x, -3, 3}, PlotStyle->{RGBColor[1,0,0],RGBColor[0,0,1]}] remembering to shift-return after each command. 1) Generate a diagram showing a plot, on the same axes, of the function f(x) = 2 x and its derivative for x between 3 and 3. Show the function in red and the derivative in blue. Describe the apparent relationship between the two curves. 2) Repeat for the function f(x) = 3 x. 3) Find a value of a for which the graph of f(x) = a x is indistinguishable from that of its derivative. Post-experiment reading The results of this experiment strongly suggest that there is a close relationship between exponential functions and their derivatives. This is indeed the case, as the following argument makes clear. If f(x) = a x, then 12

13 f' ( x) = lim a x + h a x h = a x lim ah 1 h = L a x, where L = lim ah 1. h This means that the derivative of a x is just some multiple of a x itself. If we choose the value of a carefully, we can make L equal to 1. In this case, the derivative of a x will simply be a x. The value of a for which L = 1 is known as e, and is about The function f(x) = e x is so important that it is known as the exponential function, sometimes also written exp(x). Remember the derivative of e x is e x. Check using Mathematica if you like! Experiment 7: Derivatives of inverses Preparatory reading Reminder: the inverse of a function is that function in reverse: if f 1 is the inverse of f then f ( a) = b f 1 ( b) = a. The inverse of the function f(x) = a x is known as the logarithmic function f 1 (x) = log a x. The inverse of the exponential function f(x) = e x is known as the natural logarithm, and is written f 1 (x) = ln x,or sometimes f 1 (x) = log x, though the latter notation may be more familiar to you as standing for log 10 x. In Mathematica, the natural logarithm is written Log[x] (and the base-10 logarithm as Log[10,x]). In this experiment, we examine the problem of differentiating inverse functions. You re asked early on to plot, for 3 < x < 3, a graph of the function f(x) = e x and its inverse, Log[x]. You re asked to do this in such a way that the graph of the function appears in red, and that of the inverse in blue. One way to do this is to type f = Exp plot1 = Plot[f[x],{x,-3,3}, PlotStyle -> RGBColor[1,0,0]] plot2 = Plot[InverseFunction[f][x],{x,0,3}, PlotStyle -> RGBColor[0,0,1]] Show[{plot1, plot2}, PlotRange -> {{-3,3},{-3,3}}, AspectRatio -> Automatic] remembering to shift-return after each command. When you move on to part 2, you should begin instead by typing f = Sin and then adjust the x- and y-ranges in the Plot and Show commands. 13

14 1) Generate a diagram showing a plot, on the same axes, of the function f(x) = e x and its inverse. Define a horizontal range of 3 < x < 3 for f and one of 0 < x < 3 for the inverse. Show the function in red and the inverse in blue. Describe the apparent relationship between the two curves. 2) Repeat for the function f(x) = sin x, with a horizontal range of /2 < x < /2 for f and 1 < x < 1 for the inverse. 3) Repeat for any other functions you care to choose. 4) Define the Mathematica function g as the exponential function, using the command g = Exp or g[x_] = Exp[x] Calculate the gradient of the graph of this function at each of the points (0, 1), (0.693, 2) and (1.098, 3). [Hint: the first one is just g'[0].] Define the Mathematica function ginv as the natural logarithm, and calculate its gradient at each of the points (1, 0), (2, 0.693) and (3, 1.098). Compare your results with those for g. Do they fit in with what you expected? Could they have been predicted from the first graph you generated? 5) Explore further if you wish, perhaps using other functions and their inverses. Write a short report summarising your findings and explaining them. Post-experiment reading We can conjecture: if the gradient of the graph of f at the point (a, b) is m 1, and the gradient of f 1 at the point (b, a) is m 2, then m 2 = 1 m 1. This is indeed the case, as a little bit of thought about the graphs of f and f 1 makes clear. One consequence of all this is that if we know how to differentiate a function, we can often differentiate its inverse. For example, if f(x) = e x, then f '(x) = e x. It follows that the gradient of the graph of f at the point (a, b) is e a. Now, if g(x) = ln x, we can deduce from the above that the gradient of the graph of g at the point (b, a) is 1/e a = 1/b. It follows that g'(x) = 1/x. We can use much the same method to show that the derivative of arcsin x is derivative of arctan x is x 2. 1, and that the 1 x2 14

15 Summary Function x n sin x cos x e x Derivative nx n 1 cos x sin x e x ln x 1 x arcsin x 1 1 x 2 arctan x x 2 Practice Questions There is one more set of questions in this module. To generate a question from it, type GiveQuestion["diff, miscellaneous"] not forgetting to shift-enter. To generate the answer for checking, type LastAnswer["diff, miscellaneous"] 15

Differentiation 2. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Differentiation 2. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Differentiation 2 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. 1 Launch Mathematica. Type

More information

Vectors 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Vectors 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Vectors 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Launch Mathematica. Type

More information

3.1 Day 1: The Derivative of a Function

3.1 Day 1: The Derivative of a Function A P Calculus 3.1 Day 1: The Derivative of a Function I CAN DEFINE A DERIVATIVE AND UNDERSTAND ITS NOTATION. Last chapter we learned to find the slope of a tangent line to a point on a graph by using a

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

MEI Core 1. Basic Algebra. Section 1: Basic algebraic manipulation and solving simple equations. Manipulating algebraic expressions

MEI Core 1. Basic Algebra. Section 1: Basic algebraic manipulation and solving simple equations. Manipulating algebraic expressions MEI Core Basic Algebra Section : Basic algebraic manipulation and solving simple equations Notes and Examples These notes contain subsections on Manipulating algebraic expressions Collecting like terms

More information

Pure Mathematics P1

Pure Mathematics P1 1 Pure Mathematics P1 Rules of Indices x m * x n = x m+n eg. 2 3 * 2 2 = 2*2*2*2*2 = 2 5 x m / x n = x m-n eg. 2 3 / 2 2 = 2*2*2 = 2 1 = 2 2*2 (x m ) n =x mn eg. (2 3 ) 2 = (2*2*2)*(2*2*2) = 2 6 x 0 =

More information

New Material Section 1: Functions and Geometry occurring in engineering

New Material Section 1: Functions and Geometry occurring in engineering New Material Section 1: Functions and Geometry occurring in engineering 1. Plotting Functions: Using appropriate software to plot the graph of a function Linear f(x) = mx+c Quadratic f(x) = Px +Qx+R Cubic

More information

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2

Physics 212E Spring 2004 Classical and Modern Physics. Computer Exercise #2 Physics 212E Spring 2004 Classical and Modern Physics Chowdary Computer Exercise #2 Launch Mathematica by clicking on the Start menu (lower left hand corner of the screen); from there go up to Science

More information

A-Level Notes CORE 1

A-Level Notes CORE 1 A-Level Notes CORE 1 Basic algebra Glossary Coefficient For example, in the expression x³ 3x² x + 4, the coefficient of x³ is, the coefficient of x² is 3, and the coefficient of x is 1. (The final 4 is

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

Higher Mathematics Course Notes

Higher Mathematics Course Notes Higher Mathematics Course Notes Equation of a Line (i) Collinearity: (ii) Gradient: If points are collinear then they lie on the same straight line. i.e. to show that A, B and C are collinear, show that

More information

Brief Revision Notes and Strategies

Brief Revision Notes and Strategies Brief Revision Notes and Strategies Straight Line Distance Formula d = ( ) + ( y y ) d is distance between A(, y ) and B(, y ) Mid-point formula +, y + M y M is midpoint of A(, y ) and B(, y ) y y Equation

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS 1.6 Inverse Functions and Logarithms In this section, we will learn about: Inverse functions and logarithms. INVERSE FUNCTIONS The table gives data from an experiment

More information

Horizontal asymptotes

Horizontal asymptotes Roberto s Notes on Differential Calculus Chapter 1: Limits and continuity Section 5 Limits at infinity and Horizontal asymptotes What you need to know already: The concept, notation and terminology of

More information

INTRODUCTION TO DIFFERENTIATION

INTRODUCTION TO DIFFERENTIATION INTRODUCTION TO DIFFERENTIATION GRADIENT OF A CURVE We have looked at the process needed for finding the gradient of a curve (or the rate of change of a curve). We have defined the gradient of a curve

More information

CALCULUS AB SUMMER ASSIGNMENT

CALCULUS AB SUMMER ASSIGNMENT CALCULUS AB SUMMER ASSIGNMENT Dear Prospective Calculus Students, Welcome to AP Calculus. This is a rigorous, yet rewarding, math course. Most of the students who have taken Calculus in the past are amazed

More information

December Exam Summary

December Exam Summary December Exam Summary 1 Lines and Distances 1.1 List of Concepts Distance between two numbers on the real number line or on the Cartesian Plane. Increments. If A = (a 1, a 2 ) and B = (b 1, b 2 ), then

More information

C-1. Snezana Lawrence

C-1. Snezana Lawrence C-1 Snezana Lawrence These materials have been written by Dr. Snezana Lawrence made possible by funding from Gatsby Technical Education projects (GTEP) as part of a Gatsby Teacher Fellowship ad-hoc bursary

More information

Calculus Honors and Introduction to Calculus

Calculus Honors and Introduction to Calculus Calculus Honors and Introduction to Calculus Name: This summer packet is for students entering Calculus Honors or Introduction to Calculus in the Fall of 015. The material represents concepts and skills

More information

V. Graph Sketching and Max-Min Problems

V. Graph Sketching and Max-Min Problems V. Graph Sketching and Max-Min Problems The signs of the first and second derivatives of a function tell us something about the shape of its graph. In this chapter we learn how to find that information.

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

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Basic Concepts Paul Dawkins Table of Contents Preface... Basic Concepts... 1 Introduction... 1 Definitions... Direction Fields... 8 Final Thoughts...19 007 Paul Dawkins i http://tutorial.math.lamar.edu/terms.aspx

More information

2.2 The derivative as a Function

2.2 The derivative as a Function 2.2 The derivative as a Function Recall: The derivative of a function f at a fixed number a: f a f a+h f(a) = lim h 0 h Definition (Derivative of f) For any number x, the derivative of f is f x f x+h f(x)

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Functions

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Functions ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 2017/2018 DR. ANTHONY BROWN 4. Functions 4.1. What is a Function: Domain, Codomain and Rule. In the course so far, we

More information

8.5 Taylor Polynomials and Taylor Series

8.5 Taylor Polynomials and Taylor Series 8.5. TAYLOR POLYNOMIALS AND TAYLOR SERIES 50 8.5 Taylor Polynomials and Taylor Series Motivating Questions In this section, we strive to understand the ideas generated by the following important questions:

More information

Section 2.8: The Power Chain Rule

Section 2.8: The Power Chain Rule calculus sin frontera Section 2.8: The Power Chain Rule I want to see what happens when I take a function I know, like g(x) = x 2, and raise it to a power, f (x) = ( x 2 ) a : f (x) = ( x 2 ) a = ( x 2

More information

Interpreting Derivatives, Local Linearity, Newton s

Interpreting Derivatives, Local Linearity, Newton s Unit #4 : Method Interpreting Derivatives, Local Linearity, Newton s Goals: Review inverse trigonometric functions and their derivatives. Create and use linearization/tangent line formulas. Investigate

More information

Differentiation. 1. What is a Derivative? CHAPTER 5

Differentiation. 1. What is a Derivative? CHAPTER 5 CHAPTER 5 Differentiation Differentiation is a technique that enables us to find out how a function changes when its argument changes It is an essential tool in economics If you have done A-level maths,

More information

MATH 1130 Exam 1 Review Sheet

MATH 1130 Exam 1 Review Sheet MATH 1130 Exam 1 Review Sheet The Cartesian Coordinate Plane The Cartesian Coordinate Plane is a visual representation of the collection of all ordered pairs (x, y) where x and y are real numbers. This

More information

Making Piecewise Functions Continuous and Differentiable by Dave Slomer

Making Piecewise Functions Continuous and Differentiable by Dave Slomer Making Piecewise Functions Continuous and Differentiable by Dave Slomer Piecewise-defined functions are applied in areas such as Computer Assisted Drawing (CAD). Many piecewise functions in textbooks are

More information

LIMITS AND DERIVATIVES

LIMITS AND DERIVATIVES 2 LIMITS AND DERIVATIVES LIMITS AND DERIVATIVES 1. Equation In Section 2.7, we considered the derivative of a function f at a fixed number a: f '( a) lim h 0 f ( a h) f ( a) h In this section, we change

More information

STEP Support Programme. Pure STEP 1 Questions

STEP Support Programme. Pure STEP 1 Questions STEP Support Programme Pure STEP 1 Questions 2012 S1 Q4 1 Preparation Find the equation of the tangent to the curve y = x at the point where x = 4. Recall that x means the positive square root. Solve the

More information

Lecture 5 - Logarithms, Slope of a Function, Derivatives

Lecture 5 - Logarithms, Slope of a Function, Derivatives Lecture 5 - Logarithms, Slope of a Function, Derivatives 5. Logarithms Note the graph of e x This graph passes the horizontal line test, so f(x) = e x is one-to-one and therefore has an inverse function.

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, you will be epected to have attempted every problem. These skills are all different tools that you will pull out of your toolbo this

More information

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

More information

Section 1.x: The Variety of Asymptotic Experiences

Section 1.x: The Variety of Asymptotic Experiences calculus sin frontera Section.x: The Variety of Asymptotic Experiences We talked in class about the function y = /x when x is large. Whether you do it with a table x-value y = /x 0 0. 00.0 000.00 or with

More information

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions For each question, there is a model solution (showing you the level of detail I expect on the exam) and then below

More information

Unit #3 : Differentiability, Computing Derivatives, Trig Review

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

More information

DIFFERENTIATION AND INTEGRATION PART 1. Mr C s IB Standard Notes

DIFFERENTIATION AND INTEGRATION PART 1. Mr C s IB Standard Notes DIFFERENTIATION AND INTEGRATION PART 1 Mr C s IB Standard Notes In this PDF you can find the following: 1. Notation 2. Keywords Make sure you read through everything and the try examples for yourself before

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

8.7 MacLaurin Polynomials

8.7 MacLaurin Polynomials 8.7 maclaurin polynomials 67 8.7 MacLaurin Polynomials In this chapter you have learned to find antiderivatives of a wide variety of elementary functions, but many more such functions fail to have an antiderivative

More information

Graphical Analysis and Errors MBL

Graphical Analysis and Errors MBL Graphical Analysis and Errors MBL I Graphical Analysis Graphs are vital tools for analyzing and displaying data Graphs allow us to explore the relationship between two quantities -- an independent variable

More information

1.4 Techniques of Integration

1.4 Techniques of Integration .4 Techniques of Integration Recall the following strategy for evaluating definite integrals, which arose from the Fundamental Theorem of Calculus (see Section.3). To calculate b a f(x) dx. Find a function

More information

MITOCW big_picture_derivatives_512kb-mp4

MITOCW big_picture_derivatives_512kb-mp4 MITOCW big_picture_derivatives_512kb-mp4 PROFESSOR: OK, hi. This is the second in my videos about the main ideas, the big picture of calculus. And this is an important one, because I want to introduce

More information

Calculus II Lecture Notes

Calculus II Lecture Notes Calculus II Lecture Notes David M. McClendon Department of Mathematics Ferris State University 206 edition Contents Contents 2 Review of Calculus I 5. Limits..................................... 7.2 Derivatives...................................3

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, it is my epectation that you will have this packet completed. You will be way behind at the beginning of the year if you haven t attempted

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES We have: Seen how to interpret derivatives as slopes and rates of change Seen how to estimate derivatives of functions given by tables of values Learned how

More information

Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document

Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document Background knowledge: (a) The arithmetic of integers (including HCFs and LCMs), of fractions, and of real numbers.

More information

AP Calculus. Derivatives.

AP Calculus. Derivatives. 1 AP Calculus Derivatives 2015 11 03 www.njctl.org 2 Table of Contents Rate of Change Slope of a Curve (Instantaneous ROC) Derivative Rules: Power, Constant, Sum/Difference Higher Order Derivatives Derivatives

More information

Core 3 (A2) Practice Examination Questions

Core 3 (A2) Practice Examination Questions Core 3 (A) Practice Examination Questions Trigonometry Mr A Slack Trigonometric Identities and Equations I know what secant; cosecant and cotangent graphs look like and can identify appropriate restricted

More information

3.1 Derivative Formulas for Powers and Polynomials

3.1 Derivative Formulas for Powers and Polynomials 3.1 Derivative Formulas for Powers and Polynomials First, recall that a derivative is a function. We worked very hard in 2.2 to interpret the derivative of a function visually. We made the link, in Ex.

More information

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim MATH 90 - The Derivative as a Function - Section 3.2 The derivative of f is the function f x lim h 0 f x h f x h for all x for which the limit exists. The notation f x is read "f prime of x". Note that

More information

DuVal High School Summer Review Packet AP Calculus

DuVal High School Summer Review Packet AP Calculus DuVal High School Summer Review Packet AP Calculus Welcome to AP Calculus AB. This packet contains background skills you need to know for your AP Calculus. My suggestion is, you read the information and

More information

AP Calculus Summer Prep

AP Calculus Summer Prep AP Calculus Summer Prep Topics from Algebra and Pre-Calculus (Solutions are on the Answer Key on the Last Pages) The purpose of this packet is to give you a review of basic skills. You are asked to have

More information

MATH 116, LECTURE 13, 14 & 15: Derivatives

MATH 116, LECTURE 13, 14 & 15: Derivatives MATH 116, LECTURE 13, 14 & 15: Derivatives 1 Formal Definition of the Derivative We have seen plenty of limits so far, but very few applications. In particular, we have seen very few functions for which

More information

Math 131. The Derivative and the Tangent Line Problem Larson Section 2.1

Math 131. The Derivative and the Tangent Line Problem Larson Section 2.1 Math 131. The Derivative and the Tangent Line Problem Larson Section.1 From precalculus, the secant line through the two points (c, f(c)) and (c +, f(c + )) is given by m sec = rise f(c + ) f(c) f(c +

More information

Parabolas and lines

Parabolas and lines Parabolas and lines Study the diagram at the right. I have drawn the graph y = x. The vertical line x = 1 is drawn and a number of secants to the parabola are drawn, all centred at x=1. By this I mean

More information

University of Toronto MAT137Y1 Calculus! Test 2 1 December 2017 Time: 110 minutes

University of Toronto MAT137Y1 Calculus! Test 2 1 December 2017 Time: 110 minutes University of Toronto MAT137Y1 Calculus! Test 2 1 December 2017 Time: 110 minutes Please complete this cover page with ALL CAPITAL LETTERS. Last name......................................................................................

More information

If a function has an inverse then we can determine the input if we know the output. For example if the function

If a function has an inverse then we can determine the input if we know the output. For example if the function 1 Inverse Functions We know what it means for a relation to be a function. Every input maps to only one output, it passes the vertical line test. But not every function has an inverse. A function has no

More information

Sin, Cos and All That

Sin, Cos and All That Sin, Cos and All That James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 9, 2017 Outline 1 Sin, Cos and all that! 2 A New Power Rule 3

More information

The Big 50 Revision Guidelines for C3

The Big 50 Revision Guidelines for C3 The Big 50 Revision Guidelines for C3 If you can understand all of these you ll do very well 1. Know how to recognise linear algebraic factors, especially within The difference of two squares, in order

More information

Integrals. D. DeTurck. January 1, University of Pennsylvania. D. DeTurck Math A: Integrals 1 / 61

Integrals. D. DeTurck. January 1, University of Pennsylvania. D. DeTurck Math A: Integrals 1 / 61 Integrals D. DeTurck University of Pennsylvania January 1, 2018 D. DeTurck Math 104 002 2018A: Integrals 1 / 61 Integrals Start with dx this means a little bit of x or a little change in x If we add up

More information

BHASVIC MαTHS. Skills 1

BHASVIC MαTHS. Skills 1 Skills 1 Normally we work with equations in the form y = f(x) or x + y + z = 10 etc. These types of equations are called Cartesian Equations all the variables are grouped together into one equation, and

More information

New test - November 03, 2015 [79 marks]

New test - November 03, 2015 [79 marks] New test - November 03, 05 [79 marks] Let f(x) = e x cosx, x. a. Show that f (x) = e x ( cosx sin x). correctly finding the derivative of e x, i.e. e x correctly finding the derivative of cosx, i.e. sin

More information

Newbattle Community High School Higher Mathematics. Key Facts Q&A

Newbattle Community High School Higher Mathematics. Key Facts Q&A Key Facts Q&A Ways of using this booklet: 1) Write the questions on cards with the answers on the back and test yourself. ) Work with a friend who is also doing to take turns reading a random question

More information

SANDERSON HIGH SCHOOL AP CALCULUS AB/BC SUMMER REVIEW PACKET

SANDERSON HIGH SCHOOL AP CALCULUS AB/BC SUMMER REVIEW PACKET SANDERSON HIGH SCHOOL AP CALCULUS AB/BC SUMMER REVIEW PACKET 017-018 Name: 1. This packet is to be handed in on Monday August 8, 017.. All work must be shown on separate paper attached to the packet. 3.

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

MATH 1902: Mathematics for the Physical Sciences I

MATH 1902: Mathematics for the Physical Sciences I MATH 1902: Mathematics for the Physical Sciences I Dr Dana Mackey School of Mathematical Sciences Room A305 A Email: Dana.Mackey@dit.ie Dana Mackey (DIT) MATH 1902 1 / 46 Module content/assessment Functions

More information

Candidates are expected to have available a calculator. Only division by (x + a) or (x a) will be required.

Candidates are expected to have available a calculator. Only division by (x + a) or (x a) will be required. Revision Checklist Unit C2: Core Mathematics 2 Unit description Algebra and functions; coordinate geometry in the (x, y) plane; sequences and series; trigonometry; exponentials and logarithms; differentiation;

More information

HEINEMANN HIGHER CHECKLIST

HEINEMANN HIGHER CHECKLIST St Ninian s High School HEINEMANN HIGHER CHECKLIST I understand this part of the course = I am unsure of this part of the course = Name Class Teacher I do not understand this part of the course = Topic

More information

MATH 408N PRACTICE FINAL

MATH 408N PRACTICE FINAL 05/05/2012 Bormashenko MATH 408N PRACTICE FINAL Name: TA session: Show your work for all the problems. Good luck! (1) Calculate the following limits, using whatever tools are appropriate. State which results

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS 1.2 MATHEMATICAL MODELS: A CATALOG OF ESSENTIAL FUNCTIONS In this section, we will learn about: The purpose of mathematical models. MATHEMATICAL MODELS A mathematical

More information

RATES OF CHANGE. A violin string vibrates. The rate of vibration can be measured in cycles per second (c/s),;

RATES OF CHANGE. A violin string vibrates. The rate of vibration can be measured in cycles per second (c/s),; DISTANCE, TIME, SPEED AND SUCH RATES OF CHANGE Speed is a rate of change. It is a rate of change of distance with time and can be measured in miles per hour (mph), kilometres per hour (km/h), meters per

More information

Anticipated workload: 6 hours Summer Packets are due Thursday, August 24, 2017 Summer Assignment Quiz (including a unit circle quiz) the same day

Anticipated workload: 6 hours Summer Packets are due Thursday, August 24, 2017 Summer Assignment Quiz (including a unit circle quiz) the same day Dear AP Calculus BC student, Hello and welcome to the wonderful world of AP Calculus! I am excited that you have elected to take an accelerated mathematics course such as AP Calculus BC and would like

More information

2 Recollection of elementary functions. II

2 Recollection of elementary functions. II Recollection of elementary functions. II Last updated: October 5, 08. In this section we continue recollection of elementary functions. In particular, we consider exponential, trigonometric and hyperbolic

More information

Chapter 1: January 26 January 30

Chapter 1: January 26 January 30 Chapter : January 26 January 30 Section.7: Inequalities As a diagnostic quiz, I want you to go through the first ten problems of the Chapter Test on page 32. These will test your knowledge of Sections.

More information

September Math Course: First Order Derivative

September Math Course: First Order Derivative September Math Course: First Order Derivative Arina Nikandrova Functions Function y = f (x), where x is either be a scalar or a vector of several variables (x,..., x n ), can be thought of as a rule which

More information

FINAL - PART 1 MATH 150 SPRING 2017 KUNIYUKI PART 1: 135 POINTS, PART 2: 115 POINTS, TOTAL: 250 POINTS No notes, books, or calculators allowed.

FINAL - PART 1 MATH 150 SPRING 2017 KUNIYUKI PART 1: 135 POINTS, PART 2: 115 POINTS, TOTAL: 250 POINTS No notes, books, or calculators allowed. Math 150 Name: FINAL - PART 1 MATH 150 SPRING 2017 KUNIYUKI PART 1: 135 POINTS, PART 2: 115 POINTS, TOTAL: 250 POINTS No notes, books, or calculators allowed. 135 points: 45 problems, 3 pts. each. You

More information

Infinite series, improper integrals, and Taylor series

Infinite series, improper integrals, and Taylor series Chapter 2 Infinite series, improper integrals, and Taylor series 2. Introduction to series In studying calculus, we have explored a variety of functions. Among the most basic are polynomials, i.e. functions

More information

DRAFT - Math 101 Lecture Note - Dr. Said Algarni

DRAFT - Math 101 Lecture Note - Dr. Said Algarni 2 Limits 2.1 The Tangent Problems The word tangent is derived from the Latin word tangens, which means touching. A tangent line to a curve is a line that touches the curve and a secant line is a line that

More information

Review for Final Exam, MATH , Fall 2010

Review for Final Exam, MATH , Fall 2010 Review for Final Exam, MATH 170-002, Fall 2010 The test will be on Wednesday December 15 in ILC 404 (usual class room), 8:00 a.m - 10:00 a.m. Please bring a non-graphing calculator for the test. No other

More information

Math 121: Calculus 1 - Fall 2013/2014 Review of Precalculus Concepts

Math 121: Calculus 1 - Fall 2013/2014 Review of Precalculus Concepts Introduction Math 121: Calculus 1 - Fall 201/2014 Review of Precalculus Concepts Welcome to Math 121 - Calculus 1, Fall 201/2014! This problems in this packet are designed to help you review the topics

More information

Announcements. Topics: Homework: - sections 4.5 and * Read these sections and study solved examples in your textbook!

Announcements. Topics: Homework: - sections 4.5 and * Read these sections and study solved examples in your textbook! Announcements Topics: - sections 4.5 and 5.1-5.5 * Read these sections and study solved examples in your textbook! Homework: - review lecture notes thoroughly - work on practice problems from the textbook

More information

Limit. Chapter Introduction

Limit. Chapter Introduction Chapter 9 Limit Limit is the foundation of calculus that it is so useful to understand more complicating chapters of calculus. Besides, Mathematics has black hole scenarios (dividing by zero, going to

More information

Inverse Relations. 5 are inverses because their input and output are switched. For instance: f x x. x 5. f 4

Inverse Relations. 5 are inverses because their input and output are switched. For instance: f x x. x 5. f 4 Inverse Functions Inverse Relations The inverse of a relation is the set of ordered pairs obtained by switching the input with the output of each ordered pair in the original relation. (The domain of the

More information

Math 121: Calculus 1 - Fall 2012/2013 Review of Precalculus Concepts

Math 121: Calculus 1 - Fall 2012/2013 Review of Precalculus Concepts Introduction Math 11: Calculus 1 - Fall 01/01 Review of Precalculus Concepts Welcome to Math 11 - Calculus 1, Fall 01/01! This problems in this packet are designed to help you review the topics from Algebra

More information

Introductory Calculus

Introductory Calculus Introductory Calculus Module 3 Grade 12 TEACHER DOCUMENT The following persons formed the Malati Calculus Working Group and were involved in developing this module: Kate Hudson Kenneth Adonis Godfrey Sethole

More information

2 2xdx. Craigmount High School Mathematics Department

2 2xdx. Craigmount High School Mathematics Department Π 5 3 xdx 5 cosx 4 6 3 8 Help Your Child With Higher Maths Introduction We ve designed this booklet so that you can use it with your child throughout the session, as he/she moves through the Higher course,

More information

HSC Marking Feedback 2017

HSC Marking Feedback 2017 HSC Marking Feedback 017 Mathematics Extension 1 Written Examination Question 11 Part (a) The large majority of responses showed correct substitution into the formula x = kx +lx 1 k+l given on the Reference

More information

College Algebra Through Problem Solving (2018 Edition)

College Algebra Through Problem Solving (2018 Edition) City University of New York (CUNY) CUNY Academic Works Open Educational Resources Queensborough Community College Winter 1-25-2018 College Algebra Through Problem Solving (2018 Edition) Danielle Cifone

More information

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions.

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions. TOPIC 3 Taylor polynomials Main ideas. Linear approximating functions: Review Approximating polynomials Key formulas: P n (x) =a 0 + a (x x )+ + a n (x x ) n P n (x + x) =a 0 + a ( x)+ + a n ( x) n where

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

CHAPTER ONE FUNCTIONS AND GRAPHS. In everyday life, many quantities depend on one or more changing variables eg:

CHAPTER ONE FUNCTIONS AND GRAPHS. In everyday life, many quantities depend on one or more changing variables eg: CHAPTER ONE FUNCTIONS AND GRAPHS 1.0 Introduction to Functions In everyday life, many quantities depend on one or more changing variables eg: (a) plant growth depends on sunlight and rainfall (b) speed

More information

function independent dependent domain range graph of the function The Vertical Line Test

function independent dependent domain range graph of the function The Vertical Line Test Functions A quantity y is a function of another quantity x if there is some rule (an algebraic equation, a graph, a table, or as an English description) by which a unique value is assigned to y by a corresponding

More information

Tangent Lines and Derivatives

Tangent Lines and Derivatives The Derivative and the Slope of a Graph Tangent Lines and Derivatives Recall that the slope of a line is sometimes referred to as a rate of change. In particular, we are referencing the rate at which the

More information

MITOCW MITRES18_005S10_DerivOfSinXCosX_300k_512kb-mp4

MITOCW MITRES18_005S10_DerivOfSinXCosX_300k_512kb-mp4 MITOCW MITRES18_005S10_DerivOfSinXCosX_300k_512kb-mp4 PROFESSOR: OK, this lecture is about the slopes, the derivatives, of two of the great functions of mathematics: sine x and cosine x. Why do I say great

More information

MODULE 1: FOUNDATIONS OF MATHEMATICS

MODULE 1: FOUNDATIONS OF MATHEMATICS MODULE 1: FOUNDATIONS OF MATHEMATICS GENERAL OBJECTIVES On completion of this Module, students should: 1. acquire competency in the application of algebraic techniques; 2. appreciate the role of exponential

More information

Roots and Coefficients of a Quadratic Equation Summary

Roots and Coefficients of a Quadratic Equation Summary Roots and Coefficients of a Quadratic Equation Summary For a quadratic equation with roots α and β: Sum of roots = α + β = and Product of roots = αβ = Symmetrical functions of α and β include: x = and

More information

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x)

Aim: How do we prepare for AP Problems on limits, continuity and differentiability? f (x) Name AP Calculus Date Supplemental Review 1 Aim: How do we prepare for AP Problems on limits, continuity and differentiability? Do Now: Use the graph of f(x) to evaluate each of the following: 1. lim x

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

More information