Population Modeling or Functions in Action

Slides:



Advertisements
Similar presentations
Ecosim Beth Fulton Time dynamic Ecopath = initial conditions Define Duration Environmental drivers Contaminants option Fleet dynamics option ECOPATH,
Advertisements

DIFFERENTIAL EQUATIONS 9. We have looked at a variety of models for the growth of a single species that lives alone in an environment.
Chapter 6 Models for Population Population models for single species –Malthusian growth model –The logistic model –The logistic model with harvest –Insect.
Dynamics of a Ratio- Dependent Predator-Prey Model with Nonconstant Harvesting Policies Catherine Lewis and Benjamin Leard August 1 st, 2007.
بسم الله الرحمن الرحيم وقل ربِ زدني علماً صدق الله العظيم.
Objectives - Chapter What is an exploitative interaction?
Mr Nichols PHHS. History Alfred Lotka Vito Volterra -American biophysicist -Proposed the predator- prey model in Italian mathematician -Proposed.
By: Alexandra Silva and Dani Hoover Intro to Systems ESE /24/09.
STAGES OF POPULATION GROWTH. Population Growth can be… Exponential ORLimited (J curve)(S curve)
Energy Flow & Nutrient Cycle
Today’s Objective Develop a sustainable fishing strategy for your fishing community.
Community Processes: More on Competition Theory How it works.
Alfred Lotka (top) Vito Volterra Predator-Prey Systems.
Trophic Ecosystem Models. Overview Logistic growth model Lotka volterra predation models Competition models Multispecies production models MSVPA Size.
Predicting predator-prey populations. Desired results.
MATH3104: Anthony J. Richardson.
Predicting predator-prey populations. Desired results.
Interactions Chapter 2 Section 2.
Predator-prey equations. Readings Predator-prey: Chapter 12: Case TJ (2000) An illustrated guide to theoretical ecology. Oxford University Press, Oxford.
LAB #15: NATURAL SELECTION ON PREDATOR/PREY POPULATIONS.
Lesson Overview 5.2 Limits to Growth.
Analyzing Polynomial Functions
Computational Models.
Unit 1.
Population – group of individuals of the same species
H Population Dynamics.
Predator/Prey Relationships
14th Lecture – Oct. 25, Next Exam is November 3.
Many decades, huge area – spatially and temporally extensive cycling.
Management Regulations
Animals That I Like.
In the absence of wolves, the rabbit population is always 5000
Predator-Prey System Whales, Krill, and Fishermen
A Computational Analysis of the Lotka-Volterra Equations Delon Roberts, Dr. Monika Neda Department of Mathematical Sciences, UNLV INTRODUCTION The Lotka-Volterra.
Ecological Interactions
Mathematical Modelling: The Lotka-Volterra Model
Sharks, Mullet, and Mathematical Ecology
NONLINEAR SYSTEMS IN THREE DIMENSIONS
Population – group of individuals of the same species
Name an organism that may be placed at level A
Carrying Capacity Ecosystems have carrying capacities, which are limits to the numbers of organisms and populations they can support These limits can result.
Chapter 8 Characteristics of Populations
Data fitting programming Math 570
Data fitting programming Math 371 Hao Wang University of Alberta
Chapter 4 Population Dynamics
Principle of Competitive Exclusion or Gause’s Principle
We will use POINT & EVIDENCE / EXPLANATION to answer our questions…..
Population – group of individuals of the same species
Population – group of individuals of the same species
District Using Clubrunner District
Artificial Intelligence in an Agent-Based Model
Random WALK, BROWNIAN MOTION and SDEs
H Population Dynamics.
Copyright © Cengage Learning. All rights reserved.
2007 Math Biology Seminar ODE Population Models.
Lotka-Volterra Predator-Prey Problems
Population – group of individuals of the same species
FLOW OF ENERGY Unit 6: Life science.
2007 REU ODE Population Models.
 A biologist wants to estimate the total number of small fish in a relatively small lake. So, he asked a local fisherman to catch some fish with the aid.
Species Interactions.
Populations of Organisms
Analyzing Predator-Prey Relationships
Abstract: The purpose for this project is to use the agent-based system to find an equation to calculate the population of all the different species at.
Mathematical Modeling in Population Dynamics
Predation – one species feeds on another  enhances
Bellwork: What is a Trophic Cascade?
Ecological Interactions
Presentation transcript:

Population Modeling or Functions in Action Being a module mainly for repetition

Lotka-Volterra Models In the great war, there was no fishing in the Adriatic When fisherman could fish again, they expected abundant catches However, this turned out to be false Search for an explanation let to the Lotka Volterra model for two species

Lotka Volterra Preditor – Prey Model: Population develops: x – number of prey y – number of predators Population develops: For prey: few predators: gain population (no threats) many predators: loss of population (get eaten) For predator: few prey: loss of population (starvation) much prey: gain of population (feeding frenzy)

Lotka Volterra x – prey at time n y – predators at time n a natural growth rate of prey b predation rate c efficiency of turning prey into predators d natural death rate of predator

Implementing Lotka Volterra Define a function with parameters, including initial values x0 and y0 Use a for loop in order to model 500 time periods def lotka_volterra(x0, y0, a, b, c, d): x = x0 y = y0 for i in range(500): … print(i,x,y)

Implementing Lotka Volterra Updating x and y according to the formula: Need to use old value of x until both new values are set def lotka_volterra(x0, y0, a, b, c, d): x = x0 y = y0 for i in range(500): xnew = a*x-b*x*y ynew = c*y+d*x*y x = xnew y = ynew print(i, x, y)

Running Lotka Volterra Parameters are difficult to pick. These ones work well Obtain numbers and paste into a spreadsheet Then make a table and see how the solution develops lotka_volterra(x0=10, y0=20, a=1.073, b=0.006, c=0.9, d=0.0021)

Running Lotka Volterra Periodic, but not stable Population sizes are increasing Problem with Modeling This is a cute problem Suffers from the problem of the atto-tiger quintillionth of a tiger The predator population can become very small But still first successful population model that explained reality