This model is to be used with Mr. Roderick's AP biology activity on population growth. See steveroderick.net for a copy of the activity worksheet.        Use the sliders below to quickly change the initial values of components of the model.
This model is to be used with Mr. Roderick's AP biology activity on population growth. See steveroderick.net for a copy of the activity worksheet.

Use the sliders below to quickly change the initial values of components of the model.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  We incorporate logistic growth into the moose dynamics, and we replace the death flow of the moose with a kill rate modeled from the kill rate data found on the Isle Royale websi
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

We incorporate logistic growth into the moose dynamics, and we replace the death flow of the moose with a kill rate modeled from the kill rate data found on the Isle Royale website.

I start with these parameters:
Wolf Death Rate = 0.15
Wolf Birth Rate = 0.0187963
Moose Birth Rate = 0.4
Carrying Capacity = 2000
Initial Moose: 563
Initial Wolves: 20

I used RK-4 with step-size 0.1, from 1959 for 60 years.

The moose birth flow is logistic, MBR*M*(1-M/K)
Moose death flow is Kill Rate (in Moose/Year)
Wolf birth flow is WBR*Kill Rate (in Wolves/Year)
Wolf death flow is WDR*W

 This is a basic BIDE (birth, immigration, death, emigration) model.  Not all parts are implemented, however Birth and Death are.

This is a basic BIDE (birth, immigration, death, emigration) model.  Not all parts are implemented, however Birth and Death are.

    Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")  Tags:  Education ,  Chaos ,  Ecology ,  Biology ,  Population   Thanks to Insight Author:  John Petersen       Edits by Andy Long     Everything that follows the dashes was created by John Petersen (or at least came from his Insight model).

Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")
Thanks to Insight Author: John Petersen

Edits by Andy Long

Everything that follows the dashes was created by John Petersen (or at least came from his Insight model). I just wanted to make a few comments.

We are looking at Hare and Lynx, of course. Clone this insight, and change the names.

Then read the text below, to get acquainted with one of the most important and well-known examples of a simple system of differential equations in all of mathematics.

http://www.nku.edu/~longa/classes/mat375/mathematica/Lotka-Volterra.nb
------------------------------------------------------------

Dynamic simulation modelers are particularly interested in understanding and being able to distinguish between the behavior of stocks and flows that result from internal interactions and those that result from external forces acting on a system. 

For some time modelers have been particularly interested in internal interactions that result in stable oscillations in the absence of any external forces acting on a system. 

The model in this last scenario was independently developed by Alfred Lotka (1924) and Vito Volterra (1926).  Lotka was interested in understanding internal dynamics that might explain oscillations in moth and butterfly populations and the parasitoids that attack them.  Volterra was interested in explaining an increase in coastal populations of predatory fish and a decrease in their prey that was observed during World War I when human fishing pressures on the predator species declined. 

Both discovered that a relatively simple model is capable of producing the cyclical behaviors they observed. 

Since that time, several researchers have been able to reproduce the modeling dynamics in simple experimental systems consisting of only predators and prey.  It is now generally recognized that the model world that Lotka and Volterra produced is too simple to explain the complexity of most predator-prey dynamics in nature.  And yet, the model significantly advanced our understanding of the critical role of feedback in predator-prey interactions and in feeding relationships that result in community dynamics.

The Lotka–Volterra model makes a number of assumptions about the environment and evolution of the predator and prey populations:

1. The prey population finds ample food at all times.
2. The food supply of the predator population depends entirely on the size of the prey population.
3. The rate of change of population is proportional to its size.
4. During the process, the environment does not change in favour of one species and genetic adaptation is inconsequential.
5. Predators have limitless appetite.

As differential equations are used, the solution is deterministic and continuous. This, in turn, implies that the generations of both the predator and prey are continually overlapping.[23]

Prey
When multiplied out, the prey equation becomes
dx/dtαx - βxy
 The prey are assumed to have an unlimited food supply, and to reproduce exponentially unless subject to predation; this exponential growth is represented in the equation above by the term αx. The rate of predation upon the prey is assumed to be proportional to the rate at which the predators and the prey meet; this is represented above by βxy. If either x or y is zero then there can be no predation.

With these two terms the equation above can be interpreted as: the change in the prey's numbers is given by its own growth minus the rate at which it is preyed upon.

Predators

The predator equation becomes

dy/dt =  - 

In this equation, {\displaystyle \displaystyle \delta xy} represents the growth of the predator population. (Note the similarity to the predation rate; however, a different constant is used as the rate at which the predator population grows is not necessarily equal to the rate at which it consumes the prey). {\displaystyle \displaystyle \gamma y} represents the loss rate of the predators due to either natural death or emigration; it leads to an exponential decay in the absence of prey.

Hence the equation expresses the change in the predator population as growth fueled by the food supply, minus natural death.


This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale. It was "cloned" from a model that InsightMaker provides to its users, at  https://insightmaker.com/insight/2068/Isle-Royale-Predator-Prey-Interactions  Thanks Scott Fortmann-Roe.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale. It was "cloned" from a model that InsightMaker provides to its users, at
https://insightmaker.com/insight/2068/Isle-Royale-Predator-Prey-Interactions
Thanks Scott Fortmann-Roe.

I've created a Mathematica file that replicates the model, at
http://www.nku.edu/~longa/classes/2018spring/mat375/mathematica/Moose-n-Wolf-InsightMaker.nb

It allows one to experiment with adjusting the initial number of moose and wolves on the island.

I used steepest descent in Mathematica to optimize the parameters, with my objective data being the ratio of wolves to moose. You can try my (admittedly) kludgy code, at
http://www.nku.edu/~longa/classes/2018spring/mat375/mathematica/Moose-n-Wolf-InsightMaker-BestFit.nb

{WolfBirthRateFactorStart,
WolfDeathRateStart,
MooseBirthRateStart,
MooseDeathRateFactorStart,
moStart,
woStart} =
{0.000267409,
0.239821,
0.269755,
0.0113679,
591,
23.};

This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

Experiment with adjusting the initial number of moose and wolves on the island.
    Dynamic simulation modelers are particularly interested in understanding and being able to distinguish between the behavior of stocks and flows that result from internal interactions and those that result from external forces acting on a system.  For some time modelers have been particularly int

Dynamic simulation modelers are particularly interested in understanding and being able to distinguish between the behavior of stocks and flows that result from internal interactions and those that result from external forces acting on a system.  For some time modelers have been particularly interested in internal interactions that result in stable oscillations in the absence of any external forces acting on a system.  The model in this last scenario was independently developed by Alfred Lotka (1924) and Vito Volterra (1926).  Lotka was interested in understanding internal dynamics that might explain oscillations in moth and butterfly populations and the parasitoids that attack them.  Volterra was interested in explaining an increase in coastal populations of predatory fish and a decrease in their prey that was observed during World War I when human fishing pressures on the predator species declined.  Both discovered that a relatively simple model is capable of producing the cyclical behaviors they observed.  Since that time, several researchers have been able to reproduce the modeling dynamics in simple experimental systems consisting of only predators and prey.  It is now generally recognized that the model world that Lotka and Volterra produced is too simple to explain the complexity of most and predator-prey dynamics in nature.  And yet, the model significantly advanced our understanding of the critical role of feedback in predator-prey interactions and in feeding relationships that result in community dynamics.The Lotka–Volterra model makes a number of assumptions about the environment and evolution of the predator and prey populations:

1. The prey population finds ample food at all times.
2. The food supply of the predator population depends entirely on the size of the prey population.
3. The rate of change of population is proportional to its size.
4. During the process, the environment does not change in favour of one species and genetic adaptation is inconsequential.
5. Predators have limitless appetite.
As differential equations are used, the solution is deterministic and continuous. This, in turn, implies that the generations of both the predator and prey are continually overlapping.[23]

Prey
When multiplied out, the prey equation becomes
dx/dtαx - βxy
 The prey are assumed to have an unlimited food supply, and to reproduce exponentially unless subject to predation; this exponential growth is represented in the equation above by the term αx. The rate of predation upon the prey is assumed to be proportional to the rate at which the predators and the prey meet; this is represented above by βxy. If either x or y is zero then there can be no predation.

With these two terms the equation above can be interpreted as: the change in the prey's numbers is given by its own growth minus the rate at which it is preyed upon.

Predators

The predator equation becomes

dy/dt =  - 

In this equation, {\displaystyle \displaystyle \delta xy} represents the growth of the predator population. (Note the similarity to the predation rate; however, a different constant is used as the rate at which the predator population grows is not necessarily equal to the rate at which it consumes the prey). {\displaystyle \displaystyle \gamma y} represents the loss rate of the predators due to either natural death or emigration; it leads to an exponential decay in the absence of prey.

Hence the equation expresses the change in the predator population as growth fueled by the food supply, minus natural death.


A simulation model that shows the relationship between the mountain biking trails in derby and the the effect it has on the tourism, 
A simulation model that shows the relationship between the mountain biking trails in derby and the the effect it has on the tourism, 
this is my food web project for school
this is my food web project for school
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  We incorporate logistic growth into the moose dynamics, and we replace the death flow of the moose with a kill rate modeled from the kill rate data found on the Isle Royale websi
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

We incorporate logistic growth into the moose dynamics, and we replace the death flow of the moose with a kill rate modeled from the kill rate data found on the Isle Royale website.

I start with these parameters:
Wolf Death Rate = 0.15
Wolf Birth Rate = 0.0187963
Moose Birth Rate = 0.4
Carrying Capacity = 2000
Initial Moose: 563
Initial Wolves: 20

I used RK-4 with step-size 0.1, from 1959 for 60 years.

The moose birth flow is logistic, MBR*M*(1-M/K)
Moose death flow is Kill Rate (in Moose/Year)
Wolf birth flow is WBR*Kill Rate (in Wolves/Year)
Wolf death flow is WDR*W

    Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")  Tags:  Education ,  Chaos ,  Ecology ,  Biology ,  Population   Thanks to Insight Author:  John Petersen       Edits by Andy Long     Everything that follows the dashes was created by John Petersen (or at least came from his Insight model).

Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")
Thanks to Insight Author: John Petersen

Edits by Andy Long

Everything that follows the dashes was created by John Petersen (or at least came from his Insight model). I just wanted to make a few comments.

We are looking at Hare and Lynx, of course. Clone this insight, and change the names.

Then read the text below, to get acquainted with one of the most important and well-known examples of a simple system of differential equations in all of mathematics.

http://www.nku.edu/~longa/classes/mat375/mathematica/Lotka-Volterra.nb
------------------------------------------------------------

Dynamic simulation modelers are particularly interested in understanding and being able to distinguish between the behavior of stocks and flows that result from internal interactions and those that result from external forces acting on a system. 

For some time modelers have been particularly interested in internal interactions that result in stable oscillations in the absence of any external forces acting on a system. 

The model in this last scenario was independently developed by Alfred Lotka (1924) and Vito Volterra (1926).  Lotka was interested in understanding internal dynamics that might explain oscillations in moth and butterfly populations and the parasitoids that attack them.  Volterra was interested in explaining an increase in coastal populations of predatory fish and a decrease in their prey that was observed during World War I when human fishing pressures on the predator species declined. 

Both discovered that a relatively simple model is capable of producing the cyclical behaviors they observed. 

Since that time, several researchers have been able to reproduce the modeling dynamics in simple experimental systems consisting of only predators and prey.  It is now generally recognized that the model world that Lotka and Volterra produced is too simple to explain the complexity of most predator-prey dynamics in nature.  And yet, the model significantly advanced our understanding of the critical role of feedback in predator-prey interactions and in feeding relationships that result in community dynamics.

The Lotka–Volterra model makes a number of assumptions about the environment and evolution of the predator and prey populations:

1. The prey population finds ample food at all times.
2. The food supply of the predator population depends entirely on the size of the prey population.
3. The rate of change of population is proportional to its size.
4. During the process, the environment does not change in favour of one species and genetic adaptation is inconsequential.
5. Predators have limitless appetite.

As differential equations are used, the solution is deterministic and continuous. This, in turn, implies that the generations of both the predator and prey are continually overlapping.[23]

Prey
When multiplied out, the prey equation becomes
dx/dtαx - βxy
 The prey are assumed to have an unlimited food supply, and to reproduce exponentially unless subject to predation; this exponential growth is represented in the equation above by the term αx. The rate of predation upon the prey is assumed to be proportional to the rate at which the predators and the prey meet; this is represented above by βxy. If either x or y is zero then there can be no predation.

With these two terms the equation above can be interpreted as: the change in the prey's numbers is given by its own growth minus the rate at which it is preyed upon.

Predators

The predator equation becomes

dy/dt =  - 

In this equation, {\displaystyle \displaystyle \delta xy} represents the growth of the predator population. (Note the similarity to the predation rate; however, a different constant is used as the rate at which the predator population grows is not necessarily equal to the rate at which it consumes the prey). {\displaystyle \displaystyle \gamma y} represents the loss rate of the predators due to either natural death or emigration; it leads to an exponential decay in the absence of prey.

Hence the equation expresses the change in the predator population as growth fueled by the food supply, minus natural death.


This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

Experiment with adjusting the initial number of moose and wolves on the island.
  Overview  A model which simulates the competition between logging versus adventure tourism (mountain bike ridding) in Derby Tasmania.  Simulation borrowed from the Easter Island simulation.     How the model works.   Trees grow, we cut them down because of demand for Timber amd sell the logs.  Wit
Overview
A model which simulates the competition between logging versus adventure tourism (mountain bike ridding) in Derby Tasmania.  Simulation borrowed from the Easter Island simulation.

How the model works.
Trees grow, we cut them down because of demand for Timber amd sell the logs.
With mountain bkie visits.  This depends on past experience and recommendations.  Past experience and recommendations depends on Scenery number of trees compared to visitor and Adventure number of trees and users.  Park capacity limits the number of users.  
Interesting insights
It seems that high logging does not deter mountain biking.  By reducing park capacity, visitor experience and numbers are improved.  A major problem is that any success with the mountain bike park leads to an explosion in visitor numbers.  Also a high price of timber is needed to balance popularity of the park. It seems also that only a narrow corridor is needed for mountain biking
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

Experiment with adjusting the initial number of moose and wolves on the island.
  Overview     This model simulates logging and mountain biking competition in Derby, Tasmania. The Simulation is referenced to simulate Derby mountain biking with logging.      Model   W  ork     The tourism industry is represented on the model's left side, and the logging industry is on the right

Overview

This model simulates logging and mountain biking competition in Derby, Tasmania. The Simulation is referenced to simulate Derby mountain biking with logging.

 

Model Work

The tourism industry is represented on the model's left side, and the logging industry is on the right side. Interactions between these two industries generate tax revenues. Logging and tourism have different growth rates regarding people working/consuming. The initial values of these two industries in the model are not fixed but increase yearly due to inflation or economic growth.

 

Detail Insights

From the perspective of tourism, as the number of tourists keeps growing, the number of people who choose to ride in Derby City also gradually increases. And the people who ride rate the ride. The negative feedback feeds back into the cycling population. Similarly, positive cycling reviews lead to more customer visits. And all the customers will create a revenue through tourism, and a certain proportion of the income will become tourism tax.

From a logging perspective, it is very similar to the tourism industry. As the number of people working in the industry is forecast to increase, the industry's overall size is predicted to grow. And as the industry's size continues to rise, the taxes on the logging industry will also continue to rise. Since logging is an industry, the tax contribution will be more significant than the tourism excise tax.

 

This model assumption is illustrated below:

1. The amount of tax reflects the level of industrial development.

2. The goal of reducing carbon emissions lets us always pay attention to the environmental damage caused by the logging industry.

3. The government's regulatory goal is to increase overall income while ensuring the environment.

4. Logging will lead to environmental damage, which will decrease the number of tourists.

 

This model is based on tourism tax revenue versus logging tax revenue. Tourism tax revenue is more incredible than logging tax revenue, indicating a better environment. As a result of government policy, the logging industry will be heavily developed in the short term. Growth in the logging industry will increase by 40%. A growth rate of 0.8 and 0.6 of the original is obtained when logging taxes are 2 and 4 times higher than tourism taxes.

 

Furthermore, tourism tax and logging tax also act on the positive rate, which is the probability that customers give a positive evaluation. The over-development of the logging industry will lead to the destruction of environmental resources and further affect the tourism industry. The logging tax will also affect the tourism Ride Rate, which is the probability that all tourism customers will choose Derby city.

 

This model more accurately reflects logging and tourism's natural growth and ties the two industries together environmentally. Two ways of development are evident in the two industries. Compared to tourism, logging shows an upward spiral influenced by government policies. Government attitudes also affect tourism revenue, but more by the logging industry. 

This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.  Experiment with adjusting the initial number of moose and wolves on the island.
This model illustrates predator prey interactions using real-life data of wolf and moose populations on the Isle Royale.

Experiment with adjusting the initial number of moose and wolves on the island.
    Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")  Tags:  Education ,  Chaos ,  Ecology ,  Biology ,  Population   Thanks to Insight Author:  John Petersen       Edits by Andy Long     Everything that follows the dashes was created by John Petersen (or at least came from his Insight model).

Clone of Bio103 Predator-Prey Model ("Lotka'Volterra")
Thanks to Insight Author: John Petersen

Edits by Andy Long

Everything that follows the dashes was created by John Petersen (or at least came from his Insight model). I just wanted to make a few comments.

We are looking at Hare and Lynx, of course. Clone this insight, and change the names.

Then read the text below, to get acquainted with one of the most important and well-known examples of a simple system of differential equations in all of mathematics.

http://www.nku.edu/~longa/classes/mat375/mathematica/Lotka-Volterra.nb
------------------------------------------------------------

Dynamic simulation modelers are particularly interested in understanding and being able to distinguish between the behavior of stocks and flows that result from internal interactions and those that result from external forces acting on a system. 

For some time modelers have been particularly interested in internal interactions that result in stable oscillations in the absence of any external forces acting on a system. 

The model in this last scenario was independently developed by Alfred Lotka (1924) and Vito Volterra (1926).  Lotka was interested in understanding internal dynamics that might explain oscillations in moth and butterfly populations and the parasitoids that attack them.  Volterra was interested in explaining an increase in coastal populations of predatory fish and a decrease in their prey that was observed during World War I when human fishing pressures on the predator species declined. 

Both discovered that a relatively simple model is capable of producing the cyclical behaviors they observed. 

Since that time, several researchers have been able to reproduce the modeling dynamics in simple experimental systems consisting of only predators and prey.  It is now generally recognized that the model world that Lotka and Volterra produced is too simple to explain the complexity of most predator-prey dynamics in nature.  And yet, the model significantly advanced our understanding of the critical role of feedback in predator-prey interactions and in feeding relationships that result in community dynamics.

The Lotka–Volterra model makes a number of assumptions about the environment and evolution of the predator and prey populations:

1. The prey population finds ample food at all times.
2. The food supply of the predator population depends entirely on the size of the prey population.
3. The rate of change of population is proportional to its size.
4. During the process, the environment does not change in favour of one species and genetic adaptation is inconsequential.
5. Predators have limitless appetite.

As differential equations are used, the solution is deterministic and continuous. This, in turn, implies that the generations of both the predator and prey are continually overlapping.[23]

Prey
When multiplied out, the prey equation becomes
dx/dtαx - βxy
 The prey are assumed to have an unlimited food supply, and to reproduce exponentially unless subject to predation; this exponential growth is represented in the equation above by the term αx. The rate of predation upon the prey is assumed to be proportional to the rate at which the predators and the prey meet; this is represented above by βxy. If either x or y is zero then there can be no predation.

With these two terms the equation above can be interpreted as: the change in the prey's numbers is given by its own growth minus the rate at which it is preyed upon.

Predators

The predator equation becomes

dy/dt =  - 

In this equation, {\displaystyle \displaystyle \delta xy} represents the growth of the predator population. (Note the similarity to the predation rate; however, a different constant is used as the rate at which the predator population grows is not necessarily equal to the rate at which it consumes the prey). {\displaystyle \displaystyle \gamma y} represents the loss rate of the predators due to either natural death or emigration; it leads to an exponential decay in the absence of prey.

Hence the equation expresses the change in the predator population as growth fueled by the food supply, minus natural death.


 This model is a modified version of the 'Very Simple Ecosystem Model' (VSEM; Hartig et al. 2019). Controls have been added to gross primary productivity (GPP) and heterotrophic respiration (Rhetero) based on evapotranspiration rates.    Reference:  Hartig, F., Minunno, F., and Paul, S. (2019). Baye
This model is a modified version of the 'Very Simple Ecosystem Model' (VSEM; Hartig et al. 2019). Controls have been added to gross primary productivity (GPP) and heterotrophic respiration (Rhetero) based on evapotranspiration rates.

Reference:
Hartig, F., Minunno, F., and Paul, S. (2019). BayesianTools: General-Purpose MCMC and SMC Samplers and Tools for Bayesian Statistics. R package version 0.1.7. https://CRAN.R-project.org/package=BayesianTools
Clone of:  'Sucesion Forestal' (by Denny S. Fernandez del Viso) for subtropical forest, which in turn is a modification of 'Modeling forest succession in a northeast deciduous forest' (by Owen Stuart).   Translated to English (by Lisa Belyea)
Clone of: 
'Sucesion Forestal' (by Denny S. Fernandez del Viso) for subtropical forest, which in turn is a modification of 'Modeling forest succession in a northeast deciduous forest' (by Owen Stuart).
Translated to English (by Lisa Belyea)