1. (a) For Lotka-Volterra (predator prey) system the non-trivial (non-zero) steady state is (2, 2), i.e., ū = 2 and v = 2.

Size: px
Start display at page:

Download "1. (a) For Lotka-Volterra (predator prey) system the non-trivial (non-zero) steady state is (2, 2), i.e., ū = 2 and v = 2."

Transcription

1 M445: Dynamics; HW #6. OLUTON 1. (a) For Lotka-Volterra (predator prey) system the non-trivial (non-zero) steady state is (2, 2), i.e., ū = 2 and v = 2. (b) For the same system with constant effort harvesting coefficient h that appears in harvesting terms shows the fraction of current population taken per unit time as a result of harvesting. Note that for non-dimensionalized systems, due to various possible choices of characteristic time that may be used to scale time variable, this coefficient may be greater than one. The meaning of the fact that h is the same in both equations: the same effort is exerted to catch both species, or similarly, the same fraction of both species is taken per unit time. (c) Non-trivial (non-zero) steady state of the system with harvesting: ū = 2 + h, v = 2 h/2. The biologically meaningful non-trivial steady state exists for < h < 4 (for harvesting we must have h > ). The type of this non-trivial steady state (for h < 4) does not change compared to the original system since for the corresponding Jacobian matrix ( (4 + 2h) 2 h/2 we have tr and det (4 + 2h)(2 h/2) >, and thus, the steady state for linearized system is a center. We note that for < h < 4 the structure of the system does not change, so the steady state for the original system is a center as well. The values of h > 4 will lead to eventual extinction of both species: First, we note that for h > 4 the right hand side of the first equation becomes negative, so du/ <, and in the long run the prey species decay to monotonously. The right hand side of the second equation will also be zero for u(t) < 2 + h < 6, and this inequality will be eventually satisfied due to the fact that u(t) is a monotonously decaying function. o, we will have dv/ <, and in the long run the predator species also decay to. Harvesting is more beneficial for prey species since the steady state value of prey species population is higher with harvesting compared to the case without harvesting: for < h < 4, ū = 2 + h > 2, while v = 2 h/2 < 2. ) 1

2 2. For competition system du dv = 4u 2u 2 2uv = 4u(1 u/2 v/2), = 2v 2v 2 2uv = 2v(1 v/1 u/1), we introduce notation: M u = 2, M v = 1, N u = 1, N v = 2 (compare with notes!). (a) Following the analysis presented in the notes (with numbers substituted for parameters M u, M v, N u, and N v, we have that the system has three steady states (ū, v). teady state (, ) is an unstable node, (2,) is a stable node, and (,1) is a saddle. pecies v will eventually go extinct since M u = 2 > 1 = N u and M v = 1 < 2 = N v (see notes!). For the same system with constant effort harvesting for one of the species: du dv = 4u 2u 2 2uv hu = (4 h)u(1 2u/(4 h) 2v/(4 h)), = 2v 2v 2 2uv = 2v(1 v/1 u/1), we introduce notation: M u = (4 h)/2, M v = 1, N u = 1, N v = (4 h)/2 (compare with notes!). (b) Coefficient h that appears in a harvesting term shows the fraction of current population of u species taken per unit time as a result of harvesting. (c) n the presence of harvesting u species will go extinct instead of v species if h satisfies inequality: M u = (4 h)/2 < 1 = N u, or h > 2 (similarly, M v = 1 > (4 h)/2 = N v, or h > 2). 3. The model of interaction between deer population in a forest and hunters [under the assumptions (1) deer population grows logistically in the absence of hunters; (2) the presence of hunters depresses deer population at a rate jointly proportional to current deer population and hunters population; (3) the hunters are attracted to the forest at a rate directly proportional to current deer population; (4) The hunters are discouraged from hunting at a rate directly proportional to the number of hunters that are already in the forest] has the form du dv = ru(1 u/m) huv, = +au bv. Here u is deer population, v is the number of hunters, r, M, h, a, and b are positive parameters. The steady states are solutions of = ru(1 u/m) huv = u(r ru/m hv), = +au bv. 2

3 There are two possible steady states (ū, v): (,) and (r/(r/m + ha/b), a/b r/(r/m + ha/b)). The Jacobian matrix is ( ) r 2rū/M h v hū. a b For steady state (,) we have ( r a b ), with det A <, so this steady state is a saddle. For the non-trivial steady state (ū, v) = (r/(r/m + ha/b), a/b r/(r/m + ha/b)) we have ( ) rū/m hū. a b ince ū > (and v > ), we have that tr rū/m b < and det rbū/m + hūa >, so this steady state is TABLE (node or focus). t follows from the above analysis that under assumptions of the model, the number of deer and hunters in the forest will eventually converge to a non-trivial steady state. 4. Below, the figures produced by MATLAB code for the R model problem are presented. R model: case #1 Populations R Populations 4 2 R model: case # Time R 3

4 25 Phase plane: vector field of R model Phase plane: direction field (normalized vectors) Phase plane: vector field and phase trajectories

5 function []=R() % We solve R model % d/ = -alpha**+gamma*(n--) % d/ = alpha**-beta* % R(t) = N - (t) - (t) % % () = N - - R % () = % % Total population: N=5; % nitial conditions #1: u1= 5-1; v1= 1; y1= [u1;v1]; % nitial conditions #2: u2= 5-21; v2= 1; y2= [u2;v2]; % etup the ODE solver, these are default tolerances: options=odeset('reltol',1e-3,'abstol',1e-6); % Time span tspan=[ 2]; %Parameters: parameters.alpha =.1; parameters.beta = 1/1; parameters.gamma = 1/1; parameters.n = 5; % olve the equations. Chose the appropriate ODE solver: solver=@ode45; %olution for case #1: [t1 yout1]=solver(@sirs1,tspan,y1,options,parameters); %olution for case #2: [t2 yout2]=solver(@sirs1,tspan,y2,options,parameters); % Analyze the output: Convenient to map variables to something simpler: %olution for case #1 u1=yout1(:,1); v1=yout1(:,2); %olution for case #2 u2=yout2(:,1); v2=yout2(:,2); %Plotting results: %%%%%%%% Time series: model solutions %%%%%%%%%%%%%%%%%%%% figure(1) subplot(2,1,1),plot(t1,u1,'bo-',t1,v1,'r*-',t1,n-u1-v1,'g.-'); legend('','','r',-1); title('r model: case #1'); ylabel('populations'); axis([ 2-5 5]) subplot(2,1,2),plot(t2,u2,'bo-',t2,v2,'r*-',t2,n-u2-v2,'g.-'); legend('','','r',-1); title('r model: case #1'); xlabel('time'); ylabel('populations'); axis([ 2-5 5]) %%%%%%%%% Vector filed %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Let us plot the vector field: (du/,dv/), % which is the same as (f(u,v),g(u,v)) figure(2) % Get subdivision for u and v: number=15; % Number of subdivisions for the plot % Lenghts of intervals in u and v that are being subdivided: umax=n; vmax=n/2; ur=linspace(,umax,number); vr=linspace(,vmax,number); % Coordinates of sample points on the phase plane where the vectors

6 % (f(u,v),g(u,v)) will be constructed: [um vm]=meshgrid(ur,vr); % Have to call the sirs1 function many times to estimate % f(u,v) and g(u,v) values at sample points: for i=1:number for j=1:number sirs1righthandide=sirs1(,[um(i,j) vm(i,j)],parameters); fm(i,j)=sirs1righthandide(1); gm(i,j)=sirs1righthandide(2); end end % Plot velocity vector field: quiver(um,vm,fm,gm); axis([,umax,,vmax]); title('phase plane: vector field of R model') xlabel('') ylabel('') %%%%%%%%%%%%%% Direction field %%%%%%%%%%%%%%%%%%% figure(3) % Computing vector lengths: norm=sqrt(fm.^2+gm.^2); % Plot direction filed (normalized vectors): quiver(um,vm,fm./norm,gm./norm,'k'); axis([,umax,,vmax]); title('phase plane: direction field (normalized vectors)'); xlabel('') ylabel('') %%%%%%%%%%%%%% Phase trajectory %%%%%%%%%%%%%%%%%%% figure(4) % Here we superimpose the velocity vector field and the phase trajectory: quiver(um,vm,fm,gm); hold on axis([,umax,,vmax]); title('phase plane: vector field and phase trajectories') xlabel('') ylabel('') plot(u1,v1,'r-') plot(u2,v2,'m-') hold off % % ODE system to be integrated: % d/ = -alpha**+gamma*(n--) % d/ = alpha**-beta* function [ydot]=sirs1(t,y,parameters) % Parameters: alpha=parameters.alpha; beta=parameters.beta; gamma=parameters.gamma; N=parameters.N; % Here are the right hand sides of differential equations: ydot=[-alpha*y(1)*y(2)+gamma*(n-y(1)-y(2)); alpha*y(1)*y(2)-beta*y(2)];

dt (0) = C 1 + 3C 2 = 3. x(t) = exp(3t).

dt (0) = C 1 + 3C 2 = 3. x(t) = exp(3t). M445: Dynamics; HW #5. SOLUTIONS so 1. a Characteristic polynomial is Corresponding general solution is λ 2 2λ 3 = λ 12 = 1 ± 1 + 3 = 1 ± 2 = { 1 3 xt = C 1 exp t + C 2 exp3t. is The derivative is dt t

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

POPULATION DYNAMICS: TWO SPECIES MODELS; Susceptible Infected Recovered (SIR) MODEL. If they co-exist in the same environment:

POPULATION DYNAMICS: TWO SPECIES MODELS; Susceptible Infected Recovered (SIR) MODEL. If they co-exist in the same environment: POPULATION DYNAMICS: TWO SPECIES MODELS; Susceptible Infected Recovered (SIR) MODEL Next logical step: consider dynamics of more than one species. We start with models of 2 interacting species. We consider,

More information

Non-Linear Models. Non-Linear Models Cont d

Non-Linear Models. Non-Linear Models Cont d Focus on more sophistiated interaction models between systems. These lead to non-linear, rather than linear, DEs; often not soluble exactly in analytical form so use Phase-Plane Analysis. This is a method

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for solving higher order ODEs and

More information

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for COMPUTATIONAL BIOLOGY A. COURSE CODES: FFR 110, FIM740GU, PhD

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for COMPUTATIONAL BIOLOGY A. COURSE CODES: FFR 110, FIM740GU, PhD CHALMERS, GÖTEBORGS UNIVERSITET EXAM for COMPUTATIONAL BIOLOGY A COURSE CODES: FFR 110, FIM740GU, PhD Time: Place: Teachers: Allowed material: Not allowed: June 8, 2018, at 08 30 12 30 Johanneberg Kristian

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MATLAB sessions: Laboratory 4 MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for

More information

3.5 Competition Models: Principle of Competitive Exclusion

3.5 Competition Models: Principle of Competitive Exclusion 94 3. Models for Interacting Populations different dimensional parameter changes. For example, doubling the carrying capacity K is exactly equivalent to halving the predator response parameter D. The dimensionless

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 75 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP. Use MATLAB solvers for solving higher order ODEs and systems

More information

Global Stability Analysis on a Predator-Prey Model with Omnivores

Global Stability Analysis on a Predator-Prey Model with Omnivores Applied Mathematical Sciences, Vol. 9, 215, no. 36, 1771-1782 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/1.12988/ams.215.512 Global Stability Analysis on a Predator-Prey Model with Omnivores Puji Andayani

More information

HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, Maximum score 7.0 pts.

HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, Maximum score 7.0 pts. HOMEWORK 3: Phase portraits for Mathmatical Models, Analysis and Simulation, Fall 2010 Report due Mon Oct 4, 2010. Maximum score 7.0 pts. Three problems are to be solved in this homework assignment. The

More information

Physics: spring-mass system, planet motion, pendulum. Biology: ecology problem, neural conduction, epidemics

Physics: spring-mass system, planet motion, pendulum. Biology: ecology problem, neural conduction, epidemics Applications of nonlinear ODE systems: Physics: spring-mass system, planet motion, pendulum Chemistry: mixing problems, chemical reactions Biology: ecology problem, neural conduction, epidemics Economy:

More information

Mathematical Modelling in Biology Lecture Notes

Mathematical Modelling in Biology Lecture Notes Mathematical Modelling in Biology Lecture Notes Ruth Baker Trinity Term 2016 Contents 1 Discrete-time models for a single species 1 1.1 Examples........................................ 1 1.2 Dynamic behaviour...................................

More information

ODE, part 2. Dynamical systems, differential equations

ODE, part 2. Dynamical systems, differential equations ODE, part 2 Anna-Karin Tornberg Mathematical Models, Analysis and Simulation Fall semester, 2011 Dynamical systems, differential equations Consider a system of n first order equations du dt = f(u, t),

More information

Phase Plane Analysis

Phase Plane Analysis Phase Plane Analysis Phase plane analysis is one of the most important techniques for studying the behavior of nonlinear systems, since there is usually no analytical solution for a nonlinear system. Background

More information

Lesson 9: Predator-Prey and ode45

Lesson 9: Predator-Prey and ode45 Lesson 9: Predator-Prey and ode45 9.1 Applied Problem. In this lesson we will allow for more than one population where they depend on each other. One population could be the predator such as a fox, and

More information

2015 Holl ISU MSM Ames, Iowa. A Few Good ODEs: An Introduction to Modeling and Computation

2015 Holl ISU MSM Ames, Iowa. A Few Good ODEs: An Introduction to Modeling and Computation 2015 Holl Mini-Conference @ ISU MSM Ames, Iowa A Few Good ODEs: An Introduction to Modeling and Computation James A. Rossmanith Department of Mathematics Iowa State University June 20 th, 2015 J.A. Rossmanith

More information

The Dynamic Behaviour of the Competing Species with Linear and Holling Type II Functional Responses by the Second Competitor

The Dynamic Behaviour of the Competing Species with Linear and Holling Type II Functional Responses by the Second Competitor , pp. 35-46 http://dx.doi.org/10.14257/ijbsbt.2017.9.3.04 The Dynamic Behaviour of the Competing Species with Linear and Holling Type II Functional Responses by the Second Competitor Alemu Geleta Wedajo

More information

Assignment 1 Logistic equation and Lotka Volterra two species competition model

Assignment 1 Logistic equation and Lotka Volterra two species competition model Assignment 1 Logistic equation and Lotka Volterra two species competition model Edvin Listo Zec edvinli@student.chalmers.se 920625-2976 August 28, 2014 Co-workers: Emma Ekberg, Sofia Toivonen 1 Question

More information

MATH 250 Homework 4: Due May 4, 2017

MATH 250 Homework 4: Due May 4, 2017 Due May 4, 17 Answer the following questions to the best of your ability. Solutions should be typed. Any plots or graphs should be included with the question (please include the questions in your solutions).

More information

Problem set 7 Math 207A, Fall 2011 Solutions

Problem set 7 Math 207A, Fall 2011 Solutions Problem set 7 Math 207A, Fall 2011 s 1. Classify the equilibrium (x, y) = (0, 0) of the system x t = x, y t = y + x 2. Is the equilibrium hyperbolic? Find an equation for the trajectories in (x, y)- phase

More information

Models Involving Interactions between Predator and Prey Populations

Models Involving Interactions between Predator and Prey Populations Models Involving Interactions between Predator and Prey Populations Matthew Mitchell Georgia College and State University December 30, 2015 Abstract Predator-prey models are used to show the intricate

More information

Predator-Prey Model with Ratio-dependent Food

Predator-Prey Model with Ratio-dependent Food University of Minnesota Duluth Department of Mathematics and Statistics Predator-Prey Model with Ratio-dependent Food Processing Response Advisor: Harlan Stech Jana Hurkova June 2013 Table of Contents

More information

Lab 5: Nonlinear Systems

Lab 5: Nonlinear Systems Lab 5: Nonlinear Systems Goals In this lab you will use the pplane6 program to study two nonlinear systems by direct numerical simulation. The first model, from population biology, displays interesting

More information

Phenomenon: Canadian lynx and snowshoe hares

Phenomenon: Canadian lynx and snowshoe hares Outline Outline of Topics Shan He School for Computational Science University of Birmingham Module 06-23836: Computational Modelling with MATLAB Phenomenon: Canadian lynx and snowshoe hares All began with

More information

Front Propagation. Chapter Reaction-Diffusion Systems Single component systems

Front Propagation. Chapter Reaction-Diffusion Systems Single component systems Chapter 8 Front Propagation 8.1 Reaction-Diffusion Systems We ve studied simple N = 1 dynamical systems of the form du dt = R(u). (8.1) Recall that the dynamics evolves u(t) monotonically toward the first

More information

Key words and phrases. Bifurcation, Difference Equations, Fixed Points, Predator - Prey System, Stability.

Key words and phrases. Bifurcation, Difference Equations, Fixed Points, Predator - Prey System, Stability. ISO 9001:008 Certified Volume, Issue, March 013 Dynamical Behavior in a Discrete Prey- Predator Interactions M.ReniSagaya Raj 1, A.George Maria Selvam, R.Janagaraj 3.and D.Pushparajan 4 1,,3 Sacred Heart

More information

1. Population dynamics of rabbits and foxes

1. Population dynamics of rabbits and foxes 1. Population dynamics of rabbits and foxes (a) A simple Lotka Volterra Model We have discussed in detail the Lotka Volterra model for predator-prey relationships dn prey dt = +R prey,o N prey (t) γn prey

More information

Lotka-Volterra Models Nizar Ezroura M53

Lotka-Volterra Models Nizar Ezroura M53 Lotka-Volterra Models Nizar Ezroura M53 The Lotka-Volterra equations are a pair of coupled first-order ODEs that are used to describe the evolution of two elements under some mutual interaction pattern.

More information

1 2 predators competing for 1 prey

1 2 predators competing for 1 prey 1 2 predators competing for 1 prey I consider here the equations for two predator species competing for 1 prey species The equations of the system are H (t) = rh(1 H K ) a1hp1 1+a a 2HP 2 1T 1H 1 + a 2

More information

Unit Ten Summary Introduction to Dynamical Systems and Chaos

Unit Ten Summary Introduction to Dynamical Systems and Chaos Unit Ten Summary Introduction to Dynamical Systems Dynamical Systems A dynamical system is a system that evolves in time according to a well-defined, unchanging rule. The study of dynamical systems is

More information

Case Study: Bifurcation Analysis of Tumor-Immune ODE System

Case Study: Bifurcation Analysis of Tumor-Immune ODE System Case Study: Bifurcation Analysis of Tumor-Immune ODE System Abstract 1 Understanding Qualitative Changes Simulations and null-cline analyzes illuminate the general behavior of the system. A Bifurcation

More information

Lecture 5: Travelling Waves

Lecture 5: Travelling Waves Computational Biology Group (CoBI), D-BSSE, ETHZ Lecture 5: Travelling Waves Prof Dagmar Iber, PhD DPhil MSc Computational Biology 2015 26. Oktober 2016 2 / 68 Contents 1 Introduction to Travelling Waves

More information

Outline. Learning Objectives. References. Lecture 2: Second-order Systems

Outline. Learning Objectives. References. Lecture 2: Second-order Systems Outline Lecture 2: Second-order Systems! Techniques based on linear systems analysis! Phase-plane analysis! Example: Neanderthal / Early man competition! Hartman-Grobman theorem -- validity of linearizations!

More information

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers

Chapter 9b: Numerical Methods for Calculus and Differential Equations. Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Chapter 9b: Numerical Methods for Calculus and Differential Equations Initial-Value Problems Euler Method Time-Step Independence MATLAB ODE Solvers Acceleration Initial-Value Problems Consider a skydiver

More information

Bindel, Fall 2011 Intro to Scientific Computing (CS 3220) Week 12: Monday, Apr 18. HW 7 is posted, and will be due in class on 4/25.

Bindel, Fall 2011 Intro to Scientific Computing (CS 3220) Week 12: Monday, Apr 18. HW 7 is posted, and will be due in class on 4/25. Logistics Week 12: Monday, Apr 18 HW 6 is due at 11:59 tonight. HW 7 is posted, and will be due in class on 4/25. The prelim is graded. An analysis and rubric are on CMS. Problem du jour For implicit methods

More information

STABILITY OF EIGENVALUES FOR PREDATOR- PREY RELATIONSHIPS

STABILITY OF EIGENVALUES FOR PREDATOR- PREY RELATIONSHIPS Research Article STABILITY OF EIGENVALUES FOR PREDATOR- PREY RELATIONSHIPS Tailor Ravi M., 2 Bhathawala P.H. Address for Correspondence Assistant professor of Laxmi Institute of Technology, Sarigam, Valsad

More information

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad Fundamentals of Dynamical Systems / Discrete-Time Models Dr. Dylan McNamara people.uncw.edu/ mcnamarad Dynamical systems theory Considers how systems autonomously change along time Ranges from Newtonian

More information

1. The growth of a cancerous tumor can be modeled by the Gompertz Law: dn. = an ln ( )

1. The growth of a cancerous tumor can be modeled by the Gompertz Law: dn. = an ln ( ) 1. The growth of a cancerous tumor can be modeled by the Gompertz Law: ( ) dn b = an ln, (1) dt N where N measures the size of the tumor. (a) Interpret the parameters a and b (both non-negative) biologically.

More information

Extreme Values and Positive/ Negative Definite Matrix Conditions

Extreme Values and Positive/ Negative Definite Matrix Conditions Extreme Values and Positive/ Negative Definite Matrix Conditions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 016 Outline 1

More information

Gerardo Zavala. Math 388. Predator-Prey Models

Gerardo Zavala. Math 388. Predator-Prey Models Gerardo Zavala Math 388 Predator-Prey Models Spring 2013 1 History In the 1920s A. J. Lotka developed a mathematical model for the interaction between two species. The mathematician Vito Volterra worked

More information

Solving Differential Equations with Simulink

Solving Differential Equations with Simulink Solving Differential Equation with Simulink Dr. R. L. Herman UNC Wilmington, Wilmington, NC March, 206 Solving ODE with Simulink, ICTCM 206 R. L. Herman Mar, 206 /9 Outline Simulink 2 Solution of ODE 3

More information

Ordinary Differential Equations: Initial Value problems (IVP)

Ordinary Differential Equations: Initial Value problems (IVP) Chapter Ordinary Differential Equations: Initial Value problems (IVP) Many engineering applications can be modeled as differential equations (DE) In this book, our emphasis is about how to use computer

More information

A Stability Analysis on Models of Cooperative and Competitive Species

A Stability Analysis on Models of Cooperative and Competitive Species Research Journal of Mathematical and Statistical Sciences ISSN 2320 6047 A Stability Analysis on Models of Cooperative and Competitive Species Abstract Gideon Kwadzo Gogovi 1, Justice Kwame Appati 1 and

More information

Lecture 42 Determining Internal Node Values

Lecture 42 Determining Internal Node Values Lecture 42 Determining Internal Node Values As seen in the previous section, a finite element solution of a boundary value problem boils down to finding the best values of the constants {C j } n, which

More information

Dynamics of Modified Leslie-Gower Predator-Prey Model with Predator Harvesting

Dynamics of Modified Leslie-Gower Predator-Prey Model with Predator Harvesting International Journal of Basic & Applied Sciences IJBAS-IJENS Vol:13 No:05 55 Dynamics of Modified Leslie-Gower Predator-Prey Model with Predator Harvesting K. Saleh Department of Mathematics, King Fahd

More information

Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger. Project I: Predator-Prey Equations

Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger. Project I: Predator-Prey Equations Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger Project I: Predator-Prey Equations The Lotka-Volterra Predator-Prey Model is given by: du dv = αu βuv = ρβuv

More information

Interactions. Yuan Gao. Spring Applied Mathematics University of Washington

Interactions. Yuan Gao. Spring Applied Mathematics University of Washington Interactions Yuan Gao Applied Mathematics University of Washington yuangao@uw.edu Spring 2015 1 / 27 Nonlinear System Consider the following coupled ODEs: dx = f (x, y). dt dy = g(x, y). dt In general,

More information

Preservation of local dynamics when applying central difference methods: application to SIR model

Preservation of local dynamics when applying central difference methods: application to SIR model Journal of Difference Equations and Applications, Vol., No. 4, April 2007, 40 Preservation of local dynamics when applying central difference methods application to SIR model LIH-ING W. ROEGER* and ROGER

More information

Journal of the Vol. 36, pp , 2017 Nigerian Mathematical Society c Nigerian Mathematical Society

Journal of the Vol. 36, pp , 2017 Nigerian Mathematical Society c Nigerian Mathematical Society Journal of the Vol. 36, pp. 47-54, 2017 Nigerian Mathematical Society c Nigerian Mathematical Society A CLASS OF GENERALIZATIONS OF THE LOTKA-VOLTERRA PREDATOR-PREY EQUATIONS HAVING EXACTLY SOLUBLE SOLUTIONS

More information

Introduction to System Dynamics

Introduction to System Dynamics SE1 Prof. Davide Manca Politecnico di Milano Dynamics and Control of Chemical Processes Solution to Lab #1 Introduction to System Dynamics Davide Manca Dynamics and Control of Chemical Processes Master

More information

AMS 27L LAB #8 Winter 2009

AMS 27L LAB #8 Winter 2009 AMS 27L LAB #8 Winter 29 Solving ODE s in Matlab Objectives:. To use Matlab s ODE Solvers 2. To practice using functions and in-line functions Matlab s ODE Suite Matlab offers a suite of ODE solvers including:

More information

Lab 13: Ordinary Differential Equations

Lab 13: Ordinary Differential Equations EGR 53L - Fall 2009 Lab 13: Ordinary Differential Equations 13.1 Introduction This lab is aimed at introducing techniques for solving initial-value problems involving ordinary differential equations using

More information

2 Solving Ordinary Differential Equations Using MATLAB

2 Solving Ordinary Differential Equations Using MATLAB Penn State Erie, The Behrend College School of Engineering E E 383 Signals and Control Lab Spring 2008 Lab 3 System Responses January 31, 2008 Due: February 7, 2008 Number of Lab Periods: 1 1 Objective

More information

Theory of Ordinary Differential Equations. Stability and Bifurcation I. John A. Burns

Theory of Ordinary Differential Equations. Stability and Bifurcation I. John A. Burns Theory of Ordinary Differential Equations Stability and Bifurcation I John A. Burns Center for Optimal Design And Control Interdisciplinary Center for Applied Mathematics Virginia Polytechnic Institute

More information

On predator-prey models

On predator-prey models Predator-prey On models ddd Department of Mathematics College of William and Mary Math 41/CSUMS Talk February 3, 1 Collaborators Sze-Bi Hsu (Tsinghua University, Hsinchu, Taiwan) Junjie Wei (Harbin Institute

More information

Continuous Threshold Policy Harvesting in Predator-Prey Models

Continuous Threshold Policy Harvesting in Predator-Prey Models Continuous Threshold Policy Harvesting in Predator-Prey Models Jon Bohn and Kaitlin Speer Department of Mathematics, University of Wisconsin - Madison Department of Mathematics, Baylor University July

More information

Nonlinear dynamics & chaos BECS

Nonlinear dynamics & chaos BECS Nonlinear dynamics & chaos BECS-114.7151 Phase portraits Focus: nonlinear systems in two dimensions General form of a vector field on the phase plane: Vector notation: Phase portraits Solution x(t) describes

More information

Continuous time population models

Continuous time population models Continuous time population models Jaap van der Meer jaap.van.der.meer@nioz.nl Abstract Many simple theoretical population models in continuous time relate the rate of change of the size of two populations

More information

Dynamical Systems and Chaos Part II: Biology Applications. Lecture 6: Population dynamics. Ilya Potapov Mathematics Department, TUT Room TD325

Dynamical Systems and Chaos Part II: Biology Applications. Lecture 6: Population dynamics. Ilya Potapov Mathematics Department, TUT Room TD325 Dynamical Systems and Chaos Part II: Biology Applications Lecture 6: Population dynamics Ilya Potapov Mathematics Department, TUT Room TD325 Living things are dynamical systems Dynamical systems theory

More information

The dynamics of disease transmission in a Prey Predator System with harvesting of prey

The dynamics of disease transmission in a Prey Predator System with harvesting of prey ISSN: 78 Volume, Issue, April The dynamics of disease transmission in a Prey Predator System with harvesting of prey, Kul Bhushan Agnihotri* Department of Applied Sciences and Humanties Shaheed Bhagat

More information

1.6: 16, 20, 24, 27, 28

1.6: 16, 20, 24, 27, 28 .6: 6, 2, 24, 27, 28 6) If A is positive definite, then A is positive definite. The proof of the above statement can easily be shown for the following 2 2 matrix, a b A = b c If that matrix is positive

More information

HARVESTING IN A TWO-PREY ONE-PREDATOR FISHERY: A BIOECONOMIC MODEL

HARVESTING IN A TWO-PREY ONE-PREDATOR FISHERY: A BIOECONOMIC MODEL ANZIAM J. 452004), 443 456 HARVESTING IN A TWO-PREY ONE-PREDATOR FISHERY: A BIOECONOMIC MODEL T. K. KAR 1 and K. S. CHAUDHURI 2 Received 22 June, 2001; revised 20 September, 2002) Abstract A multispecies

More information

Modeling the Immune System W9. Ordinary Differential Equations as Macroscopic Modeling Tool

Modeling the Immune System W9. Ordinary Differential Equations as Macroscopic Modeling Tool Modeling the Immune System W9 Ordinary Differential Equations as Macroscopic Modeling Tool 1 Lecture Notes for ODE Models We use the lecture notes Theoretical Fysiology 2006 by Rob de Boer, U. Utrecht

More information

Dynamical Analysis of a Harvested Predator-prey. Model with Ratio-dependent Response Function. and Prey Refuge

Dynamical Analysis of a Harvested Predator-prey. Model with Ratio-dependent Response Function. and Prey Refuge Applied Mathematical Sciences, Vol. 8, 214, no. 11, 527-537 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/12988/ams.214.4275 Dynamical Analysis of a Harvested Predator-prey Model with Ratio-dependent

More information

Modeling Prey and Predator Populations

Modeling Prey and Predator Populations Modeling Prey and Predator Populations Alison Pool and Lydia Silva December 15, 2006 Abstract In this document, we will explore the modeling of two populations based on their relation to one another. Specifically

More information

Modeling and Simulation Study of Mutuality Interactions with Type II functional Response and Harvesting

Modeling and Simulation Study of Mutuality Interactions with Type II functional Response and Harvesting American Journal of Applied Mathematics 201; 6(3): 109-116 http://www.sciencepublishinggroup.com/j/ajam doi: 10.116/j.ajam.2010603.12 ISSN: 2330-003 (Print); ISSN: 2330-006X (Online) Modeling and Simulation

More information

Modelling biological oscillations

Modelling biological oscillations Modelling biological oscillations Shan He School for Computational Science University of Birmingham Module 06-23836: Computational Modelling with MATLAB Outline Outline of Topics Van der Pol equation Van

More information

1 The pendulum equation

1 The pendulum equation Math 270 Honors ODE I Fall, 2008 Class notes # 5 A longer than usual homework assignment is at the end. The pendulum equation We now come to a particularly important example, the equation for an oscillating

More information

Stability of Dynamical systems

Stability of Dynamical systems Stability of Dynamical systems Stability Isolated equilibria Classification of Isolated Equilibria Attractor and Repeller Almost linear systems Jacobian Matrix Stability Consider an autonomous system u

More information

Stability Analysis And Maximum Profit Of Logistic Population Model With Time Delay And Constant Effort Of Harvesting

Stability Analysis And Maximum Profit Of Logistic Population Model With Time Delay And Constant Effort Of Harvesting Jurnal Vol 3, Matematika, No, 9-8, Juli Statistika 006 & Komputasi Vol No Juli 006 9-8, Juli 006 9 Stability Analysis And Maximum Profit Of Logistic Population Model With Time Delay And Constant Effort

More information

Math Vector Calculus II

Math Vector Calculus II Math 255 - Vector Calculus II Review Notes Vectors We assume the reader is familiar with all the basic concepts regarding vectors and vector arithmetic, such as addition/subtraction of vectors in R n,

More information

PREDATOR-PREY SYSTEM WITH EXTINCTION DYNAMICS YONG-JUNG KIM

PREDATOR-PREY SYSTEM WITH EXTINCTION DYNAMICS YONG-JUNG KIM PREDATOR-PREY SYSTEM WITH EXTINCTION DYNAMICS YONG-JUNG KIM Abstract. Most of population models, if not all of them, do not have the extinction dynamics. The Lotka-Volterra ordinary differential equations

More information

AN EXTENDED ROSENZWEIG-MACARTHUR MODEL OF A TRITROPHIC FOOD CHAIN. Nicole Rocco

AN EXTENDED ROSENZWEIG-MACARTHUR MODEL OF A TRITROPHIC FOOD CHAIN. Nicole Rocco AN EXTENDED ROSENZWEIG-MACARTHUR MODEL OF A TRITROPHIC FOOD CHAIN Nicole Rocco A Thesis Submitted to the University of North Carolina Wilmington in Partial Fulfillment of the Requirements for the Degree

More information

Lesson 4: Population, Taylor and Runge-Kutta Methods

Lesson 4: Population, Taylor and Runge-Kutta Methods Lesson 4: Population, Taylor and Runge-Kutta Methods 4.1 Applied Problem. Consider a single fish population whose size is given by x(t). The change in the size of the fish population over a given time

More information

MODELS ONE ORDINARY DIFFERENTIAL EQUATION:

MODELS ONE ORDINARY DIFFERENTIAL EQUATION: MODELS ONE ORDINARY DIFFERENTIAL EQUATION: opulation Dynamics (e.g. Malthusian, Verhulstian, Gompertz, Logistic with Harvesting) Harmonic Oscillator (e.g. pendulum) A modified normal distribution curve

More information

(Refer Slide Time: 00:32)

(Refer Slide Time: 00:32) Nonlinear Dynamical Systems Prof. Madhu. N. Belur and Prof. Harish. K. Pillai Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 12 Scilab simulation of Lotka Volterra

More information

Contents. % Abdulmalik Almeheini % MATH246 extracredit HW % problems 6 and 8 from sec 9.3

Contents. % Abdulmalik Almeheini % MATH246 extracredit HW % problems 6 and 8 from sec 9.3 Contents First (stationary/critical point locations) : Second: now we solve for the eigen values for the systems to show how the stability of these points change as alpha change % Abdulmalik Almeheini

More information

The roots are found with the following two statements. We have denoted the polynomial as p1, and the roots as roots_ p1.

The roots are found with the following two statements. We have denoted the polynomial as p1, and the roots as roots_ p1. Part II Lesson 10 Numerical Analysis Finding roots of a polynomial In MATLAB, a polynomial is expressed as a row vector of the form [an an 1 a2 a1 a0]. The elements ai of this vector are the coefficients

More information

2D-Volterra-Lotka Modeling For 2 Species

2D-Volterra-Lotka Modeling For 2 Species Majalat Al-Ulum Al-Insaniya wat - Tatbiqiya 2D-Volterra-Lotka Modeling For 2 Species Alhashmi Darah 1 University of Almergeb Department of Mathematics Faculty of Science Zliten Libya. Abstract The purpose

More information

Math Lecture 46

Math Lecture 46 Math 2280 - Lecture 46 Dylan Zwick Fall 2013 Today we re going to use the tools we ve developed in the last two lectures to analyze some systems of nonlinear differential equations that arise in simple

More information

Jonathan Kumi s Extra Credit Project

Jonathan Kumi s Extra Credit Project When a = 0 syms x y sys1 = x.*(1.5-0.5*x-y); sys2 = y.*(2-y-1.125*x); [xc, yc] = solve(sys1, sys2, x, y); disp('critical points:');disp([xc yc]) Jonathan Kumi s Extra Credit Project %Critical points are

More information

Vector Fields and Solutions to Ordinary Differential Equations using MATLAB/Octave

Vector Fields and Solutions to Ordinary Differential Equations using MATLAB/Octave Vector Fields and Solutions to Ordinary Differential Equations using MATLAB/Octave Andreas Stahel 5th December 27 Contents Vector field for the logistic equation 2 Solutions of ordinary differential equations

More information

3. Models for Interacting Populations

3. Models for Interacting Populations 3. Models for Interacting Populations When species interact the population dynamics of each species is affected. In general there is a whole web of interacting species, sometimes called a trophic web,

More information

A Discrete Numerical Scheme of Modified Leslie-Gower With Harvesting Model

A Discrete Numerical Scheme of Modified Leslie-Gower With Harvesting Model CAUCHY Jurnal Matematika Murni dan Aplikasi Volume 5(2) (2018), Pages 42-47 p-issn: 2086-0382; e-issn: 2477-3344 A Discrete Numerical Scheme of Modified Leslie-Gower With Harvesting Model Riski Nur Istiqomah

More information

Harvesting Model for Fishery Resource with Reserve Area and Modified Effort Function

Harvesting Model for Fishery Resource with Reserve Area and Modified Effort Function Malaya J. Mat. 4(2)(2016) 255 262 Harvesting Model for Fishery Resource with Reserve Area and Modified Effort Function Bhanu Gupta and Amit Sharma P.G. Department of Mathematics, JC DAV College, Dasuya

More information

Nonlinear Autonomous Dynamical systems of two dimensions. Part A

Nonlinear Autonomous Dynamical systems of two dimensions. Part A Nonlinear Autonomous Dynamical systems of two dimensions Part A Nonlinear Autonomous Dynamical systems of two dimensions x f ( x, y), x(0) x vector field y g( xy, ), y(0) y F ( f, g) 0 0 f, g are continuous

More information

Model Stability Analysis of Marine Ecosystem

Model Stability Analysis of Marine Ecosystem Vol. 1, No. 2 International Journal of Biology Model Stability Analysis of Marine Ecosystem Yuejian Jie & Yuan Yuan College of Sciences, China Agriculture University, Beijing 100094, China E-mail: jieyj@cau.edu.cn

More information

A Discrete Model of Three Species Prey- Predator System

A Discrete Model of Three Species Prey- Predator System ISSN(Online): 39-8753 ISSN (Print): 347-670 (An ISO 397: 007 Certified Organization) Vol. 4, Issue, January 05 A Discrete Model of Three Species Prey- Predator System A.George Maria Selvam, R.Janagaraj

More information

Lesson 13: Rapid Cooling and Euler-trapezoid

Lesson 13: Rapid Cooling and Euler-trapezoid Lesson 13: Rapid Cooling and Euler-trapezoid 13.1 Applied Problem. If an object is being cooled very rapidly, and the model is Newton's law of cooling, then the constant c in u t = c(usur - u) will be

More information

Numerical Integration of Ordinary Differential Equations for Initial Value Problems

Numerical Integration of Ordinary Differential Equations for Initial Value Problems Numerical Integration of Ordinary Differential Equations for Initial Value Problems Gerald Recktenwald Portland State University Department of Mechanical Engineering gerry@me.pdx.edu These slides are a

More information

Motivation and Goals. Modelling with ODEs. Continuous Processes. Ordinary Differential Equations. dy = dt

Motivation and Goals. Modelling with ODEs. Continuous Processes. Ordinary Differential Equations. dy = dt Motivation and Goals Modelling with ODEs 24.10.01 Motivation: Ordinary Differential Equations (ODEs) are very important in all branches of Science and Engineering ODEs form the basis for the simulation

More information

Local Stability Analysis of a Mathematical Model of the Interaction of Two Populations of Differential Equations (Host-Parasitoid)

Local Stability Analysis of a Mathematical Model of the Interaction of Two Populations of Differential Equations (Host-Parasitoid) Biology Medicine & Natural Product Chemistry ISSN: 089-6514 Volume 5 Number 1 016 Pages: 9-14 DOI: 10.1441/biomedich.016.51.9-14 Local Stability Analysis of a Mathematical Model of the Interaction of Two

More information

Pattern formation and Turing instability

Pattern formation and Turing instability Pattern formation and Turing instability. Gurarie Topics: - Pattern formation through symmetry breaing and loss of stability - Activator-inhibitor systems with diffusion Turing proposed a mechanism for

More information

The Role of Space in the Exploitation of Resources

The Role of Space in the Exploitation of Resources Bull Math Biol (2012) 74:1 44 DOI 10.1007/s11538-011-9649-1 ORIGINAL ARTICLE The Role of Space in the Exploitation of Resources Y. Kang N. Lanchier Received: 29 September 2010 / Accepted: 25 February 2011

More information

Reachable sets for autonomous systems of differential equations and their topological properties

Reachable sets for autonomous systems of differential equations and their topological properties American Journal of Applied Mathematics 2013; 1(4): 49-54 Published online October 30, 2013 (http://www.sciencepublishinggroup.com/j/ajam) doi: 10.11648/j.ajam.20130104.13 Reachable sets for autonomous

More information

The construction and use of a phase diagram to investigate the properties of a dynamic system

The construction and use of a phase diagram to investigate the properties of a dynamic system File: Phase.doc/pdf The construction and use of a phase diagram to investigate the properties of a dynamic system 1. Introduction Many economic or biological-economic models can be represented as dynamic

More information

Lesson 13: Rapid Cooling and Euler-trapezoid

Lesson 13: Rapid Cooling and Euler-trapezoid Lesson 3: Rapid Cooling and Euler-trapezoid 3. Applied Problem. If an object is being cooled very rapidly, and the model is Newton's law of cooling, then the constant c in u t = c(usur - u) will be large.

More information

GLOBAL DYNAMICS OF A LOTKA VOLTERRA MODEL WITH TWO PREDATORS COMPETING FOR ONE PREY JAUME LLIBRE AND DONGMEI XIAO

GLOBAL DYNAMICS OF A LOTKA VOLTERRA MODEL WITH TWO PREDATORS COMPETING FOR ONE PREY JAUME LLIBRE AND DONGMEI XIAO This is a preprint of: Global dynamics of a Lotka-Volterra model with two predators competing for one prey, Jaume Llibre, Dongmei Xiao, SIAM J Appl Math, vol 742), 434 453, 214 DOI: [11137/1392397] GLOBAL

More information