The SIR Disease Model Trajectories and MatLab

Size: px
Start display at page:

Download "The SIR Disease Model Trajectories and MatLab"

Transcription

1 The SIR Disease Model Trajectories and MatLab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 17, 2013 Outline Reviewing the SIR disease model The I vs. S curve Matlab!

2 Abstract This lecture discusses the SIR disease model trajectories and using MatLab to plot them. We will now build a simple model of an infectious disease. Assume the total population we are studying is fixed at N individuals. This population is then divided into three separate pieces: we have individuals that are susceptible to becoming infected are called Susceptible and are labeled by the variable S. Hence, S(t) is the number that are capable of becoming infected at time t. that can infect others. They are called Infectious and the number that are infectious at time t is given by I (t). that have been removed from the general population. These are called Removed and their number at time t is labeled by R(t).

3 Our complete Infectious Disease model is then I = r S I γ I S = r S I I (0) = I 0 S(0) =. where we can compute R(t) as N I (t) S(t). The Phase Plane in Quadrant I: S = 0 I axis S axis I = 0 S = 0 (, ) (, +) (S 1, I 1) S 1 S 0 (, I 0) S = γ/r I = 0 A plausible trajectory starting at the point > γ/r and I 0 > 0. Another trajectory starting at S 1 < γ/r and I 0 > 0 is also shown. In addition, the intersections with the S axis are labeled S0 and S1, respectively. Figure: The Disease Model in Quadrant One

4 We know that biologically reasonable solutions occur with initial conditions starting in Quadrant I and we know that our solutions satisfy S < 0 always with both S and I positive until we hit the S axis. Let the time where we hit the S axis be given by t. For any t < t, we can divide to obtain Thus, I (t) S (t) r S(t) I (t) γ I (t) = r S(t) I (t) = 1 + γ 1 r S(t). I (t) S (t) = 1 + γ r 1 S I (t) = S (t) + γ r S (t) S(t) Integrating, we find ) I (t) I 0 = (S(t) + γ ( ) S(t) r ln. simplify I (t) = I 0 + S(t) + γ ( ) S(t) r ln. Dropping the dependence on time t, we see the functional dependence of I on S. I = I 0 + S + γ r ln ( S ). It is clear that this curve has a maximum at γ/r. This value is very important in infectious disease modeling and we call it the infectious to susceptible rate ρ.

5 Now let s answer the question of whether or not the trajectory can hit the origin. If that happened, the terminal value would be S = 0 and I = 0. The I vs S equation would then say I = I 0 + S + γ ( ) S r ln or 0 = I γ r ln ( 0 ). Since ln(0) is undefined, this equation is impossible and so the trajectory can not hit the origin. Definition For the disease model I = r S I γ I, S = r S I I (0) = I 0, S(0) = the dependence of I on S is given by ( ) S I = I 0 + S + ρ ln. We say the infection becomes an epidemic if the initial value of susceptibles, exceeds the critical infectious to susceptible ratio ρ = γ r because the number of infections increases to its maximum before it begins to drop. This behavior is interpreted as an infection going out of control; i.e. it has entered an epidemic phase.

6 Homework 78 For the following disease models 1. Do the nullcline analysis for the first quadrant. 2. Explain why the trajectories must stay in Quadrant 1 if they start there. This means you find the trajectories on the positive I and positive S axis as part of answering the question. Draw a nice picture of this. 3. Derive the di ds equation and solve it. Explain why a trajectory can not hit the origin. 4. Answer the questions about whether or not the specific values given cause an epidemic. Draw the corresponding trajectory for each case. Homework S (t) = 150 S(t) I (t) I (t) = 150 S(t) I (t) 50 I (t) S(0) =, I (0) = 12.7 Is there an epidemic if is 1.8? (yes as γ/r = 1/3) Is there an epidemic if is 0.2? (no) S (t) = 5 S(t) I (t) I (t) = 5 S(t) I (t) 25 I (t) S(0) =, I (0) = 120 Is there an epidemic if is 4.9? ( no as γ/r = 5) Is there an epidemic if is 10.3? (yes )

7 Homework S (t) = 15 S(t) I (t) I (t) = 15 S(t) I (t) 40 I (t) S(0) =, I (0) = 12.7 Is there an epidemic if is 6? Is there an epidemic if is 2? S (t) = 18 S(t) I (t) I (t) = 18 S(t) I (t) 200 I (t) S(0) =, I (0) = 120 Is there an epidemic if is 20? Is there an epidemic if is 4? Here is a typical session to plot an SIR disease model trajectory for S = 5SI, I = 5SI 25I, S(0) = 10, I (0) = 5. T = 2. 0 ; h = ; N = c e i l (T/h ) ; x0 = [ 1 0 ; 5 ] ; [ ht, r k ] = FixedRK ( f, 0, x0, h, 4,N) ; X = r k ( 1, : ) ; Y = r k ( 2, : ) ; xmin = min (X) ; xmax = max (X) ; xtop = max ( abs ( xmin ), abs ( xmax ) ) ; ymin = min (Y) ; ymax = max (Y) ; ytop = max ( abs ( ymin ), abs ( ymax ) ) ; D = max ( xtop, y t o p ) x = l i n s p a c e (0,D,1 0 1 ) ; GoverR = 2 5 / 5 ; c l f h o l d on p l o t ( [ GoverR GoverR ], [ 0 D] ) ; p l o t (X, Y, k ) ; x l a b e l ( S a x i s ) ; y l a b e l ( I a x i s ) ; t i t l e ( Phase Plane for Disease Model S = 5 S I, I = 5 S I + 25 I, S (0) = 10, I ( 0 ) = 5 : E p i d e m i c! ) ; l e g e n d ( S = 2 5 / 5, S v s I, L o c a t i o n, Best ) ;

8 The resulting graph is shown here. Homework 79 For the following disease models, do the single plot corresponding to the an initial condition that gives an epidemic and also draw a phase plane plot using AutoPhasePlanePlot For the specific model 79.2 For the specific model S (t) = 150 S(t) I (t) I (t) = 150 S(t) I (t) 50 I (t) S(0) = S0, I (0) = I0 S (t) = 5 S(t) I (t) I (t) = 5 S(t) I (t) 25 I (t) S(0) = S0, I (0) = I0

Solving Linear Systems of ODEs with Matlab

Solving Linear Systems of ODEs with Matlab Solving Linear Systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 27, 2013 Outline Linear Systems Numerically

More information

Predator - Prey Model Trajectories and the nonlinear conservation law

Predator - Prey Model Trajectories and the nonlinear conservation law Predator - Prey Model Trajectories and the nonlinear conservation law James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 203 Outline

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 2013 Outline

More information

Getting Started With The Predator - Prey Model: Nullclines

Getting Started With The Predator - Prey Model: Nullclines Getting Started With The Predator - Prey Model: Nullclines James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline The Predator

More information

Predator - Prey Model Trajectories are periodic

Predator - Prey Model Trajectories are periodic Predator - Prey Model Trajectories are periodic James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 4, 2013 Outline 1 Showing The PP

More information

Predator - Prey Model Trajectories are periodic

Predator - Prey Model Trajectories are periodic Predator - Prey Model Trajectories are periodic James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 4, 2013 Outline Showing The PP Trajectories

More information

Matrices and Vectors

Matrices and Vectors Matrices and Vectors James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 11, 2013 Outline 1 Matrices and Vectors 2 Vector Details 3 Matrix

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline 1 Example Let (x n ) be the sequence

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline More Uniform Convergence Examples Example

More information

Lesson 5 Practice Problems

Lesson 5 Practice Problems Name: Date: Lesson 5 Section 5.1: Linear Functions vs. Exponential Functions 1. Complete the table below. Function Linear or Exponential? Linear: Increasing or Decreasing? Exponential: Growth or Decay?

More information

FLEX Mathematics Introduction to Trigonometry. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

FLEX Mathematics Introduction to Trigonometry. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. FLEX Mathematics Introduction to Trigonometry Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Evaluate the expression. 1) 8 tan 0 + 3 csc 20

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

More On Exponential Functions, Inverse Functions and Derivative Consequences

More On Exponential Functions, Inverse Functions and Derivative Consequences More On Exponential Functions, Inverse Functions and Derivative Consequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 10, 2019

More information

Applied Calculus. Review Problems for the Final Exam

Applied Calculus. Review Problems for the Final Exam Math135 Study Guide 1 Math 131/135/194, Fall 2004 Applied Calculus Daniel Kaplan, Macalester College Review Problems for the Final Exam Problem 1../DE/102b.tex Problem 3../DE/107.tex Consider the pair

More information

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline Riemann Sums Riemann Sums In MatLab Graphing

More information

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 24, 2013 Outline 1 First Order Approximation s Second Order Approximations 2 Approximation

More information

Math 148. Polynomial Graphs

Math 148. Polynomial Graphs Math 148 Lab 1 Polynomial Graphs Due: Monday Wednesday, April April 10 5 Directions: Work out each problem on a separate sheet of paper, and write your answers on the answer sheet provided. Submit the

More information

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab Riemann Sums James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 15, 2013 Outline Riemann Sums Riemann Sums In MatLab Abstract This

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 2017 Outline Extremal Values The

More information

Upper and Lower Bounds

Upper and Lower Bounds James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 30, 2017 Outline 1 2 s 3 Basic Results 4 Homework Let S be a set of real numbers. We

More information

Practice Problems. 1. The age and weights of six cats are given in the following table:

Practice Problems. 1. The age and weights of six cats are given in the following table: 1. The age and weights of six cats are given in the following table: Age (in years) A Weight (in pounds) - W 3 2 5 4 17 15 7 10 12 10 1 1 a. Identify the input and output quantities and their associated

More information

Functions Modeling Change A Preparation for Calculus Third Edition

Functions Modeling Change A Preparation for Calculus Third Edition Powerpoint slides copied from or based upon: Functions Modeling Change A Preparation for Calculus Third Edition Connally, Hughes-Hallett, Gleason, Et Al. Copyright 2007 John Wiley & Sons, Inc. 1 Chapter

More information

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline 1 Riemann Sums 2 Riemann Sums In MatLab 3 Graphing

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 Geometric Series

More information

Lesson 1 Practice Problems

Lesson 1 Practice Problems Name: Date: Section 1.1: What is a Function? Lesson 1 1. The table below gives the distance D, in kilometers, of a GPS satellite from Earth t minutes after being launched. t = Time (in minutes) D = Distance

More information

Defining Exponential Functions and Exponential Derivatives and Integrals

Defining Exponential Functions and Exponential Derivatives and Integrals Defining Exponential Functions and Exponential Derivatives and Integrals James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 19, 2014

More information

Newton s Cooling Model in Matlab and the Cooling Project!

Newton s Cooling Model in Matlab and the Cooling Project! Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton

More information

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline Complex Numbers Complex Number Calculations Complex

More information

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline 1 Complex Numbers 2 Complex Number Calculations

More information

g( x) = 3x 4 Lesson 10 - Practice Problems Lesson 10 Rational Functions and Equations Practice Problems

g( x) = 3x 4 Lesson 10 - Practice Problems Lesson 10 Rational Functions and Equations Practice Problems Lesson 10 - Practice Problems Section 10.1: Characteristics of Rational Functions 1. Complete the table below. Function Domain a) f ( x) = 4x 6 2x b) f ( x) = 8x + 2 3x 9 c) s( t ) = 6t + 4 t d) p( t )

More information

Lesson 4 Linear Functions and Applications

Lesson 4 Linear Functions and Applications In this lesson, we take a close look at Linear Functions and how real world situations can be modeled using Linear Functions. We study the relationship between Average Rate of Change and Slope and how

More information

Functions Modeling Change A Preparation for Calculus Third Edition

Functions Modeling Change A Preparation for Calculus Third Edition Powerpoint slides copied from or based upon: Functions Modeling Change A Preparation for Calculus Third Edition Connally, Hughes-Hallett, Gleason, Et Al. Copyright 2007 John Wiley & Sons, Inc. 1 CHAPTER

More information

AP Calculus AB Summer Assignment. Due Date: First day of school.

AP Calculus AB Summer Assignment. Due Date: First day of school. AP Calculus AB Summer Assignment Name: Due Date: First day of school. The purpose of this assignment is to have you practice the mathematical skills necessary to be successful in Calculus AB. All of the

More information

Lesson 6 Practice Problems

Lesson 6 Practice Problems Name: Date: Lesson 6 Section 6.1: Writing Exponential Models 1. Complete the following table. Growth Rate as a % Growth Rate as a decimal Growth Factor 13% 0.13 1.13 21% 7% 0.20 0.05 1.25 1.075 2.03 2.

More information

Dirchlet s Function and Limit and Continuity Arguments

Dirchlet s Function and Limit and Continuity Arguments Dirchlet s Function and Limit and Continuity Arguments James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 23, 2018 Outline 1 Dirichlet

More information

More Protein Synthesis and a Model for Protein Transcription Error Rates

More Protein Synthesis and a Model for Protein Transcription Error Rates More Protein Synthesis and a Model for Protein James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 3, 2013 Outline 1 Signal Patterns Example

More information

NUMB3RS Activity: Fresh Air and Parabolas. Episode: Pandora s Box

NUMB3RS Activity: Fresh Air and Parabolas. Episode: Pandora s Box Teacher Page 1 NUMB3RS Activity: Fresh Air and Parabolas Topic: Quadratic functions, trajectories, vectors, parametric functions Grade Level: 10-1 Objective: Students will investigate linear and quadratic

More information

Systems of Differential Equations

Systems of Differential Equations WWW Problems and Solutions 5.1 Chapter 5 Sstems of Differential Equations Section 5.1 First-Order Sstems www Problem 1. (From Scalar ODEs to Sstems). Solve each linear ODE; construct and solve an equivalent

More information

PART 1 - CALCULATOR ACTIVE QUESTIONS

PART 1 - CALCULATOR ACTIVE QUESTIONS Name: Date : IM 3 UNIT TEST Linear Functions Teacher: Mr. Santowski and Mr. Smith Score: PART 1 - CALCULATOR ACTIVE QUESTIONS SHOW ALL WORK AND WRITE ALL ANSWERS IN THE SPACES PROVIDED. Maximum marks will

More information

Solving systems of ODEs with Matlab

Solving systems of ODEs with Matlab Solving systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 20, 2013 Outline 1 Systems of ODEs 2 Setting Up

More information

We have two possible solutions (intersections of null-clines. dt = bv + muv = g(u, v). du = au nuv = f (u, v),

We have two possible solutions (intersections of null-clines. dt = bv + muv = g(u, v). du = au nuv = f (u, v), Let us apply the approach presented above to the analysis of population dynamics models. 9. Lotka-Volterra predator-prey model: phase plane analysis. Earlier we introduced the system of equations for prey

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 9, 2018 Outline 1 Extremal Values 2

More information

Dirchlet s Function and Limit and Continuity Arguments

Dirchlet s Function and Limit and Continuity Arguments Dirchlet s Function and Limit and Continuity Arguments James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline Dirichlet

More information

Solutions to MAT 117 Test #3

Solutions to MAT 117 Test #3 Solutions to MAT 7 Test #3 Because there are two versions of the test, solutions will only be given for Form C. Differences from the Form D version will be given. (The values for Form C appear above those

More information

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method Outline Finding Equilibrium Points Numerically Additional Nonlinear Systems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University June 13, 2017

More information

Epsilon-Delta Window Challenge Name Student Activity

Epsilon-Delta Window Challenge Name Student Activity Open the TI-Nspire document Epsilon-Delta.tns. In this activity, you will get to visualize what the formal definition of limit means in terms of a graphing window challenge. Informally, lim f( x) Lmeans

More information

MINI LESSON. Lesson 2a Linear Functions and Applications

MINI LESSON. Lesson 2a Linear Functions and Applications MINI LESSON Lesson 2a Linear Functions and Applications Lesson Objectives: 1. Compute AVERAGE RATE OF CHANGE 2. Explain the meaning of AVERAGE RATE OF CHANGE as it relates to a given situation 3. Interpret

More information

( ) ( ) SECTION 1.1, Page ( x 3) 5 = 4( x 5) = 7. x = = = x x+ 0.12(4000 x) = 432

( ) ( ) SECTION 1.1, Page ( x 3) 5 = 4( x 5) = 7. x = = = x x+ 0.12(4000 x) = 432 CHAPTER Functions and Graphs SECTION., Page. x + x + x x x. x + x x x x x. ( x ) ( x ) x 6 x x x x x + x x 7. x + x + x + 6 8 x 8 6 x x. x x 6 x 6 x x x 8 x x 8 + x..x +..6.x. x 6 ( n + ) ( n ) n + n.

More information

Applications in Biology

Applications in Biology 11 Applications in Biology In this chapter we make use of the techniques developed in the previous few chapters to examine some nonlinear systems that have been used as mathematical models for a variety

More information

Motivation: Sparse matrices and numerical PDE's

Motivation: Sparse matrices and numerical PDE's Lecture 20: Numerical Linear Algebra #4 Iterative methods and Eigenproblems Outline 1) Motivation: beyond LU for Ax=b A little PDE's and sparse matrices A) Temperature Equation B) Poisson Equation 2) Splitting

More information

Why This Class? James K. Peterson. August 22, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Why This Class? James K. Peterson. August 22, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Why This Class? James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 22, 2013 Outline 1 Our Point of View Mathematics, Science and Computer

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2017 Outline Geometric Series The

More information

At right: Closeups of the graphs of. with WINDOW settings Xmin=-1, Xmax=1, Xscl=0.1, Ymin=-1, Ymax=1, Yscl=0.1

At right: Closeups of the graphs of. with WINDOW settings Xmin=-1, Xmax=1, Xscl=0.1, Ymin=-1, Ymax=1, Yscl=0.1 Know the graphs of f(x) = x n for n = odd, positive: 1, 3, 5, The Domain is All Real Numbers, (, ), or R. The Range is All Real Numbers, (, ), or R. It is an Odd function because f( x) = f(x). It is symmetric

More information

Calculus for the Life Sciences II Assignment 6 solutions. f(x, y) = 3π 3 cos 2x + 2 sin 3y

Calculus for the Life Sciences II Assignment 6 solutions. f(x, y) = 3π 3 cos 2x + 2 sin 3y Calculus for the Life Sciences II Assignment 6 solutions Find the tangent plane to the graph of the function at the point (0, π f(x, y = 3π 3 cos 2x + 2 sin 3y Solution: The tangent plane of f at a point

More information

Hölder s and Minkowski s Inequality

Hölder s and Minkowski s Inequality Hölder s and Minkowski s Inequality James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 1, 218 Outline Conjugate Exponents Hölder s

More information

MEI Casio Tasks for Mechanics

MEI Casio Tasks for Mechanics Task 1: Kinematics Constant Acceleration Equations and Graphs Example 2 1 A particle acceleration has a 0.8ms and initial velocity u 3.6ms. Sketch the graphs of displacement, velocity and acceleration

More information

A Simple Protein Synthesis Model

A Simple Protein Synthesis Model A Simple Protein Synthesis Model James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 3, 213 Outline A Simple Protein Synthesis Model

More information

Exam 2 Study Guide: MATH 2080: Summer I 2016

Exam 2 Study Guide: MATH 2080: Summer I 2016 Exam Study Guide: MATH 080: Summer I 016 Dr. Peterson June 7 016 First Order Problems Solve the following IVP s by inspection (i.e. guessing). Sketch a careful graph of each solution. (a) u u; u(0) 0.

More information

MA 180 Lecture. Chapter 0. College Algebra and Calculus by Larson/Hodgkins. Fundamental Concepts of Algebra

MA 180 Lecture. Chapter 0. College Algebra and Calculus by Larson/Hodgkins. Fundamental Concepts of Algebra 0.) Real Numbers: Order and Absolute Value Definitions: Set: is a collection of objections in mathematics Real Numbers: set of numbers used in arithmetic MA 80 Lecture Chapter 0 College Algebra and Calculus

More information

Logarithm and Exponential Derivatives and Integrals

Logarithm and Exponential Derivatives and Integrals Logarithm and Exponential Derivatives and Integrals James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 3, 2013 Outline 1 Exponential

More information

Study Ch. 9.4, # 73, (65, 67 75)

Study Ch. 9.4, # 73, (65, 67 75) GOALS: 1. Understand the differences between the critical value and p value approaches to hypothesis testing. 2. Understand what the p value is and how to find it. 3. Understand the assumptions of a z

More information

Name Typical Applications in Algebra 1

Name Typical Applications in Algebra 1 1. Graph the information below as a scatter plot. Turn your graph paper to landscape. Use 1960 as year 0. Let each square along the x-axis represent one year. Let each square on the y axis represent 100

More information

MATH 099 Name (please print) FINAL EXAM - FORM A Winter 2015 Instructor Score

MATH 099 Name (please print) FINAL EXAM - FORM A Winter 2015 Instructor Score MATH 099 Name (please print) Winter 2015 Instructor Score Point-values for each problem are shown at the right in parentheses. PART I: SIMPLIFY AS MUCH AS POSSIBLE: 1. ( 16 c 12 ) 3 4 1. (2) 2. 52 m "7

More information

MA 137 Calculus 1 for the Life Sciences Operations on Functions Inverse of a Function and its Graph (Sections 1.2 & 1.3)

MA 137 Calculus 1 for the Life Sciences Operations on Functions Inverse of a Function and its Graph (Sections 1.2 & 1.3) MA 137 Calculus 1 for the Life Sciences Operations on Functions Inverse of a Function and its Graph (Sections 12 & 13) Alberto Corso albertocorso@ukyedu Department of Mathematics University of Kentucky

More information

Sequence. A list of numbers written in a definite order.

Sequence. A list of numbers written in a definite order. Sequence A list of numbers written in a definite order. Terms of a Sequence a n = 2 n 2 1, 2 2, 2 3, 2 4, 2 n, 2, 4, 8, 16, 2 n We are going to be mainly concerned with infinite sequences. This means we

More information

Supplement to TB in Canadian First Nations at the turn-of-the twentieth century

Supplement to TB in Canadian First Nations at the turn-of-the twentieth century Supplement to TB in Canadian First Nations at the turn-of-the twentieth century S. F. Ackley, Fengchen Liu, Travis C. Porco, Caitlin S. Pepperell Equations Definitions S, L, T I, T N, and R give the numbers

More information

AP Calculus AB SUMMER ASSIGNMENT. Dear future Calculus AB student

AP Calculus AB SUMMER ASSIGNMENT. Dear future Calculus AB student AP Calculus AB SUMMER ASSIGNMENT Dear future Calculus AB student We are ecited to work with you net year in Calculus AB. In order to help you be prepared for this class, please complete the summer assignment.

More information

IM3 Unit 1 TEST - Working with Linear Relations SEP 2015

IM3 Unit 1 TEST - Working with Linear Relations SEP 2015 Name: Date : IM 3 UNIT TEST Linear Functions Teacher: Mr. Santowski and Ms. Aschenbrenner Score: PART 1 - CALCULATOR ACTIVE QUESTIONS Maximum marks will be given for correct answers. Where an answer is

More information

f x and the x axis on an interval from x a and

f x and the x axis on an interval from x a and Unit 6: Chapter 8 Areas and Volumes & Density Functions Part 1: Areas To find the area bounded by a function bwe use the integral: f d b a b 0 f d f d. a b a f and the ais on an interval from a and. This

More information

Section 4.4 Z-Scores and the Empirical Rule

Section 4.4 Z-Scores and the Empirical Rule Section 4.4 Z-Scores and the Empirical Rule 1 GPA Example A sample of GPAs of 40 freshman college students appear below (sorted in increasing order) 1.40 1.90 1.90 2.00 2.10 2.10 2.20 2.30 2.30 2.40 2.50

More information

Differentiating Series of Functions

Differentiating Series of Functions Differentiating Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 30, 017 Outline 1 Differentiating Series Differentiating

More information

A repeated root is a root that occurs more than once in a polynomial function.

A repeated root is a root that occurs more than once in a polynomial function. Unit 2A, Lesson 3.3 Finding Zeros Synthetic division, along with your knowledge of end behavior and turning points, can be used to identify the x-intercepts of a polynomial function. This information allows

More information

Non-Linear Models Cont d: Infectious Diseases. Non-Linear Models Cont d: Infectious Diseases

Non-Linear Models Cont d: Infectious Diseases. Non-Linear Models Cont d: Infectious Diseases Cont d: Infectious Diseases Infectious Diseases Can be classified into 2 broad categories: 1 those caused by viruses & bacteria (microparasitic diseases e.g. smallpox, measles), 2 those due to vectors

More information

Integration by Parts Logarithms and More Riemann Sums!

Integration by Parts Logarithms and More Riemann Sums! Integration by Parts Logarithms and More Riemann Sums! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 16, 2013 Outline 1 IbyP with

More information

Practice Test Questions Multiple Choice Identify the choice that best completes the statement or answers the question.

Practice Test Questions Multiple Choice Identify the choice that best completes the statement or answers the question. Practice Test Questions Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which set of data is correct for this graph? 5 y 4 3 1 5 4 3 1 1 1 3 4 5 x 3 4

More information

MATH 152 COLLEGE ALGEBRA AND TRIGONOMETRY UNIT 1 HOMEWORK ASSIGNMENTS

MATH 152 COLLEGE ALGEBRA AND TRIGONOMETRY UNIT 1 HOMEWORK ASSIGNMENTS 0//0 MATH COLLEGE ALGEBRA AND TRIGONOMETRY UNIT HOMEWORK ASSIGNMENTS General Instructions Be sure to write out all our work, because method is as important as getting the correct answer. The answers to

More information

Differential Equations Handout A

Differential Equations Handout A Differential Equations Handout A Math 1b November 11, 2005 These are problems for the differential equations unit of the course, some topics of which are not covered in the main textbook. Some of these

More information

Convergence of Fourier Series

Convergence of Fourier Series MATH 454: Analysis Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April, 8 MATH 454: Analysis Two Outline The Cos Family MATH 454: Analysis

More information

The SIRS Model Approach to Host/Parasite Relationships

The SIRS Model Approach to Host/Parasite Relationships = B I + y (N I ) 1 8 6 4 2 I = B I v I N = 5 v = 25 The IR Model Approach to Host/Parasite Relationships Brianne Gill May 16, 28 5 1 15 2 The IR Model... Abstract In this paper, we shall explore examples

More information

Mathematical Induction Again

Mathematical Induction Again Mathematical Induction Again James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 12, 2017 Outline Mathematical Induction Simple POMI Examples

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline 1 Domains of Continuous Functions 2 The

More information

A Note on the Spread of Infectious Diseases. in a Large Susceptible Population

A Note on the Spread of Infectious Diseases. in a Large Susceptible Population International Mathematical Forum, Vol. 7, 2012, no. 50, 2481-2492 A Note on the Spread of Infectious Diseases in a Large Susceptible Population B. Barnes Department of Mathematics Kwame Nkrumah University

More information

Mathematical Induction Again

Mathematical Induction Again Mathematical Induction Again James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 2, 207 Outline Mathematical Induction 2 Simple POMI Examples

More information

Advanced Protein Models again: adding regulation

Advanced Protein Models again: adding regulation Advanced Protein Models again: adding regulation James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 1, 2014 Outline 1 Simple Regulations

More information

Uniform Convergence and Series of Functions

Uniform Convergence and Series of Functions Uniform Convergence and Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 7, 017 Outline Uniform Convergence Tests

More information

Integration and Differentiation Limit Interchange Theorems

Integration and Differentiation Limit Interchange Theorems Integration and Differentiation Limit Interchange Theorems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 11, 2018 Outline 1 A More

More information

3.2 Quadratic Equations by Graphing

3.2 Quadratic Equations by Graphing www.ck12.org Chapter 3. Quadratic Equations and Quadratic Functions 3.2 Quadratic Equations by Graphing Learning Objectives Identify the number of solutions of quadratic equations. Solve quadratic equations

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

Project 1 Modeling of Epidemics

Project 1 Modeling of Epidemics 532 Chapter 7 Nonlinear Differential Equations and tability ection 7.5 Nonlinear systems, unlike linear systems, sometimes have periodic solutions, or limit cycles, that attract other nearby solutions.

More information

M etodos Matem aticos e de Computa c ao I

M etodos Matem aticos e de Computa c ao I Métoos Matemáticos e e Computação I Complex Systems 01/22 General structure Microscopic scale Iniviual behavior Description of the constituents Moel Macroscopic scale Collective behavior Emergence of regularities

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 September 9, 2014 Outline Sin, Cos and all that! A New Power Rule Derivatives

More information

Analysis of Numerical and Exact solutions of certain SIR and SIS Epidemic models

Analysis of Numerical and Exact solutions of certain SIR and SIS Epidemic models Journal of Mathematical Modelling and Application 2011, Vol. 1, No. 4, 51-56 ISSN: 2178-2423 Analysis of Numerical and Exact solutions of certain SIR and SIS Epidemic models S O Maliki Department of Industrial

More information

Fixed Point Analysis of Kermack Mckendrick SIR Model

Fixed Point Analysis of Kermack Mckendrick SIR Model Kalpa Publications in Computing Volume, 17, Pages 13 19 ICRISET17. International Conference on Research and Innovations in Science, Engineering &Technology. Selected Papers in Computing Fixed Point Analysis

More information

MCMC 2: Lecture 2 Coding and output. Phil O Neill Theo Kypraios School of Mathematical Sciences University of Nottingham

MCMC 2: Lecture 2 Coding and output. Phil O Neill Theo Kypraios School of Mathematical Sciences University of Nottingham MCMC 2: Lecture 2 Coding and output Phil O Neill Theo Kypraios School of Mathematical Sciences University of Nottingham Contents 1. General (Markov) epidemic model 2. Non-Markov epidemic model 3. Debugging

More information

Moving Straight Ahead Practice Answers

Moving Straight Ahead Practice Answers Copright Pearson Education, Inc., or its affiliates. All Rights Reserved. Investigation Additional Practice. a. Francine:. mph; Geraldo: mph; Jennifer: 7. mph; Divide the number of miles traveled in hours

More information

18.03SC Practice Problems 2

18.03SC Practice Problems 2 8.03SC Practice Problems 2 Direction fields, integral curves, isoclines, separatrices, funnels Solution Suggestions As an example, take the ODE dy = x 2y.. Draw a big axis system and plot some isoclines,

More information

U(s) = 0 + 0s 3 + 0s 2 + 0s + 125

U(s) = 0 + 0s 3 + 0s 2 + 0s + 125 THE UNIVERSITY OF TEXAS AT SAN ANTONIO EE 5143 LINEAR SYSTEMS AND CONTROL H O M E W O R K # 2 Andres Rainiero Hernandez Coronado September 6, 2017 The objective of this homework is to test your understanding

More information