Differential Equations Day 24 -- Project 6 -- Lotka-Volterra Predator Prey Models
Directions
Learning Goals
Content Overview
The Lotka-Volterra equations (Lotka 1925; Volterra 1926, 1927) are based on the assumptions that the predator population intrinsically shrinks, the prey population intrinsically grows, a larger prey population leads to a larger predator population, and a larger predator population leads to a smaller prey population. More specifically, the rate of growth of the prey population is proportional to the size of the prey population, leading to exponential growth if unchecked. The prey population simultaneously shrinks at a rate proportional to the size of the product of the prey and predator populations. For the predator species, the direction of growth is reversed. The predator population shrinks at a rate proportional to its size and grows at a rate proportional to the product of its size and the prey population’s size.The Lotka-Volterra equations are: When using these equations to model species' populations, the coefficients and are always real positive numbers. The traditional interpretation of the coefficients of the Lotka-Volterra equations are: Prey coefficients: : the natural reproduction rate of the prey : the death rate per interaction of the prey and predator Predator coefficients: : the efficiency of the predators at turning the prey into baby predators (i.e. the rate of new baby predators per interaction of the predator and prey) : the natural death rate of predator in the absence of food (prey) Higher dimensional versions of the Lotka-Volterra equations have been used to model a wide variety of additional interaction phenomena. They are widely praised for their simplicity to setup along with their oftentimes chaotic response to initial conditions. (In this context, "chaos" refers to the phenomenon of a differential equation in which a small change in an initial condition leads to a substantial change in the specific solution). See the next activity of the book for a quick overview and a link to additional resources. You can explore the phase portrait perspective of specific solutions of the Lotka-Volterra equations in the applet below. In the applet you can drag the green dot to different initial conditions, and the specific solution of the system of equations is estimated out to . You can also adjust the coefficients.
TimeFrame
(the previous applet was capped at ).
Note: Due to a bug in the code somewhere, you may need to "jiggle" the point InitialCondition
to get this applet to perform. Note that the point InitialCondition
is setting BOTH the initial condition on x
and y
. You can also make changes to the InitialCondition
in the left hand input box. The Project
What is the approximate maximum and minimum of the owl and mouse populations over the 60 day model run?
Now consider what would happen if you increase the number of owls at the start of the model (but keep the number of mice constant). What is the maximum number of owls the model predicts Landmark Meadow can sustain without causing a crash of a species? Note: A "crash" of a species is defined to be any instance in which either species' population goes below 1.
Estimate the "fixed point" of this model. In other words, estimate the population of mouse and owls that the model predicts will remain in perfect equilibrium with each other.
A Purely Mathematical Question
Consider these coefficients of a new Lotka-Volterra model: . What is the fixed point of this model?
A High Level Analysis of a Hare and Lynx Predator Prey Interaction
Consider an environment of hare (prey) and lynx (predators) governed by these Lotka-Volterra coefficients: . Describe the nature of the specific solutions for the following initial states. In particular, note if either species' populations are predicted to drop below 1 unit. (A) 1000 hare, 5 lynx (many prey, few predators) (B) 5 hare, 100 lynx (few prey, many predators) (C) 1000 hare, 100 lynx (many prey, many predators)