Numerical Solution of Differential Equations

Size: px
Start display at page:

Download "Numerical Solution of Differential Equations"

Transcription

1 Numerical Solution of Differential Equations Drs. Constance Schober & Alvaro Islas Tomasz H. Wlodarczyk Applications of Calculus I

2 Competition in Population Models The simplest population model assumes that dp/dt, the rate of growth, is proportional to the population P. This assumption is valid for small populations, when there is plenty of resources. But as populations increase and resources diminish, competition among individuals has to be taken into account. A simple model that includes competition is given by dp dt = kp(t) αp 2 (t) where α is a small interaction parameter.

3 One Week Project Assume, as before, that the initial population P 0 = 1, and a two percent growth, k = Set the interaction parameter α = Write Euler s method for this equation. 2 Use this method to advance the solution from t = 0 to t = 500 with the three different step sizes: h 1 = 100, h 2 = 50, and h 3 = 25. Call these numerical solutions P 1, P 2 and P 3, respectively, and make a table similar to the one given in class. 3 Graph all three solutions in a single graph. Use a dotted line for P 1, a dashed line for P 2 and a solid line for P 3. 4 What limit are these populations approaching? 5 Give an argument to explain the shape of the solutions and the fact that they approach a limit.

4 Solution: Problem #1 For h = 100 Euler s method looks like ( ) t 1 = t 0 + h = 100 P 1 = P 0 + h 0.02P P0 2 = 2.9 ( ) t 2 = t 1 + h = 200 P 2 = P 1 + h 0.02P P1 2 = 7.9 ( ) t 3 = t 1 + h = 300 P 3 = P 1 + h 0.02P P2 2 = 17.4 ( ) t 4 = t 1 + h = 400 P 4 = P 1 + h 0.02P P3 2 = 21.9 ( ) t 5 = t 1 + h = 500 P 5 = P 1 + h 0.02P P4 2 = 17.7

5 Solution: Problem #2 n x n P 1 n x n P 2 n x n P Table: Euler s method applied to P (t) = kp αp 2, P(0) = 1 with h = 100 (P 1 ), h = 50 (P 2 ) and h = 25 (P 3 ).

6 Solution: Problem #2 Continued n x n P 1 n x n P 2 n x n P Table: Euler s method applied to P (t) = kp αp 2, P(0) = 1 with h = 100 (P 1 ), h = 50 (P 2 ) and h = 25 (P 3 ).

7 Solution: Problem #2 Continued n x n P 1 n x n P 2 n x n P Table: Euler s method applied to P (t) = kp αp 2, P(0) = 1 with h = 100 (P 1 ), h = 50 (P 2 ) and h = 25 (P 3 ).

8 Solution: Problem # Population Time Figure: Numerical solutions P 1 (h = 100, dotted line), P 2 (h = 50, dashed line), and P 3 (h = 25, solid line).

9 Solution: Problem #4 The population P approaches 20 as t approaches 500.

10 Solution: Problem #5 Initially the population is small so it seems as if there are unlimited resources and the growth looks like before, without competition. As the population increases, competition slows the growth and an equilibrium is reached.

11 Time for Some Real Witchcraft

12 Solution: Problem #5 Extended Notice that if P = kp αp 2 we can also write P = P(k αp) which suggests two critical point of P. It is also not difficult to observe that for all 0 < P < k/α function P is increasing and for P > k/α function P is decreasing. This suggests that function P converges to k/α as t, a phenomenon which you observed in the project where k/α = 20.

13 P as a Function of P dp/dt P Figure: Monotonicity of P.

14 Solution: Problem #5 Extended We can learn more about the solution of this IVP by analyzing second derivative of P. By the chain rule we have that P = kp 2αPP = P(k αp)(k 2αP) suggesting that there is an inflection point for that value of t for which P = k/(2α). In our case k/(2α) = 10.

15 P as a Function of P 4 x d 2 P/dt P Figure: Concavity P.

16 Solution: Problem #5 Extended From the plot of the second derivative we see that our solution is concave upward whenever 0 < P < k/(2α) or P > k/α. It is concave downward whenever k/(2α) < P < k/α. This can be visualized by plotting solutions to our problem for different initial populations.

17 P as a Function of t Population Time Figure: P(t) for different initial data.

18 Euler s Method Error Let s go back to the original population problem dp dt = 0.02 P, P(0) = 1 The approximate solutions depend on the time step h. In fact, from the table, we see that the error is proportional to h, it doubles with h. h N P N Error Table: Error at t = 100 for Euler s method.

19 Euler s Method Error Continued This is not an attractive feature of Euler s method, if we are going to double our effort, we would like to get more out of it. Not only that, the table also shows that we need 160 steps to achieve an error less than 0.1. If we were looking for an error less than 0.001, we would need at least 100 times more steps, that is, over steps! Way too much.

20 Improving Euler s Method In class we discussed how given some fixed data we can choose different linear approximations to make an estimate and how sometimes taking the average of two of them works better. For example, consider the following population:

21 Improving Euler s Method Continued Population Time Figure: Population curve with two linear approximations

22 Improving Euler s Method Continued If we want to estimate the population at either 1984 or 1986, we could use either linear approximation or we could use their average, marked by the dashed straight line.

23 Improving Euler s Method Continued Population Time Figure: Population curve and the average linear approximation

24 Improving Euler s Method Continued Let s apply the average idea to Euler s method. Euler s method estimates the solution at x n+1 using the slope (derivative) at the previous point x n. Now we want to use the average of the slopes at the points x n and x n+1. That is, y n+1 = y n + h F(x n, y n ) + F(x n+1, y n+1 ) 2 This should provide a better approximation, except that this equation is much more difficult to use since it has the quantity we want to estimate, y n+1, on both sides of the equation, which in general, it cannot be solved for it and it has to be numerically estimated. This defeats the simplicity of linear approximations.

25 Improving Euler s Method Continued To resolve this difficulty, we are going to make use of the original Euler s method to get a first approximation of y n+1 and then use the average formula to get a second, more precise, approximation. That is, the new method requires two computations for every step: First step: k = y n + h F(x n, y n ) Second step: y n+1 = y n + h F(x n, y n ) + F (x n+1, k) 2 This method is known as the modified Euler s method.

26 The Modified Euler s Method Example 1 Let s apply the modified Euler s method to our old population problem. The table shows the errors for the same values of h use before. h N P N Error MP N Error Table: Error at t = 100 for Euler s and modified Euler s methods.

27 The Modified Euler s Method Example 1 Continued With N = 160 the error given by the modified Euler s method is less than To achieve the same accuracy using Euler s method, we would need N = Too many steps for our taste!

28 Predator Prey

29 Predator Pray Population Problem Let s apply these ideas to a more interesting problem, more subtable for Halloween. Suppose you have populations of rabbits and wolves sharing the same area and suppose the wolves survive only by eating rabbits. How do we describe their population growth?

30 Predator Pray Population Problem Continued In the absence of wolves, the rabbit population will increase proportionally to their population. But in the presence of wolves, it will decrease proportionally to the number of encounters between rabbits and wolves. On the other hand, in the absence of rabbits, the wolf population will decrease proportionally to their population. But in the presence of rabbits, it will increase proportionally to the number of encounters between rabbits and wolves.

31 Governing Equations To write these observations precisely, let R and W be the rabbit and wolf populations. Then the IVP associated with this problem can be written as a system of equations dw dt dr dt = k w W + e αrw W (t 0 ) = W 0 = k r R αrw R(t 0 ) = R 0 Here k w and k r are their rates of growth, α and e are measures of how often they cross their paths and how efficient are the wolves at catching rabbits.

32 Solution to the Predator Prey Problem To apply the modified Euler s method, it is useful to think of the wolf and rabbit population as a point P moving an the WR coordinate system as a function of t.

33 Solution to the Predator Prey Problem Continued Rabits Wolfes Figure: Wolf and Rabbit Populations

34 Solution to the Predator Prey Problem Continued So let P(t) = ( W (t) R(t) Then P satisfies the following IVP: ). where F(t, P) = dp dt = F(t, P), P(0) = P 0 ( kw W + eαrw k r R αrw ) and P 0 = ( W0 R 0 ).

35 Solution to the Predator Prey Problem Continued Applying the modified Euler s method we get after n steps ( ) ( ) ( ) K1 Wn kw W = + h n + eαr n W n K 2 R n k r R n αr n W n ( ) ( ) Wn+1 Wn = + h ( ) kw W n + eαr n W n R n+1 R n 2 k r R n αr n W n ( ) kw K 1 + eαk 2 K 1 + h 2 k r K 2 αk 2 K 1

36 Solution to the Predator Prey Problem Continued Let s look at the graph of the solution. Here we see that at first the rabbit population increases fast, while the wolf population increases slowly. At some point, the rabbit population ceases to growth and the wolf population begins to grow up to the point where they almost eat all the rabbits at which point the wolf population collapses. And the cycle repeats itself.

37 Solution to the Predator Prey Problem Continued Rabits Wolves Figure: Wolf and Rabbit Populations

38 Water Waves So far, we have seen examples where there is only one independent variable (t) and one or two dependent variables. But the same ideas apply if we have more independent variables, such as time and space. In that case we have surfaces representing the solutions. Consider a model equation that governs the motion of one directional water waves: ( ) u t = i u xx + 2 u 2 u, u(x, t = 0) = u 0 (x) where u(x, t) is the surface elevation.

39 Water Waves Continued To apply techniques like those we just described we need to discretized the second derivative with respect to x. One such discretization gives the following system of equations [ ] u2 2u 1 + u 0 u 1t = i x u 1 2 u 1 u nt. = [ un+1 2u n + u n 1 i x u n 2 u n ] u N t. = [ un+1 2u N + u N 1 i x u N 2 u N ]

40 Water Waves Continued For different initial conditions we can obtain a number of solutions. Here are just a couple examples Space Time Figure: Water Waves

41 Water Waves Continued Space 0 Time Figure: Water Waves

42 Movie

43 Trick or Treat!!!

44 Happy Halloween Enjoy your Halloween! Play it safe.

CALCULUS BC., where P is the number of bears at time t in years. dt (a) Given P (i) Find lim Pt.

CALCULUS BC., where P is the number of bears at time t in years. dt (a) Given P (i) Find lim Pt. CALCULUS BC WORKSHEET 1 ON LOGISTIC GROWTH NAME Do not use your calculator. 1. Suppose the population of bears in a national park grows according to the logistic differential equation 5P 0.00P, where P

More information

AP Calculus Worksheet: Chapter 2 Review Part I

AP Calculus Worksheet: Chapter 2 Review Part I AP Calculus Worksheet: Chapter 2 Review Part I 1. Given y = f(x), what is the average rate of change of f on the interval [a, b]? What is the graphical interpretation of your answer? 2. The derivative

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION Many applications of calculus depend on our ability to deduce facts about a function f from information concerning its derivatives. APPLICATIONS

More information

The functions in all models depend on two variables: time t and spatial variable x, (x, y) or (x, y, z).

The functions in all models depend on two variables: time t and spatial variable x, (x, y) or (x, y, z). Review of Multi-variable calculus: The functions in all models depend on two variables: time t and spatial variable x, (x, y) or (x, y, z). The spatial variable represents the environment where the species

More information

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method)

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method) Section 2.7 Euler s Method (Computer Approximation) Key Terms/ Ideas: Numerical method for approximating the solution of an IVP Linear Approximation; Tangent Line Euler Algorithm (the simplest approximation

More information

April 9, 2009 Name The problems count as marked. The total number of points available is 160. Throughout this test, show your work.

April 9, 2009 Name The problems count as marked. The total number of points available is 160. Throughout this test, show your work. April 9, 009 Name The problems count as marked The total number of points available is 160 Throughout this test, show your work 1 (15 points) Consider the cubic curve f(x) = x 3 + 3x 36x + 17 (a) Build

More information

R Function Tutorial in Module 8.2

R Function Tutorial in Module 8.2 R Function Tutorial in Module 8.2 Introduction to Computational Science: Modeling and Simulation for the Sciences, 2 nd Edition Angela B. Shiflet and George W. Shiflet Wofford College 2014 by Princeton

More information

MA Lesson 25 Notes Section 5.3 (2 nd half of textbook)

MA Lesson 25 Notes Section 5.3 (2 nd half of textbook) MA 000 Lesson 5 Notes Section 5. ( nd half of tetbook) Higher Derivatives: In this lesson, we will find a derivative of a derivative. A second derivative is a derivative of the first derivative. A third

More information

Math 122 Fall Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations

Math 122 Fall Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations 1 Math 122 Fall 2008 Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations The purpose of this handout is to review the techniques that you will learn for

More information

Math 108, Solution of Midterm Exam 3

Math 108, Solution of Midterm Exam 3 Math 108, Solution of Midterm Exam 3 1 Find an equation of the tangent line to the curve x 3 +y 3 = xy at the point (1,1). Solution. Differentiating both sides of the given equation with respect to x,

More information

Final Exam Review (and Quiz #12)

Final Exam Review (and Quiz #12) Final Exam Review (and Quiz #1) Applied Calculus Math 13.3 Fall 11 Your final exam is scheduled for Saturday, December 17, at 9: a.m. in our usual room. You may bring an 1 11 inch, one-sided, sheet of

More information

Pre-Test Developed by Sean Moroney and James Petersen UNDERSTANDING THE VELOCITY CURVE. The Velocity Curve in Calculus

Pre-Test Developed by Sean Moroney and James Petersen UNDERSTANDING THE VELOCITY CURVE. The Velocity Curve in Calculus in Calculus UNDERSTANDING THE VELOCITY CURVE Pre-Test Developed by Sean Moroney and James Petersen Introductory Calculus - in Calculus the Pre-Test Learning about the Velocity Curve During the course of

More information

dt 2 The Order of a differential equation is the order of the highest derivative that occurs in the equation. Example The differential equation

dt 2 The Order of a differential equation is the order of the highest derivative that occurs in the equation. Example The differential equation Lecture 18 : Direction Fields and Euler s Method A Differential Equation is an equation relating an unknown function and one or more of its derivatives. Examples Population growth : dp dp = kp, or = kp

More information

Calculus for the Life Sciences

Calculus for the Life Sciences Calculus for the Life Sciences Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center San Diego State University

More information

Math 2930 Worksheet Introduction to Differential Equations. What is a Differential Equation and what are Solutions?

Math 2930 Worksheet Introduction to Differential Equations. What is a Differential Equation and what are Solutions? Math 2930 Worksheet Introduction to Differential Equations Week 1 January 25, 2019 What is a Differential Equation and what are Solutions? A differential equation is an equation that relates an unknown

More information

Interacting Populations.

Interacting Populations. Chapter 2 Interacting Populations. 2.1 Predator/ Prey models Suppose we have an island where some rabbits and foxes live. Left alone the rabbits have a growth rate of 10 per 100 per month. Unfortunately

More information

Practice A Exam 3. November 14, 2018

Practice A Exam 3. November 14, 2018 Department of Mathematics University of Notre Dame Math 10250 Elem. of Calc. I Name: Instructor: Practice A Exam November 14, 2018 This exam is in 2 parts on 11 pages and contains 15 problems worth a total

More information

Lecture 26: Section 5.3 Higher Derivatives and Concavity

Lecture 26: Section 5.3 Higher Derivatives and Concavity L26-1 Lecture 26: Section 5.3 Higher Derivatives and Concavity ex. Let f(x) = ln(e 2x + 1) 1) Find f (x). 2) Find d dx [f (x)]. L26-2 We define f (x) = Higher Order Derivatives For y = f(x), we can write

More information

Learning Target: I can sketch the graphs of rational functions without a calculator. a. Determine the equation(s) of the asymptotes.

Learning Target: I can sketch the graphs of rational functions without a calculator. a. Determine the equation(s) of the asymptotes. Learning Target: I can sketch the graphs of rational functions without a calculator Consider the graph of y= f(x), where f(x) = 3x 3 (x+2) 2 a. Determine the equation(s) of the asymptotes. b. Find the

More information

AB Calc Sect Notes Monday, November 28, 2011

AB Calc Sect Notes Monday, November 28, 2011 Assignments & Opportunities: I will TRY to have Sketchpad projects back to you next Monday or Tuesday. Tomorrow: p268; 5,22,27,45 & p280; 9 AB Calc Sect 4.3 - Notes Monday, November 28, 2011 Today's Topics

More information

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method)

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method) Section 2.7 Euler s Method (Computer Approximation) Key Terms/ Ideas: Numerical method for approximating the solution of an IVP Linear Approximation; Tangent Line Euler Algorithm (the simplest approximation

More information

Bees and Flowers. Unit 1: Qualitative and Graphical Approaches

Bees and Flowers. Unit 1: Qualitative and Graphical Approaches Bees and Flowers Often scientists use rate of change equations in their stu of population growth for one or more species. In this problem we stu systems of rate of change equations designed to inform us

More information

Suppose that f is continuous on [a, b] and differentiable on (a, b). Then

Suppose that f is continuous on [a, b] and differentiable on (a, b). Then Lectures 1/18 Derivatives and Graphs When we have a picture of the graph of a function f(x), we can make a picture of the derivative f (x) using the slopes of the tangents to the graph of f. In this section

More information

Ex 1: Identify the open intervals for which each function is increasing or decreasing.

Ex 1: Identify the open intervals for which each function is increasing or decreasing. MATH 2040 Notes: Unit 4 Page 1 5.1/5.2 Increasing and Decreasing Functions Part a Relative Extrema Ex 1: Identify the open intervals for which each In algebra we defined increasing and decreasing behavior

More information

Partial Differentiation

Partial Differentiation CHAPTER 7 Partial Differentiation From the previous two chapters we know how to differentiate functions of one variable But many functions in economics depend on several variables: output depends on both

More information

MATH 353 LECTURE NOTES: WEEK 1 FIRST ORDER ODES

MATH 353 LECTURE NOTES: WEEK 1 FIRST ORDER ODES MATH 353 LECTURE NOTES: WEEK 1 FIRST ORDER ODES J. WONG (FALL 2017) What did we cover this week? Basic definitions: DEs, linear operators, homogeneous (linear) ODEs. Solution techniques for some classes

More information

Homework #4 Solutions

Homework #4 Solutions MAT 303 Spring 03 Problems Section.: 0,, Section.:, 6,, Section.3:,, 0,, 30 Homework # Solutions..0. Suppose that the fish population P(t) in a lake is attacked by a disease at time t = 0, with the result

More information

Student Exploration: Food Chain

Student Exploration: Food Chain Name: Date: Student Exploration: Food Chain Vocabulary: consumer, ecosystem, equilibrium, food chain,, predator, prey, producer Prior Knowledge Questions (Do these BEFORE using the Gizmo.) The Food Chain

More information

EXAM 3 MAT 167 Calculus I Spring is a composite function of two functions y = e u and u = 4 x + x 2. By the. dy dx = dy du = e u x + 2x.

EXAM 3 MAT 167 Calculus I Spring is a composite function of two functions y = e u and u = 4 x + x 2. By the. dy dx = dy du = e u x + 2x. EXAM MAT 67 Calculus I Spring 20 Name: Section: I Each answer must include either supporting work or an explanation of your reasoning. These elements are considered to be the main part of each answer and

More information

Maximum and Minimum Values

Maximum and Minimum Values Maimum and Minimum Values y Maimum Minimum MATH 80 Lecture 4 of 6 Definitions: A function f has an absolute maimum at c if f ( c) f ( ) for all in D, where D is the domain of f. The number f (c) is called

More information

MATH 1014 N 3.0 W2015 APPLIED CALCULUS II - SECTION P. Perhaps the most important of all the applications of calculus is to differential equations.

MATH 1014 N 3.0 W2015 APPLIED CALCULUS II - SECTION P. Perhaps the most important of all the applications of calculus is to differential equations. MATH 1014 N 3.0 W2015 APPLIED CALCULUS II - SECTION P Stewart Chapter 9 Differential Equations Perhaps the most important of all the applications of calculus is to differential equations. 9.1 Modeling

More information

3 Geometrical Use of The Rate of Change

3 Geometrical Use of The Rate of Change Arkansas Tech University MATH 224: Business Calculus Dr. Marcel B. Finan Geometrical Use of The Rate of Change Functions given by tables of values have their limitations in that nearly always leave gaps.

More information

MAT 1332: CALCULUS FOR LIFE SCIENCES

MAT 1332: CALCULUS FOR LIFE SCIENCES MAT 1332: CALCULUS FOR LIFE SCIENCES JING LI Contents 1 Review: Functions of several variables I: Partial derivatives 1 2 Function of several variables II: Vector-valued functions 2 21 Introductory example

More information

MAT 122 Homework 7 Solutions

MAT 122 Homework 7 Solutions MAT 1 Homework 7 Solutions Section 3.3, Problem 4 For the function w = (t + 1) 100, we take the inside function to be z = t + 1 and the outside function to be z 100. The derivative of the inside function

More information

Calculus II Study Guide Fall 2015 Instructor: Barry McQuarrie Page 1 of 8

Calculus II Study Guide Fall 2015 Instructor: Barry McQuarrie Page 1 of 8 Calculus II Study Guide Fall 205 Instructor: Barry McQuarrie Page of 8 You should be expanding this study guide as you see fit with details and worked examples. With this extra layer of detail you will

More information

Calculus II Practice Test Questions for Chapter , 9.6, Page 1 of 9

Calculus II Practice Test Questions for Chapter , 9.6, Page 1 of 9 Calculus II Practice Test Questions for Chapter 9.1 9.4, 9.6, 10.1 10.4 Page 1 of 9 This is in no way an inclusive set of problems there can be other types of problems on the actual test. To prepare for

More information

Calculus 1 Math 151 Week 10 Rob Rahm. Theorem 1.1. Rolle s Theorem. Let f be a function that satisfies the following three hypotheses:

Calculus 1 Math 151 Week 10 Rob Rahm. Theorem 1.1. Rolle s Theorem. Let f be a function that satisfies the following three hypotheses: Calculus 1 Math 151 Week 10 Rob Rahm 1 Mean Value Theorem Theorem 1.1. Rolle s Theorem. Let f be a function that satisfies the following three hypotheses: (1) f is continuous on [a, b]. (2) f is differentiable

More information

MA 137 Calculus 1 with Life Science Applications Monotonicity and Concavity (Section 5.2) Extrema, Inflection Points, and Graphing (Section 5.

MA 137 Calculus 1 with Life Science Applications Monotonicity and Concavity (Section 5.2) Extrema, Inflection Points, and Graphing (Section 5. MA 137 Calculus 1 with Life Science Applications Monotonicity and Concavity (Section 52) Extrema, Inflection Points, and Graphing (Section 53) Alberto Corso albertocorso@ukyedu Department of Mathematics

More information

Calculus 140, section 4.7 Concavity and Inflection Points notes by Tim Pilachowski

Calculus 140, section 4.7 Concavity and Inflection Points notes by Tim Pilachowski Calculus 140, section 4.7 Concavity and Inflection Points notes by Tim Pilachowski Reminder: You will not be able to use a graphing calculator on tests! Theory Eample: Consider the graph of y = pictured

More information

MAT 1339-S14 Class 4

MAT 1339-S14 Class 4 MAT 9-S4 Class 4 July 4, 204 Contents Curve Sketching. Concavity and the Second Derivative Test.................4 Simple Rational Functions........................ 2.5 Putting It All Together.........................

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES 3.8 Exponential Growth and Decay In this section, we will: Use differentiation to solve real-life problems involving exponentially growing quantities. EXPONENTIAL

More information

Coordinate Curves for Trajectories

Coordinate Curves for Trajectories 43 The material on linearizations and Jacobian matrices developed in the last chapter certainly expanded our ability to deal with nonlinear systems of differential equations Unfortunately, those tools

More information

3.5: Issues in Curve Sketching

3.5: Issues in Curve Sketching 3.5: Issues in Curve Sketching Mathematics 3 Lecture 20 Dartmouth College February 17, 2010 Typeset by FoilTEX Example 1 Which of the following are the graphs of a function, its derivative and its second

More information

Math 42: Calculus Final Exam March 15, 2010

Math 42: Calculus Final Exam March 15, 2010 Math 42: Calculus Final Exam March 15, 2010 Name: SUID#: Circle your section: Sukhada Fadnavis Dan Jerison Jason Lo Dmitriy Ivanov Yu-jong Tzeng 02 (10-10:50am) 03 (11-11:50am) 04 (11-11:50am) 05 (11-11:50am)

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.9 Antiderivatives In this section, we will learn about: Antiderivatives and how they are useful in solving certain scientific problems.

More information

MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4

MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4 MITOCW MITRES18_005S10_DiffEqnsGrowth_300k_512kb-mp4 GILBERT STRANG: OK, today is about differential equations. That's where calculus really is applied. And these will be equations that describe growth.

More information

Motion Along a Straight Line (Motion in One-Dimension)

Motion Along a Straight Line (Motion in One-Dimension) Chapter 2 Motion Along a Straight Line (Motion in One-Dimension) Learn the concepts of displacement, velocity, and acceleration in one-dimension. Describe motions at constant acceleration. Be able to graph

More information

Section 7.2 Euler s Method

Section 7.2 Euler s Method Section 7.2 Euler s Method Key terms Scalar first order IVP (one step method) Euler s Method Derivation Error analysis Computational procedure Difference equation Slope field or Direction field Error Euler's

More information

1.1. Bacteria Reproduce like Rabbits. (a) A differential equation is an equation. a function, and both the function and its

1.1. Bacteria Reproduce like Rabbits. (a) A differential equation is an equation. a function, and both the function and its G NAGY ODE January 7, 2018 1 11 Bacteria Reproduce like Rabbits Section Objective(s): Overview of Differential Equations The Discrete Equation The Continuum Equation Summary and Consistency 111 Overview

More information

Ecology 203, Exam III. November 16, Print name:

Ecology 203, Exam III. November 16, Print name: Ecology 203, Exam III. November 16, 2005. Print name: Read carefully. Work accurately and efficiently. The exam is worth 100 points (plus 6 extra credit points). Choose four of ten concept-exploring questions

More information

EXERCISES FOR SECTION 1.1

EXERCISES FOR SECTION 1.1 2 CHAPTER 1 FIRST-ORDER DIFFERENTIAL EQUATIONS EXERCISES FOR SECTION 1.1 1. Note that dy/ = 0 if and only if y = 3. Therefore, the constant function y(t) = 3for all t is the only equilibrium solution.

More information

2.2. THE PRODUCT AND QUOTIENT RULES 179. P dv dt + V dp. dt.

2.2. THE PRODUCT AND QUOTIENT RULES 179. P dv dt + V dp. dt. 22 THE PRODUCT AND QUOTIENT RULES 179 Thus, using the Product Rule, we find that dt = 1 k P dv + V dp At t = t 0, we obtain dt = 1 [(100, 000)(0005) + (002)( 100)] = 6225 K/s t0 8 Hence, at time t 0, the

More information

@K302. Yasuyuki Matsuda

@K302. Yasuyuki Matsuda Introductory Physics (week 3) @K302 Yasuyuki Matsuda Today s Contents Velocity and Acceleration Newton s Laws of Motion Position, Velocity, Acceleration Particle Particle : An point-like object with its

More information

Section Differential Equations: Modeling, Slope Fields, and Euler s Method

Section Differential Equations: Modeling, Slope Fields, and Euler s Method Section.. Differential Equations: Modeling, Slope Fields, and Euler s Method Preliminar Eample. Phsical Situation Modeling Differential Equation An object is taken out of an oven and placed in a room where

More information

MATH 1325 Business Calculus Guided Notes

MATH 1325 Business Calculus Guided Notes MATH 135 Business Calculus Guided Notes LSC North Harris By Isabella Fisher Section.1 Functions and Theirs Graphs A is a rule that assigns to each element in one and only one element in. Set A Set B Set

More information

Lecture Notes for Chapter 12

Lecture Notes for Chapter 12 Lecture Notes for Chapter 12 Kevin Wainwright April 26, 2014 1 Constrained Optimization Consider the following Utility Max problem: Max x 1, x 2 U = U(x 1, x 2 ) (1) Subject to: Re-write Eq. 2 B = P 1

More information

1.2. Introduction to Modeling

1.2. Introduction to Modeling G. NAGY ODE August 30, 2018 1 Section Objective(s): Population Models Unlimited Resources Limited Resources Interacting Species 1.2. Introduction to Modeling 1.2.1. Population Model with Unlimited Resources.

More information

MA1021 Calculus I B Term, Sign:

MA1021 Calculus I B Term, Sign: MA1021 Calculus I B Term, 2014 Final Exam Print Name: Sign: Write up your solutions neatly and show all your work. 1. (28 pts) Compute each of the following derivatives: You do not have to simplify your

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

AP Exam Practice Questions for Chapter 6

AP Exam Practice Questions for Chapter 6 AP Eam Practice Questions for Chapter 6 AP Eam Practice Questions for Chapter 6. To find which graph is a slope field for, 5 evaluate the derivative at selected points. At ( 0, ),.. 3., 0,. 5 At ( ) At

More information

MATH 162 R E V I E W F I N A L E X A M FALL 2016

MATH 162 R E V I E W F I N A L E X A M FALL 2016 MATH 6 R E V I E W F I N A L E X A M FALL 06 BASICS Graphs. Be able to graph basic functions, such as polynomials (eg, f(x) = x 3 x, x + ax + b, x(x ) (x + ) 3, know about the effect of multiplicity of

More information

where people/square mile. In

where people/square mile. In CALCULUS WORKSHEET ON APPLICATIONS OF THE DEFINITE INTEGRAL - ACCUMULATION Work the following on notebook paper. Use your calculator on problems 1-8 and give decimal answers correct to three decimal places.

More information

MA 138 Calculus 2 for the Life Sciences Spring 2016 Final Exam May 4, Exam Scores. Question Score Total

MA 138 Calculus 2 for the Life Sciences Spring 2016 Final Exam May 4, Exam Scores. Question Score Total MA 138 Calculus 2 for the Life Sciences Spring 2016 Final Exam May 4, 2016 Exam Scores Question Score Total 1 10 Name: Section: Last 4 digits of student ID #: No books or notes may be used. Turn off all

More information

Math 225 Differential Equations Notes Chapter 1

Math 225 Differential Equations Notes Chapter 1 Math 225 Differential Equations Notes Chapter 1 Michael Muscedere September 9, 2004 1 Introduction 1.1 Background In science and engineering models are used to describe physical phenomena. Often these

More information

Answer Key. Calculus I Math 141 Fall 2003 Professor Ben Richert. Exam 2

Answer Key. Calculus I Math 141 Fall 2003 Professor Ben Richert. Exam 2 Answer Key Calculus I Math 141 Fall 2003 Professor Ben Richert Exam 2 November 18, 2003 Please do all your work in this booklet and show all the steps. Calculators and note-cards are not allowed. Problem

More information

It is convenient to think that solutions of differential equations consist of a family of functions (just like indefinite integrals ).

It is convenient to think that solutions of differential equations consist of a family of functions (just like indefinite integrals ). Section 1.1 Direction Fields Key Terms/Ideas: Mathematical model Geometric behavior of solutions without solving the model using calculus Graphical description using direction fields Equilibrium solution

More information

Unit #16 : Differential Equations

Unit #16 : Differential Equations Unit #16 : Differential Equations Goals: To introduce the concept of a differential equation. Discuss the relationship between differential equations and slope fields. Discuss Euler s method for solving

More information

CALCULUS EXPLORATION OF THE SECOND FUNDAMENTAL THEOREM OF CALCULUS. Second Fundamental Theorem of Calculus (Chain Rule Version): f t dt

CALCULUS EXPLORATION OF THE SECOND FUNDAMENTAL THEOREM OF CALCULUS. Second Fundamental Theorem of Calculus (Chain Rule Version): f t dt CALCULUS EXPLORATION OF THE SECOND FUNDAMENTAL THEOREM OF CALCULUS d d d d t dt 6 cos t dt Second Fundamental Theorem of Calculus: d f tdt d a d d 4 t dt d d a f t dt d d 6 cos t dt Second Fundamental

More information

Advanced Placement Physics C Summer Assignment

Advanced Placement Physics C Summer Assignment Advanced Placement Physics C Summer Assignment Summer Assignment Checklist: 1. Book Problems. Selected problems from Fundamentals of Physics. (Due August 31 st ). Intro to Calculus Packet. (Attached) (Due

More information

FIRST-ORDER SYSTEMS OF ORDINARY DIFFERENTIAL EQUATIONS III: Autonomous Planar Systems David Levermore Department of Mathematics University of Maryland

FIRST-ORDER SYSTEMS OF ORDINARY DIFFERENTIAL EQUATIONS III: Autonomous Planar Systems David Levermore Department of Mathematics University of Maryland FIRST-ORDER SYSTEMS OF ORDINARY DIFFERENTIAL EQUATIONS III: Autonomous Planar Systems David Levermore Department of Mathematics University of Maryland 4 May 2012 Because the presentation of this material

More information

Calculus The Mean Value Theorem October 22, 2018

Calculus The Mean Value Theorem October 22, 2018 Calculus The Mean Value Theorem October, 018 Definitions Let c be a number in the domain D of a function f. Then f(c) is the (a) absolute maximum value of f on D, i.e. f(c) = max, if f(c) for all x in

More information

Calculus with Analytic Geometry I Exam 8 Take Home Part.

Calculus with Analytic Geometry I Exam 8 Take Home Part. Calculus with Analytic Geometry I Exam 8 Take Home Part. INSTRUCTIONS: SHOW ALL WORK. Write clearly, using full sentences. Use equal signs appropriately; don t use them between quantities that are not

More information

Math 1325 Final Exam Review. (Set it up, but do not simplify) lim

Math 1325 Final Exam Review. (Set it up, but do not simplify) lim . Given f( ), find Math 5 Final Eam Review f h f. h0 h a. If f ( ) 5 (Set it up, but do not simplify) If c. If f ( ) 5 f (Simplify) ( ) 7 f (Set it up, but do not simplify) ( ) 7 (Simplify) d. If f. Given

More information

Math 131 Final Review May 2010

Math 131 Final Review May 2010 Math 131 Final Review May 010 1. Find the equation of the tangent line to y = 3x x + 1 at the point (1, ).. A point on a turning wheel is distance y from the road at time t. Using the data given in the

More information

Lecture notes for /12.586, Modeling Environmental Complexity. D. H. Rothman, MIT October 20, 2014

Lecture notes for /12.586, Modeling Environmental Complexity. D. H. Rothman, MIT October 20, 2014 Lecture notes for 12.086/12.586, Modeling Environmental Complexity D. H. Rothman, MIT October 20, 2014 Contents 1 Random and scale-free networks 1 1.1 Food webs............................. 1 1.2 Random

More information

f (x) = 2x x = 2x2 + 4x 6 x 0 = 2x 2 + 4x 6 = 2(x + 3)(x 1) x = 3 or x = 1.

f (x) = 2x x = 2x2 + 4x 6 x 0 = 2x 2 + 4x 6 = 2(x + 3)(x 1) x = 3 or x = 1. F16 MATH 15 Test November, 016 NAME: SOLUTIONS CRN: Use only methods from class. You must show work to receive credit. When using a theorem given in class, cite the theorem. Reminder: Calculators are not

More information

5.3 Interpretations of the Definite Integral Student Notes

5.3 Interpretations of the Definite Integral Student Notes 5. Interpretations of the Definite Integral Student Notes The Total Change Theorem: The integral of a rate of change is the total change: a b F This theorem is used in many applications. xdx Fb Fa Example

More information

Predator-Prey and Weight Change Models

Predator-Prey and Weight Change Models 1 Predator-Prey and Weight Change Models Lab Objective: We introduce built-in methods for solving Initial Value Problems and apply the methods to two dynamical systems. The rst system looks at the relationship

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

(2) Let f(x) = a 2 x if x<2, 4 2x 2 ifx 2. (b) Find the lim f(x). (c) Find all values of a that make f continuous at 2. Justify your answer.

(2) Let f(x) = a 2 x if x<2, 4 2x 2 ifx 2. (b) Find the lim f(x). (c) Find all values of a that make f continuous at 2. Justify your answer. (1) Let f(x) = x x 2 9. (a) Find the domain of f. (b) Write an equation for each vertical asymptote of the graph of f. (c) Write an equation for each horizontal asymptote of the graph of f. (d) Is f odd,

More information

Newton s Laws of Motion and Gravitation

Newton s Laws of Motion and Gravitation Newton s Laws of Motion and Gravitation Introduction: In Newton s first law we have discussed the equilibrium condition for a particle and seen that when the resultant force acting on the particle is zero,

More information

MATH 115 QUIZ4-SAMPLE December 7, 2016

MATH 115 QUIZ4-SAMPLE December 7, 2016 MATH 115 QUIZ4-SAMPLE December 7, 2016 Please review the following problems from your book: Section 4.1: 11 ( true and false) Section 4.1: 49-70 ( Using table or number line.) Section 4.2: 77-83 Section

More information

Final Problem Set. 2. Use the information in #1 to show a solution to the differential equation ), where k and L are constants and e c L be

Final Problem Set. 2. Use the information in #1 to show a solution to the differential equation ), where k and L are constants and e c L be Final Problem Set Name A. Show the steps for each of the following problems. 1. Show 1 1 1 y y L y y(1 ) L.. Use the information in #1 to show a solution to the differential equation dy y ky(1 ), where

More information

Chapter 24 Review Prof. Townsend Fall 2016

Chapter 24 Review Prof. Townsend Fall 2016 Chapter 4 Review Prof. Townsend Fall 016 Sections covered: 4.1 Tangents and Normals 4.3 Curvilinear Motion 4.4 Related Rates 4.5 Using Derivatives in Curve Sketching 4.7 Applied Maximum and Minimum Problems

More information

MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations

MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations MATH 320, WEEK 2: Slope Fields, Uniqueness of Solutions, Initial Value Problems, Separable Equations 1 Slope Fields We have seen what a differential equation is (relationship with a function and its derivatives),

More information

Math 116 Second Midterm November 18, 2015

Math 116 Second Midterm November 18, 2015 Math 6 Second Midterm November 8, 205 UMID: EXAM SOLUTIONS Initials: Instructor: Section:. Do not open this exam until you are told to do so. 2. Do not write your name anywhere on this exam. 3. This exam

More information

Do not write in this space. Problem Possible Score Number Points Total 100

Do not write in this space. Problem Possible Score Number Points Total 100 Math 9. Name Mathematical Modeling Exam I Fall 004 T. Judson Do not write in this space. Problem Possible Score Number Points 5 6 3 8 4 0 5 0 6 0 7 8 9 8 Total 00 Directions Please Read Carefully! You

More information

Topics and Concepts. 1. Limits

Topics and Concepts. 1. Limits Topics and Concepts 1. Limits (a) Evaluating its (Know: it exists if and only if the it from the left is the same as the it from the right) (b) Infinite its (give rise to vertical asymptotes) (c) Limits

More information

Section 3.1 Extreme Values

Section 3.1 Extreme Values Math 132 Extreme Values Section 3.1 Section 3.1 Extreme Values Example 1: Given the following is the graph of f(x) Where is the maximum (x-value)? What is the maximum (y-value)? Where is the minimum (x-value)?

More information

Section 4.3 Concavity and Curve Sketching 1.5 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I

Section 4.3 Concavity and Curve Sketching 1.5 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I Section 4.3 Concavity and Curve Sketching 1.5 Lectures College of Science MATHS 101: Calculus I (University of Bahrain) Concavity 1 / 29 Concavity Increasing Function has three cases (University of Bahrain)

More information

Ex. Find the derivative. Do not leave negative exponents or complex fractions in your answers.

Ex. Find the derivative. Do not leave negative exponents or complex fractions in your answers. CALCULUS AB THE SECOND FUNDAMENTAL THEOREM OF CALCULUS AND REVIEW E. Find the derivative. Do not leave negative eponents or comple fractions in your answers. 4 (a) y 4 e 5 f sin (b) sec (c) g 5 (d) y 4

More information

Introduction to Initial Value Problems

Introduction to Initial Value Problems Chapter 2 Introduction to Initial Value Problems The purpose of this chapter is to study the simplest numerical methods for approximating the solution to a first order initial value problem (IVP). Because

More information

MTH Calculus with Analytic Geom I TEST 1

MTH Calculus with Analytic Geom I TEST 1 MTH 229-105 Calculus with Analytic Geom I TEST 1 Name Please write your solutions in a clear and precise manner. SHOW your work entirely. (1) Find the equation of a straight line perpendicular to the line

More information

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a AP Physics C: Mechanics Greetings, For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a brief introduction to Calculus that gives you an operational knowledge of

More information

First-Order Ordinary Differntial Equations: Classification and Linear Equations. David Levermore Department of Mathematics University of Maryland

First-Order Ordinary Differntial Equations: Classification and Linear Equations. David Levermore Department of Mathematics University of Maryland First-Order Ordinary Differntial Equations: Classification and Linear Equations David Levermore Department of Mathematics University of Maryland 1 February 2009 These notes cover some of the material that

More information

March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work.

March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work. March 5, 2009 Name The problems count as marked. The total number of points available is 131. Throughout this test, show your work. 1. (12 points) Consider the cubic curve f(x) = 2x 3 + 3x + 2. (a) What

More information

Math 217 Practice Exam 1. Page Which of the following differential equations is exact?

Math 217 Practice Exam 1. Page Which of the following differential equations is exact? Page 1 1. Which of the following differential equations is exact? (a) (3x x 3 )dx + (3x 3x 2 ) d = 0 (b) sin(x) dx + cos(x) d = 0 (c) x 2 x 2 = 0 (d) (1 + e x ) + (2 + xe x ) d = 0 CORRECT dx (e) e x dx

More information

Economic Growth

Economic Growth MIT OpenCourseWare http://ocw.mit.edu 14.452 Economic Growth Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 14.452 Economic Growth: Lecture

More information

Review for the Final Exam

Review for the Final Exam Math 171 Review for the Final Exam 1 Find the limits (4 points each) (a) lim 4x 2 3; x x (b) lim ( x 2 x x 1 )x ; (c) lim( 1 1 ); x 1 ln x x 1 sin (x 2) (d) lim x 2 x 2 4 Solutions (a) The limit lim 4x

More information

Absolute and Local Extrema. Critical Points In the proof of Rolle s Theorem, we actually demonstrated the following

Absolute and Local Extrema. Critical Points In the proof of Rolle s Theorem, we actually demonstrated the following Absolute and Local Extrema Definition 1 (Absolute Maximum). A function f has an absolute maximum at c S if f(x) f(c) x S. We call f(c) the absolute maximum of f on S. Definition 2 (Local Maximum). A function

More information