Alfred J. Lotka, American, first proposed predator-prey model in 1910 but more generally in 1925
Vito Volterra, Italian, inspired by fisheries data, published 1926
Alfred J. Lotka, American, first proposed predator-prey model in 1910 but more generally in 1925
Vito Volterra, Italian, inspired by fisheries data, published 1926
Lotka-Volterra is used to describe (nearly) any two-species models, generally; but when used alone it refers to their independently-derived predator-prey model
dRdt=f1(R,C)dCdt=f2(R,C)
dRdt=f1(R,C)dCdt=f2(R,C)
Predators and prey (consumers and resources) also symbolically represented respectively as V and P (in book; victim and predator), N1 and N2, and H and P among others.
We minimally have four componenets to add to a model of predator and prey dynamics:
We minimally have four componenets to add to a model of predator and prey dynamics:
We minimally have four componenets to add to a model of predator and prey dynamics:
Let's represent these processes using the following
We minimally have four componenets to add to a model of predator and prey dynamics:
Let's represent these processes using the following
We minimally have four componenets to add to a model of predator and prey dynamics:
Let's represent these processes using the following
We minimally have four componenets to add to a model of predator and prey dynamics:
Let's represent these processes using the following
We minimally have four componenets to add to a model of predator and prey dynamics:
Let's represent these processes using the following
Putting the pieces together:
Putting the pieces together:
Putting the pieces together:
The case where two species do not affect one another.
The case where two species do not affect one another.
Let's write down the coupled equations for two species, but without interaction, behaving as single species do (logistically). Write each species as N1 and N2.
The case where two species do not affect one another.
Let's write down the coupled equations for two species, but without interaction, behaving as single species do (logistically). Write each species as N1 and N2.
dN1dt=r1N1−α1N21dN2dt=r2N2−α2N22
or
dN1dt=r1N1(K1−N1K1)dN2dt=r2N2(K2−N2K2)
neutralism <- function(t, y, parameters) { N1 <- y[1] N2 <- y[2] r1 <- parameters[1] r2 <- parameters[2] a1 <- parameters[3] a2 <- parameters[4] dN1 <- r1*N1 - a1*N1^2 dN2 <- r2*N2 - a2*N2^2 return(list(c(dN1, dN2)))}n.parms <- c(r1 = 0.55, r2 = 0.5, a1 = 0.02, a2 = 0.01)times <- seq(from = 0, to = 20, by = 0.1)init <- c(N1 = 2, N2 = 0.5)neut.out <- ode(y = init, times = times, parms = n.parms, func = neutralism)
plot(x = neut.out[,1], y= neut.out[,2], lwd = 2, las = 1, xlab = "Time", ylab = "Density", type = "l", ylim = c(0, max(neut.out)), col = "#0000FFFF")lines(x = neut.out[,1], y= neut.out[,3], lwd = 2, col = "red")
plot(x = neut.out[,2], y= neut.out[,3], lwd = 2, las = 1, xlab = bquote(N[1]), ylab = bquote(N[2]), type = "p", ylim = c(0, max(neut.out)), xlim = c(0, max(neut.out)), col = cp, pch = 16)
dark and light colors respectively correspond to early and later points in time
I. Both N1 and N2 below equilibirum
II. N1 below and N2 above their equilibiria
III. N1 above and N2 below their equilibiria
IV. N1 and N2 above their equilibiria
All four starting points (initial conditions) showing different behaviours
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
If we were to plot a logistic-growing population against something arbitrary, like the number of angels dancing on the head of a pin, then we could create a plane that looks something like this:
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
If we were to plot a logistic-growing population against something arbitrary, like the number of angels dancing on the head of a pin, then we could create a plane that looks something like this:
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
If we were to plot a logistic-growing population against something arbitrary, like the number of angels dancing on the head of a pin, then we could create a plane that looks something like this:
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
If we were to plot a logistic-growing population against something arbitrary, like the number of angels dancing on the head of a pin, then we could create a plane that looks something like this:
Nullclines describe the curves (including lines) on a phase plane towards or away from which a populations will grow. This is analagous to the concept of an equilibirum, but on a plane (2 dimensions) populations will grow towards or away from a line instead of a point.
If we were to plot a logistic-growing population against something arbitrary, like the number of angels dancing on the head of a pin, then we could create a plane that looks something like this, or like this:
Now, if we had two populations/variables (say, N1 and N2), neither of which are interacting with one another, what would we expect to see?
Now, if we had two populations/variables (say, N1 and N2), neither of which are interacting with one another, what would we expect to see?
Now, if we had two populations/variables (say, N1 and N2), neither of which are interacting with one another, what would we expect to see, more simply?
Now, if we had two populations/variables (say, N1 and N2), neither of which are interacting with one another, what would we expect to see, more simply?
Set dNidt=0 for each equation, put into a graphical form (isolate the variable on the vertical axis), plot, . . . and crush it.
Set dNidt=0 for each equation, put into a graphical form (isolate the variable on the vertical axis), plot, . . . and crush it.
Find the nullclines for the neutralism model . . . and plot them (one for each species).
The model dN1dt=r1N1−α1N21dN2dt=r2N2−α2N22
The model dN1dt=r1N1−α1N21dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N210=r2N2−α2N22
The model dN1dt=r1N1−α1N21dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N210=r2N2−α2N22
For N1 N∗1=0N∗1=r1α1
The model dN1dt=r1N1−α1N21dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N210=r2N2−α2N22
For N1 N∗1=0N∗1=r1α1
For N2 N∗2=0N∗2=r2α2
We will use a package called phaseR
that is found in the Comprehensive R Archive Network (CRAN).
We will use a package called phaseR
that is found in the Comprehensive R Archive Network (CRAN).
You can download pacakges using the function install.packages(pkgs = )
. Let's install.packages(pkgs = "phaseR")
.
We will use a package called phaseR
that is found in the Comprehensive R Archive Network (CRAN).
You can download pacakges using the function install.packages(pkgs = )
. Let's install.packages(pkgs = "phaseR")
.
Now that it is installed and saved to your personal R library, let's load it: library(package = "phaseR")
.
We have to call (1) parms
, parameters
and (2) state
, y
in our function to play with phaseR
(it's terrible, I know; I am sincerely sorry)
neutralism <- function(t, y, parameters) { N1 <- y[1] N2 <- y[2] r1 <- parameters[1] r2 <- parameters[2] a1 <- parameters[3] a2 <- parameters[4] dN1 <- r1*N1 - a1*N1^2 dN2 <- r2*N2 - a2*N2^2 return(list(c(dN1, dN2)))}init <- c(N1 = 0.1, N2 = 0.05)parm.vals <- c(r1 = 2/3, r2 = 2/3, a1 = 1, a2 = 1)
Then, let's plot the nullclines:
nullclines(deriv = neutralism, parameters = parm.vals, xlim = c(-0.1, 1), ylim = c(-0.1, 1), add = F)
flowField(deriv = neutralism, xlim = c(-0.1, 1), ylim = c(-0.1, 1), parameters = parm.vals, add = F, points = 20)
Plotting nullclines and direction field together
And if you want, you can add trajectories:
trajectory(deriv = neutralism, y0 = init, t.start = 0, t.end = 25, pch = 16)
Amensalism: when one species has a negative effect on another, but that other has no effect on it. A couple biological examples include allelopathy or strong competition.
What might the model look like?
Amensalism: when one species has a negative effect on another, but that other has no effect on it. A couple biological examples include allelopathy or strong competition.
What might the model look like?
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
Amensalism: when one species has a negative effect on another, but that other has no effect on it. A couple biological examples include allelopathy or strong competition.
What might the model look like?
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
Create a phase plane for an amensal relationship between two species.
The model, initial densities, and parameter values
amensalism <- function(t, y, parameters) { N1 <- y[1] N2 <- y[2] r1 <- parameters[1] r2 <- parameters[2] a1 <- parameters[3] a2 <- parameters[4] b1 <- parameters[5] dN1 <- r1*N1 - a1*N1^2 - b1*N1*N2 dN2 <- r2*N2 - a2*N2^2 return(list(c(dN1, dN2)))}init <- c(N1 = 0.1, N2 = 0.05)parm.vals <- c(r1 = 2/3, r2 = 2/3, a1 = 1, a2 = 1, b1 = 0.2)
The phase plane
The phase plane
Does this make sense?
What are the equations for the nullclines?
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22
For N1 N∗1=0N∗1=r1−β1N2α1
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22
For N1 N∗1=0N∗1=r1−β1N2α1
For N2 N∗2=0N∗2=r2α2
The model with both species growing logistically, but with one species benefiting at the other's expense (say, a consumer-resource interaction)
dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22+β21N1N2
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22+β21N1N2
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22+β21N1N2
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22+β21N1N2
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22+β21N1N2
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22+β21N1N2
For N1 N∗1=0N∗1=r1−β1N2α1
The model dN1dt=r1N1−α1N21−β1N1N2dN2dt=r2N2−α2N22+β21N1N2
Setting each subequation to 0 0=r1N1−α1N21−β1N1N20=r2N2−α2N22+β21N1N2
For N1 N∗1=0N∗1=r1−β1N2α1
For N2 N∗2=0N∗2=r2+β2N1α2
If we were to plot these on a graph, with red lines being the nullclines for N1 and the blue lines being the nullclines for N2, then we'd draw something like this:
The model, initial densities, and parameter values
cr.log <- function(t, y, parameters) { N1 <- y[1] N2 <- y[2] r1 <- parameters[1] r2 <- parameters[2] a1 <- parameters[3] a2 <- parameters[4] b1 <- parameters[5] b2 <- parameters[6] dN1 <- r1*N1 - a1*N1^2 - b1*N1*N2 dN2 <- r2*N2 - a2*N2^2 + b2*N2*N1 return(list(c(dN1, dN2)))}init <- c(N1 = 0.1, N2 = 0.05)parm.vals <- c(r1 = 2/3, r2 = 2/3, a1 = 1, a2 = 1, b1 = 0.2, b2 = 0.2)
The phase plane
This is the Lotka-Volterra predator-prey model:
dRdt=rR−βRCdCdt=γRC−δC
The model F1=dRdt=rR−βRCF2=dCdt=γRC−δC
The model F1=dRdt=rR−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−βRCF2=0=γRC−δC
The model F1=dRdt=rR−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−βRCF2=0=γRC−δC
For F1 R∗=0C∗=rβ
The model F1=dRdt=rR−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−βRCF2=0=γRC−δC
For F1 R∗=0C∗=rβ
For F2 C∗=0R∗=δγ
If we were to plot these on a graph, with red lines being the nullclines for R and the blue lines being the nullclines for C, then we'd draw something like this:
If we were to plot these on a graph, with red lines being the nullclines for R and the blue lines being the nullclines for C, then we'd draw something like this:
The model, initial densities, and parameter values
cr.LV <- function(t, y, parameters) { R <- y[1] C <- y[2] r <- parameters[1] a <- parameters[2] b <- parameters[3] m <- parameters[4] dR <- r*R - a*R*C dC <- b*R*C - m*C return(list(c(dR, dC)))}init <- c(0.3, 0.5)parm.vals <- c(r = 0.5, a = 0.5, b = 0.25, m = 0.5)
The phase plane
This is the Lotka-Volterra predator-prey model with generalist prey:
dRdt=rR−αR2−βRCdCdt=γRC−δC
The model F1=dRdt=rR−αR2−βRCF2=dCdt=γRC−δC
The model F1=dRdt=rR−αR2−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−αR2−βRCF2=0=γRC−δC
The model F1=dRdt=rR−αR2−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−αR2−βRCF2=0=γRC−δC
For F1 R=0R=r−βCα
The model F1=dRdt=rR−αR2−βRCF2=dCdt=γRC−δC
Setting each subequation to 0 F1=0=rR−αR2−βRCF2=0=γRC−δC
For F1 R=0R=r−βCα
For F2 C=0R=δγ
The model, initial densities, and parameter values
cr.LVDD <- function(t, y, parameters) { R <- y[1] C <- y[2] r <- parameters[1] alpha <- parameters[2] a <- parameters[3] b <- parameters[4] m <- parameters[5] dR <- r*R - alpha*R*R - a*R*C dC <- b*R*C - m*C return(list(c(dR, dC)))}init <- c(0.3, 0.5)parm.vals <- c(r = 0.5, alpha = 0.2, a = 0.25, b = 0.25, m = 0.4)
The phase plane
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |