STABILITY OF EIGENVALUES FOR PREDATOR- PREY RELATIONSHIPS

Size: px
Start display at page:

Download "STABILITY OF EIGENVALUES FOR PREDATOR- PREY RELATIONSHIPS"

Transcription

1 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 2 Principal of S.S. Agrawal Institute of Management and Technology, Gandevi road, Navsari. E Mail ravi_just35@yahoo.co.in ABSTRACT In this paper, predator prey model for scientific problem has been formulated. Shark predator-prey model for the differential equations is defined. In order to check the system s stability, eigenvalues are required for that a set of equilibriums points are discussed. KEYWORDS: Lotka-Volterra Model, Equilibrium, Jacobian matrix, Stability, Eigen values. INTRODUCTION For the purpose of describing the interaction between predators and prey, we decided to imagine the relationship between Sharks and. In this model, F will always represent the population of the Fish and S will represent the population of the Sharks. The population growth of the Fish is dependent on Sharks and of natural causes. The population growth of the Sharks is dependent on the number of Sharks that die from natural causes. Formulation of the Scientific Problem: There are many instances in nature where one species of animal feeds on another species of animal, which in turn feeds on other things. The first species is called the predator and the second is called the prey. Theoretically, the predator can destroy all the prey so that the latter become extinct. However, if this happens the predator will also become extinct since, as we assume, it depends on the prey for its existence. What actually happens in nature is that a cycle develops where at some the prey may be abundant and the predators few. Because of the abundance of prey, the predator population grows and reduces the population of prey. This results in a reduction of predators and consequent increase of prey and the cycle continues. An important problem of ecology, the science which studies the interrelationships of organisms and their environment, is to investigate the question of coexistence of the two species. To this end, it is natural to seek a mathematical formulation of this predator-prey problem and to use it to forecast the behaviour of populations of various species at different s. Risk and Food Availability: Sharks appear to be a major threat to. Availability of prey helps animals decide where to live. Predator-Prey Model: Fish & Sharks: We will create a mathematical model which describes the relationship between predator and prey in the ocean. Where the predators are and the prey are. In order for this model to work we must first make a few assumptions. Assumptions: Fish only die by being eaten by, and of natural causes. Shark only die from natural causes. The interaction between shark and can be described by a function. Differential Equations and how it relates to Predator-Prey: One of the most interesting applications of systems of differential equations is the predator-prey problem. In this project we will consider an environment containing two related populations-a prey population, such as, and a predator population, such as. Clearly, it is reasonable to expect that the two populations react in such a way as to influence each other s size. The differential equations are very much helpful in many areas of science. But most of interesting real life problems involves more than one unknown function. Therefore, the use of system of differential equations is very useful. Without loss of generality, we will IJAET/Vol.II/ Issue II/April-June, 2/4-49

2 concentrate on systems of two differential equations. The Lotka Volterra Model: The Model The growth rate of the population is influenced, according to the first differential equation, by three different terms. It is positively influenced by the current population size, as shown by the term, where a is a constant, nonnegative real number and is the birth rate of the. It is negatively influenced by the natural death rate of the, as shown by the term, where b is a constant, nonnegative real number and is the natural death rate of the. It is also negatively influenced by the death rate of the due to consumption by as shown by the term, where System is a constant non-negative real number and is the death rate of the due to consumption by. The Model Initial Conditions F : The population of the at t. S : The population of the at t. : The initial size of the population. : The initial size of the shark population. a : Reproduction rate of. b : Death rate of. C : Proportional to the number of that a shark can eat. D : Amount of energy that a supplies to the consuming shark. K : Death rate of., the growth rate of the Shark population, is influenced, according to the second differential equation, by two different terms. It is negatively influenced by the current shark population size as shown by the term, where is a constant nonnegative real number and is the shark population. It is positively influenced by the shark interactions as shown by the term, where d is a constant nonnegative real number, is the shark population and is the population. Equilibrium Points: Once the initial equations are understood, the next step is to find the equilibrium points. These equilibrium points represent points on the graph of the function which are significant. These are shown by the following computations. Let and To compute the equilibrium points we solve Solution: When and When Solution:. Now we find all the combinations: One of our equilibrium points is. or or For When, then Thus, one of our equilibrium points is. For and ; Solution: Thus, one of our equilibrium points is Our equilibrium points are Now, to study the stability of the equilibrium points we first need to find the Jacobian matrix which is:,. IJAET/Vol.II/ Issue II/April-June, 2/4-49

3 To study the stability of :, Solution: Semi-stable since one eigenvalue is negative and one is positive. To study the stability of :, Solution:. Stable if. Semi-stable if. To study the stability of : J = Solution: If we simplify a little more, we get: Stable since both of the real parts are negative. The imaginary numbers tells us that it will be periodic.. Different Case Study For Checking The Variation In Eigen Value Case :, INPUT function ydot = subprog(t,y); yd()=6*y()-2*y()^2-4*y()*y(2); yd(2)=-3*y(2)+5*y()*y(2); ydot = [yd() yd(2)]'; subprog3 x= y=.5 [t y]=ode45(@subprog,[ 5],[x y]); plot(y) legend('',' ') xlabel('') ylabel(',') IJAET/Vol.II/ Issue II/April-June, 2/4-49

4 OUTPUT ,s harks , , IJAET/Vol.II/ Issue II/April-June, 2/4-49

5 In this case, of course is the critical point for the population in a shark-free world, and for the population living with. This case holds true regardless of the initial conditions, as long as, and. Case 2:, INPUT function ydot = subprog(t, y); yd()=2*y()-6*y()^2-4*y()*y(2); yd(2)=-3*y(2)+5*y()*y(2); ydot=[yd() yd(2)]'; subprog3 x= y=.5 plot(y) legend('',' ') xlabel('') ylabel(',').2 ;.8 fis h,s hark s OUTPUT fis h,s hark s IJAET/Vol.II/ Issue II/April-June, 2/4-49

6 .6.5.4, In this case, when is less than conclusion, which is supported by simple algebra. When, then for the shark equation, the critical point becomes a negative number! results in a negative number. Therefore in this case, the shark population will die out REGARDLESS of the initial conditions! So the solution would converge to the shark-free stable point. Case 3: All constants are equal, INPUT function ydot=subprog(t,y); yd()=*y()-*y()^2-*y()*y(2); yd(2)=-*y(2)+*y()*y(2); ydot=[yd() yd(2)]'; subprog3 x= y=.5 [t y]=ode45(@subprog,[ 5],[x y]); plot(y) legend('',' ') xlabel('') ylabel(',') OUTPUT.9, IJAET/Vol.II/ Issue II/April-June, 2/4-49

7 .5, , In this case, what if all of the constants were the same? A simple glance at the equations tells us that this would be similar to the second case: We get, yet the critical point would be which is on the y-axis (S) and identical to the stable point for the population in a shark-free world. So here the die out again. (But it s hard to feel sorry for!) Case4:( ),. INPUT function ydot=subprog(t,y); yd()=2*y()-*y()^2-*y()*y(2); yd(2)=-*y(2)+*y()*y(2); ydot=[yd() yd(2)]'; subprog3 x=2 y=3 [t y]=ode45(@subprog,[ 5],[x y]); plot(y) legend('',' ') xlabel('') ylabel(',') IJAET/Vol.II/ Issue II/April-June, 2/4-49

8 OUTPUT , , in this case, we make which turns the model into the simplest form of the predator/prey model. The new equations look like this: and So the critical point becomes and we get an ellipse around the critical point, the shape and size depending on the constants and initial conditions. So both the and shark populations wax and wane in a cyclic pattern with the lagging behind the. Case 5: INPUT function ydot=subprog(t,y); yd()=2*y()-*y()^2-*y()*y(2); yd(2)=-*y(2)+*y()*y(2); ydot=[yd() yd(2)]'; subprog3 x= IJAET/Vol.II/ Issue II/April-June, 2/4-49

9 y=.5 [t 5],[x y]); plot(y) legend('',' ') xlabel('') label(',') , OUTPUT T , Now for the last case, we pose the question: What happens when, i.e.? Answer: This is pretty much similar to the first case, since, with a simpler spiral as the result. The only significant impact is the location of the critical point. There are other cases that we have yet to explore here, such as a=, c=, k =,, or a combination of those, but those would render the model meaningless, as λ they would cancel the relationship between the and the or eliminate the s growth rate or the shark s death rate. IJAET/Vol.II/ Issue II/April-June, 2/4-49

10 CONCLUSION This Lotka-Volterra Predator-Prey Model is a rudimentary model of the complex ecology of this world. It assumes just one prey for the predator, and vice versa. It also assumes no outside influences like disease, changing conditions, pollution, and so on. However, the model can be expanded to include other variables, and we have Lotka-Volterra Competition Model, which models two competing species and the resources that they need to survive. We can polish the equations by adding more variables and get a better picture of the ecology. But with more variables, the model becomes more complex and would require more brains or computer resources. This model is an excellent tool to teach the principles involved in ecology, and to show some rather counter-initiative results. It also shows a special relationship between biology and mathematics. Now, what does this has to do with orbital mechanics? Simple: this model is similar to the models of orbits with those spirals, contours and curves. We can apply this model with constants representing gravitational pulls and speeds of bodies. Nomenclature: F : The population of the at t. S : The population of the at t. a : Reproduction rate of. b : Death rate of. C : Proportional to the number of that a shark can eat. D : Amount of energy that a supplies to the consuming shark. K : Death rate of. Superscript: : Initial condition REFERENCES. Boyce, William. Elementary Differential Equations. New York: John Wiley & Sons. 2. Cullen, Michael & Zill, Dennis. Differential Equations with Boundary-Value Problems. 3. Zill, Dennis. A First Course in Differential Equations: The Classic Fifth Edition. 4. Numerical Linear Algebra And Applications by Biswa Nath Datta IJAET/Vol.II/ Issue II/April-June, 2/4-49

A NUMERICAL STUDY ON PREDATOR PREY MODEL

A NUMERICAL STUDY ON PREDATOR PREY MODEL International Conference Mathematical and Computational Biology 2011 International Journal of Modern Physics: Conference Series Vol. 9 (2012) 347 353 World Scientific Publishing Company DOI: 10.1142/S2010194512005417

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

14.1. KEY CONCEPT Every organism has a habitat and a niche. 38 Reinforcement Unit 5 Resource Book

14.1. KEY CONCEPT Every organism has a habitat and a niche. 38 Reinforcement Unit 5 Resource Book 14.1 HABITAT AND NICHE KEY CONCEPT Every organism has a habitat and a niche. A habitat is all of the living and nonliving factors in the area where an organism lives. For example, the habitat of a frog

More information

Multiple choice 2 pts each): x 2 = 18) Essay (pre-prepared) / 15 points. 19) Short Answer: / 2 points. 20) Short Answer / 5 points

Multiple choice 2 pts each): x 2 = 18) Essay (pre-prepared) / 15 points. 19) Short Answer: / 2 points. 20) Short Answer / 5 points P 1 Biology 217: Ecology Second Exam Fall 2004 There should be 7 ps in this exam - take a moment and count them now. Put your name on the first p of the exam, and on each of the ps with short answer questions.

More information

Population Dynamics Graphs

Population Dynamics Graphs Dynamics Graphs OJETIVES: - to learn about three types of population dynamics graphs - to determine which type of graph you constructed from the Pike and Perch Game - to interpret (describe, analyze) graphs

More information

Name Student ID. Good luck and impress us with your toolkit of ecological knowledge and concepts!

Name Student ID. Good luck and impress us with your toolkit of ecological knowledge and concepts! Page 1 BIOLOGY 150 Final Exam Winter Quarter 2000 Before starting be sure to put your name and student number on the top of each page. MINUS 3 POINTS IF YOU DO NOT WRITE YOUR NAME ON EACH PAGE! You have

More information

INTERPRETING POPULATION DYNAMICS GRAPH

INTERPRETING POPULATION DYNAMICS GRAPH INTERPRETING POPULATION DYNAMIS GRAPH OJETIVES TASKS Name: To learn about three types of population dynamics graphs To determine which type of graph you constructed from the Pike and Perch Game To interpret

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

BIOL 410 Population and Community Ecology. Predation

BIOL 410 Population and Community Ecology. Predation BIOL 410 Population and Community Ecology Predation Intraguild Predation Occurs when one species not only competes with its heterospecific guild member, but also occasionally preys upon it Species 1 Competitor

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

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

Bay Area Scientists in Schools

Bay Area Scientists in Schools Lesson Name: Food Webs/Clipfish Grade Level: 6th Grade Bay Area Scientists in Schools Objectives: To teach students about the study of community ecology, and how changes in one part of a community affects

More information

4. Ecology and Population Biology

4. Ecology and Population Biology 4. Ecology and Population Biology 4.1 Ecology and The Energy Cycle 4.2 Ecological Cycles 4.3 Population Growth and Models 4.4 Population Growth and Limiting Factors 4.5 Community Structure and Biogeography

More information

11/10/13. How do populations and communities interact and change? Populations. What do you think? Do you agree or disagree? Do you agree or disagree?

11/10/13. How do populations and communities interact and change? Populations. What do you think? Do you agree or disagree? Do you agree or disagree? Chapter Introduction Lesson 1 Populations Lesson 2 Changing Populations Lesson 3 Communities Chapter Wrap-Up How do populations and communities interact and change? What do you think? Before you begin,

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

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

SETUP: creates the world based on the settings for each variable GO: starts and ends the simulation

SETUP: creates the world based on the settings for each variable GO: starts and ends the simulation Wolf Sheep Predation Simulation Double-click on NetLogo to open the program. Go to File..Models Library Click on the + next to Biology to show the drop-down menu. Select Wolf Sheep Predation and click

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

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

REVISION: POPULATION ECOLOGY 18 SEPTEMBER 2013

REVISION: POPULATION ECOLOGY 18 SEPTEMBER 2013 REVISION: POPULATION ECOLOGY 18 SEPTEMBER 2013 Lesson Description In this lesson we: Revise population ecology by working through some exam questions. Key Concepts Definition of Population A population

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

Predict the effect of increased competition for abiotic and biotic resources on a food web. colored pencils graph paper ruler

Predict the effect of increased competition for abiotic and biotic resources on a food web. colored pencils graph paper ruler Edit File QUICK LAB Effect of Abiotic and Biotic Factors No organism exists in isolation. Organisms depend on and compete for the abiotic, or non-living, factors in its environment. For example, organisms

More information

Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin

Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin Research Background: Imagine you are snorkeling on a coral reef where you can see many species living together.

More information

BIOS 3010: ECOLOGY. Dr Stephen Malcolm. Laboratory 6: Lotka-Volterra, the logistic. equation & Isle Royale

BIOS 3010: ECOLOGY. Dr Stephen Malcolm. Laboratory 6: Lotka-Volterra, the logistic. equation & Isle Royale BIOS 3010: ECOLOGY Dr Stephen Malcolm Laboratory 6: Lotka-Volterra, the logistic equation & Isle Royale This is a computer-based activity using Populus software (P), followed by EcoBeaker analyses of moose

More information

Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin

Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin Won t you be my urchin? Featured scientist: Sarah W. Davies from University of Texas at Austin Research Background: Imagine you are snorkeling on a coral reef! You see lots of plants and animals living

More information

Lecture 20/Lab 21: Systems of Nonlinear ODEs

Lecture 20/Lab 21: Systems of Nonlinear ODEs Lecture 20/Lab 21: Systems of Nonlinear ODEs MAR514 Geoffrey Cowles Department of Fisheries Oceanography School for Marine Science and Technology University of Massachusetts-Dartmouth Coupled ODEs: Species

More information

NUMERICAL SIMULATION DYNAMICAL MODEL OF THREE-SPECIES FOOD CHAIN WITH LOTKA-VOLTERRA LINEAR FUNCTIONAL RESPONSE

NUMERICAL SIMULATION DYNAMICAL MODEL OF THREE-SPECIES FOOD CHAIN WITH LOTKA-VOLTERRA LINEAR FUNCTIONAL RESPONSE Journal of Sustainability Science and Management Volume 6 Number 1, June 2011: 44-50 ISSN: 1823-8556 Universiti Malaysia Terengganu Publisher NUMERICAL SIMULATION DYNAMICAL MODEL OF THREE-SPECIES FOOD

More information

9/19/2016 CHAPTER 1: THE STUDY OF LIFE SECTION 1: INTRODUCTION TO THE SCIENCE OF LIFE BIOLOGY

9/19/2016 CHAPTER 1: THE STUDY OF LIFE SECTION 1: INTRODUCTION TO THE SCIENCE OF LIFE BIOLOGY CHAPTER 1: THE STUDY OF LIFE SECTION 1: INTRODUCTION TO BIOLOGY Ms. Diana THE SCIENCE OF LIFE Biology is the study of living things. In biology, you study the origins and history of life and once-living

More information

Predator-Prey Population Models

Predator-Prey Population Models 21 Predator-Prey Population Models Tools Used in Lab 21 Hudson Bay Data (Hare- Lynx) Lotka-Volterra Lotka-Volterra with Harvest How can we model the interaction between a species of predators and their

More information

Parameter Sensitivity In A Lattice Ecosystem With Intraguild Predation

Parameter Sensitivity In A Lattice Ecosystem With Intraguild Predation Parameter Sensitivity In A Lattice Ecosystem With Intraguild Predation N. Nakagiri a, K. Tainaka a, T. Togashi b, T. Miyazaki b and J. Yoshimura a a Department of Systems Engineering, Shizuoka University,

More information

Name: Section: Number:

Name: Section: Number: Name: Section: Number: 2 3 Vocabulary Word Definition competition p.114 parasite p.117 host p.117 succession p.118 extinct p.120 endangered p.120 hazardous waste p.126 4 5 6 7 Lesson 1: How are ecosystems

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

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

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

Quazi accurate photo history

Quazi accurate photo history Quazi accurate photo history Evolution- change over time Fossils preserved remains Geologic Time earth s history The evidence shows changes in environment changes in species The Theory of Evolution supported

More information

The Living World Continued: Populations and Communities

The Living World Continued: Populations and Communities The Living World Continued: Populations and Communities Ecosystem Communities Populations Review: Parts of an Ecosystem 1) An individual in a species: One organism of a species. a species must be genetically

More information

THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A 2 2 SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS

THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A 2 2 SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS Maria P. Skhosana and Stephan V. Joubert, Tshwane University

More information

Dynamics Analysis of Anti-predator Model on Intermediate Predator With Ratio Dependent Functional Responses

Dynamics Analysis of Anti-predator Model on Intermediate Predator With Ratio Dependent Functional Responses Journal of Physics: Conference Series PAPER OPEN ACCESS Dynamics Analysis of Anti-predator Model on Intermediate Predator With Ratio Dependent Functional Responses To cite this article: D Savitri 2018

More information

BIOS 6150: Ecology Dr. Stephen Malcolm, Department of Biological Sciences

BIOS 6150: Ecology Dr. Stephen Malcolm, Department of Biological Sciences BIOS 6150: Ecology Dr. Stephen Malcolm, Department of Biological Sciences Week 7: Dynamics of Predation. Lecture summary: Categories of predation. Linked prey-predator cycles. Lotka-Volterra model. Density-dependence.

More information

Effect of Species 2 on Species 1 Competition - - Predator-Prey + - Parasite-Host + -

Effect of Species 2 on Species 1 Competition - - Predator-Prey + - Parasite-Host + - Community Ecology Community - a group of organisms, of different species, living in the same area Community ecology is the study of the interactions between species The presence of one species may affect

More information

Community Ecology. Classification of types of interspecific interactions: Effect of Species 1 on Species 2

Community Ecology. Classification of types of interspecific interactions: Effect of Species 1 on Species 2 Community Ecology Community - a group of organisms, of different species, living in the same area Community ecology is the study of the interactions between species The presence of one species may affect

More information

Dynamical Systems: Ecological Modeling

Dynamical Systems: Ecological Modeling Dynamical Systems: Ecological Modeling G Söderbacka Abstract Ecological modeling is becoming increasingly more important for modern engineers. The mathematical language of dynamical systems has been applied

More information

Lab #6: Predator Prey Interactions

Lab #6: Predator Prey Interactions Lab #6: Predator Interactions This exercise illustrates how different populations interact within a community, and how this interaction can influence the process of evolution in both species. The relationship

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

PSSA Science Review. Organisms and the Environment. Organisms and the Environment

PSSA Science Review. Organisms and the Environment. Organisms and the Environment PSSA Science Review Organisms and the Environment Organisms and the Environment 1. Natural Selection 2. Heredity 3. Ecological Relationships and Systems 4. Change and the Environment 5. Humans and the

More information

UNIT 5. ECOSYSTEMS. Biocenosis Biotope Biotic factors Abiotic factors

UNIT 5. ECOSYSTEMS. Biocenosis Biotope Biotic factors Abiotic factors UNIT 5. ECOSYSTEMS 1. Define: ecosystem, biocenosis, biotope, abiotic factor, biotic factor 2. Complete using this word: ecosphere, biosphere, ecology, ecosystem a) The is all of the living thing on Earth.

More information

Understanding Populations Section 1. Chapter 8 Understanding Populations Section1, How Populations Change in Size DAY ONE

Understanding Populations Section 1. Chapter 8 Understanding Populations Section1, How Populations Change in Size DAY ONE Chapter 8 Understanding Populations Section1, How Populations Change in Size DAY ONE What Is a Population? A population is a group of organisms of the same species that live in a specific geographical

More information

Biology 11 Unit 1: Fundamentals. Lesson 1: Ecology

Biology 11 Unit 1: Fundamentals. Lesson 1: Ecology Biology 11 Unit 1: Fundamentals Lesson 1: Ecology Objectives In this section you will be learning about: ecosystem structure energy flow through an ecosystem photosynthesis and cellular respiration factors

More information

Ecology. Bio Sphere. Feeding Relationships

Ecology. Bio Sphere. Feeding Relationships Ecology Bio Sphere Feeding Relationships with a whole lot of other creatures Ecology Putting it all together study of interactions between creatures & their environment, because Everything is connected

More information

Ordinary Differential Equations

Ordinary Differential Equations Ordinary Differential Equations Michael H. F. Wilkinson Institute for Mathematics and Computing Science University of Groningen The Netherlands December 2005 Overview What are Ordinary Differential Equations

More information

Answer Key Niche and Carrying Capacity Review Questions 1. A 2. A 3. B 4. A 5. B 6. A 7. D 8. C 9. A 10. B 11. A 12. D 13. B 14. D 15.

Answer Key Niche and Carrying Capacity Review Questions 1. A 2. A 3. B 4. A 5. B 6. A 7. D 8. C 9. A 10. B 11. A 12. D 13. B 14. D 15. Answer Key Niche and Carrying Capacity Review Questions 1. A 2. A 3. B 4. A 5. B 6. A 7. D 8. C 9. A 10. B 11. A 12. D 13. B 14. D 15. D 1. The diagram below represents a remora fish attached to a shark.

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

Predation. Predation & Herbivory. Lotka-Volterra. Predation rate. Total rate of predation. Predator population 10/23/2013. Review types of predation

Predation. Predation & Herbivory. Lotka-Volterra. Predation rate. Total rate of predation. Predator population 10/23/2013. Review types of predation Predation & Herbivory Chapter 14 Predation Review types of predation Carnivory Parasitism Parasitoidism Cannabalism Lotka-Volterra Predators control prey populations and prey control predator populations

More information

Population Ecology and the Distribution of Organisms. Essential Knowledge Objectives 2.D.1 (a-c), 4.A.5 (c), 4.A.6 (e)

Population Ecology and the Distribution of Organisms. Essential Knowledge Objectives 2.D.1 (a-c), 4.A.5 (c), 4.A.6 (e) Population Ecology and the Distribution of Organisms Essential Knowledge Objectives 2.D.1 (a-c), 4.A.5 (c), 4.A.6 (e) Ecology The scientific study of the interactions between organisms and the environment

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

Study Guide: Unit A Interactions & Ecosystems

Study Guide: Unit A Interactions & Ecosystems Study Guide: Unit A Interactions & Ecosystems Name: Pattern: Vocabulary: Section 1 Section 2 Ecosystem Consumer Biotic Producer Abiotic Carnivore Organism Herbivore Species Omnivore Population Decomposer

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

Unit 6 Populations Dynamics

Unit 6 Populations Dynamics Unit 6 Populations Dynamics Define these 26 terms: Commensalism Habitat Herbivory Mutualism Niche Parasitism Predator Prey Resource Partitioning Symbiosis Age structure Population density Population distribution

More information

Age (x) nx lx. Population dynamics Population size through time should be predictable N t+1 = N t + B + I - D - E

Age (x) nx lx. Population dynamics Population size through time should be predictable N t+1 = N t + B + I - D - E Population dynamics Population size through time should be predictable N t+1 = N t + B + I - D - E Time 1 N = 100 20 births 25 deaths 10 immigrants 15 emmigrants Time 2 100 + 20 +10 25 15 = 90 Life History

More information

Chapter 6 Population and Community Ecology

Chapter 6 Population and Community Ecology Chapter 6 Population and Community Ecology Friedland and Relyea Environmental Science for AP, second edition 2015 W.H. Freeman and Company/BFW AP is a trademark registered and/or owned by the College Board,

More information

Predation. Vine snake eating a young iguana, Panama. Vertebrate predators: lions and jaguars

Predation. Vine snake eating a young iguana, Panama. Vertebrate predators: lions and jaguars Predation Vine snake eating a young iguana, Panama Vertebrate predators: lions and jaguars 1 Most predators are insects Parasitoids lay eggs in their hosts, and the larvae consume the host from the inside,

More information

POPULATION GROWTH MODELING

POPULATION GROWTH MODELING POPULATION GROWTH MODELING INTRODUCTION All organisms tend to show the capability of unlimited exponential growth. Consequently, mathematical models have been developed to try to simulate this phenomenon.

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

Predator-Prey Population Dynamics

Predator-Prey Population Dynamics Predator-Prey Population Dynamics Gonzalo Mateos Dept. of ECE and Goergen Institute for Data Science University of Rochester gmateosb@ece.rochester.edu http://www.ece.rochester.edu/~gmateosb/ October 2,

More information

BIO S380T Page 1 Summer 2005: Exam 2

BIO S380T Page 1 Summer 2005: Exam 2 BIO S380T Page 1 Part I: Definitions. [5 points for each term] For each term, provide a brief definition that also indicates why the term is important in ecology or evolutionary biology. Where I ve provided

More information

Chapter 6 Population and Community Ecology. Thursday, October 19, 17

Chapter 6 Population and Community Ecology. Thursday, October 19, 17 Chapter 6 Population and Community Ecology Module 18 The Abundance and Distribution of After reading this module you should be able to explain how nature exists at several levels of complexity. discuss

More information

BIOLOGY Unit 2: Ecology Review Guide

BIOLOGY Unit 2: Ecology Review Guide BIOLOGY 621 - Unit 2: Ecology Review Guide Worksheets to look over: BLUE notes packets on: o "Unit Two: Ecology" o "Feeding Relationships" o "Succession & Growth" Do Now's on: o "Food Web & Food Chains"

More information

Yakın Doğu Üniversitesi Mimarlık Fakültesi Peyzaj Mimarlığı Bölümü. PM 317 Human and Environment Assoc. Prof. Dr. Salih GÜCEL

Yakın Doğu Üniversitesi Mimarlık Fakültesi Peyzaj Mimarlığı Bölümü. PM 317 Human and Environment Assoc. Prof. Dr. Salih GÜCEL Yakın Doğu Üniversitesi Mimarlık Fakültesi Peyzaj Mimarlığı Bölümü PM 317 Human and Environment Assoc. Prof. Dr. Salih GÜCEL Ecology & Ecosystems Principles of Ecology Ecology is the study of the interactions

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

Ecology Regulation, Fluctuations and Metapopulations

Ecology Regulation, Fluctuations and Metapopulations Ecology Regulation, Fluctuations and Metapopulations The Influence of Density on Population Growth and Consideration of Geographic Structure in Populations Predictions of Logistic Growth The reality of

More information

Ecology Notes Part 1. Abiotic NONliving components in an ecosystem. Ecosystem

Ecology Notes Part 1. Abiotic NONliving components in an ecosystem. Ecosystem Ecology Notes Part 1 Ecology the study of the relationship between organisms and their environment Ecosystem an organism s surroundings consisting of both living and nonliving things and how that organism

More information

Predation is.. The eating of live organisms, regardless of their identity

Predation is.. The eating of live organisms, regardless of their identity Predation Predation Predation is.. The eating of live organisms, regardless of their identity Predation 1)Moves energy and nutrients through the ecosystem 2)Regulates populations 3)Weeds the unfit from

More information

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Assignment #23 Reading Assignment: Please read the following: Industrial

More information

Chapter 9 Population Dynamics, Carrying Capacity, and Conservation Biology

Chapter 9 Population Dynamics, Carrying Capacity, and Conservation Biology Chapter 9 Population Dynamics, Carrying Capacity, and Conservation Biology 9-1 Population Dynamics & Carrying Capacity Populations change in response to enviromental stress or changes in evironmental conditions

More information

Chapter 4 AND 5 Practice

Chapter 4 AND 5 Practice Name: Chapter 4 AND 5 Practice 1. Events that occur in four different ecosystems are shown in the chart below. Which ecosystem would most likely require the most time for ecological succession to restore

More information

Unit 8: Ecology: Ecosystems and Communities

Unit 8: Ecology: Ecosystems and Communities Unit 8: Ecology: Ecosystems and Communities An ecosystem consists of all the plants and animals that interact with the nonliving things in an area. Biosphere = area on Earth where living things are found

More information

Interactions of Living Things

Interactions of Living Things CHAPTER 14 LESSON 2 Interactions of Living Things Populations and Communities Key Concepts How do individuals and groups of organisms interact? What are some examples of symbiotic relationships? What do

More information

Part 1: Overview of Ordinary Dierential Equations 1 Chapter 1 Basic Concepts and Problems 1.1 Problems Leading to Ordinary Dierential Equations Many scientic and engineering problems are modeled by systems

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

Ecology! the study of the relationship between organisms and their environment

Ecology! the study of the relationship between organisms and their environment Ecology Notes Ecology! the study of the relationship between organisms and their environment An ecosystem is an organism s surroundings consisting of both living and nonliving things. Abiotic NONliving

More information

Equilibrium, Positive and Negative Feedback

Equilibrium, Positive and Negative Feedback Equilibrium, Positive and Negative Feedback Most ecosystems are very complex. There are many flows and storages. A high level of complexity makes for a more stable system which can withstand stress and

More information

Food Chains. energy: what is needed to do work or cause change

Food Chains. energy: what is needed to do work or cause change Have you ever seen a picture that shows a little fish about to be eaten by a big fish? Sometimes the big fish has an even bigger fish behind it. This is a simple food chain. A food chain is the path of

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

Nonlinear Dynamics. Moreno Marzolla Dip. di Informatica Scienza e Ingegneria (DISI) Università di Bologna.

Nonlinear Dynamics. Moreno Marzolla Dip. di Informatica Scienza e Ingegneria (DISI) Università di Bologna. Nonlinear Dynamics Moreno Marzolla Dip. di Informatica Scienza e Ingegneria (DISI) Università di Bologna http://www.moreno.marzolla.name/ 2 Introduction: Dynamics of Simple Maps 3 Dynamical systems A dynamical

More information

Ecological Relationships

Ecological Relationships Why? Ecological Relationships What symbiotic relationships are seen in ecosystems? All living organisms need each other in some way to survive. This can include the interactions between predators and their

More information

Directions: For each of the questions or incomplete statements below, choose the best of the answer choices given and write your answer on the line.

Directions: For each of the questions or incomplete statements below, choose the best of the answer choices given and write your answer on the line. Name: Organisms and Their Environment Practice Test Section: Directions: For each of the questions or incomplete statements below, choose the best of the answer choices given and write your answer on the

More information

Types of Consumers. herbivores

Types of Consumers. herbivores no energy = no life Types of Consumers herbivores herbivore us vegetation to swallow or devour Types of Consumers herbivores the organisms that eat plants carnivores carnivore us flesh to swallow or devour

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

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

A Producer-Consumer Model With Stoichiometry

A Producer-Consumer Model With Stoichiometry A Producer-Consumer Model With Stoichiometry Plan B project toward the completion of the Master of Science degree in Mathematics at University of Minnesota Duluth Respectfully submitted by Laura Joan Zimmermann

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

BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences

BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences BIOS 5970: Plant-Herbivore Interactions Dr. Stephen Malcolm, Department of Biological Sciences D. POPULATION & COMMUNITY DYNAMICS Week 10. Population models 1: Lecture summary: Distribution and abundance

More information

Ecology: Part 1 Mrs. Bradbury

Ecology: Part 1 Mrs. Bradbury Ecology: Part 1 Mrs. Bradbury Biotic and Abiotic Factors All environments include living and non-living things, that affect the organisms that live there. Biotic Factors all the living organisms in an

More information

7. E C. 5 B. 1 D E V E L O P A N D U S E M O D E L S T O E X P L A I N H O W O R G A N I S M S I N T E R A C T I N A C O M P E T I T I V E O R M U T

7. E C. 5 B. 1 D E V E L O P A N D U S E M O D E L S T O E X P L A I N H O W O R G A N I S M S I N T E R A C T I N A C O M P E T I T I V E O R M U T 7. E C. 5 B. 1 D E V E L O P A N D U S E M O D E L S T O E X P L A I N H O W O R G A N I S M S I N T E R A C T I N A C O M P E T I T I V E O R M U T U A L L Y B E N E F I C I A L R E L A T I O N S H I

More information

Student Background Readings for Bug Dynamics: The Logistic Map

Student Background Readings for Bug Dynamics: The Logistic Map Student Background Readings for Bug Dynamics: The Logistic Map Figure 1 The population as a function of a growth rate parameter observed in the experiment of [Bugs]. Graphs such as this are called bifurcation

More information

Organisms and Their Environment Student Contract

Organisms and Their Environment Student Contract Organisms and Their Environment Student Contract I contract this study guide for a grade of C. I agree to complete all of the items coded + by the due date specified with 90% accuracy. If I complete the

More information

EXIT: How would you explain what you learned today to someone who was absent?

EXIT: How would you explain what you learned today to someone who was absent? AGENDA ABSENT Friday 9/12 week-5 TOPIC: Ecology Organization OBJ : 4&5 DO NOW: Hand in Progress Report EXT: Relationship WKSHT DUE DATE: Monday DW: Foldable QUIZ-MONDAY 9/15 -------------------------------------------------------------------------------

More information

SWMS Science Department

SWMS Science Department Big Idea 17 Interdependence SC.7.L.17.1 Explain and illustrate the roles of and relationships among producers, consumers, and decomposers in the process of energy transfer in a food web. SC.7.L.17.2 Compare

More information

1) Which of the following describes the mammals, fish, birds, and plants that live in an environment? a) Abiotic c) biome b) population d) biotic

1) Which of the following describes the mammals, fish, birds, and plants that live in an environment? a) Abiotic c) biome b) population d) biotic CH.16 practice TEST -6th grade Multiple Choice Identify the choice that best completes the statement or answers the question. 1) Which of the following describes the mammals, fish, birds, and plants that

More information

THETA-LOGISTIC PREDATOR PREY

THETA-LOGISTIC PREDATOR PREY THETA-LOGISTIC PREDATOR PREY What are the assumptions of this model? 1.) Functional responses are non-linear. Functional response refers to a change in the rate of exploitation of prey by an individual

More information