Loading [MathJax]/jax/output/CommonHTML/jax.js
+ - 0:00:00
Notes for current slide
Notes for next slide

Predator-prey (consumer-resource) interactions

Christopher Moore

Week 06

1 / 57

Grey Grey Owl

Predator-prey (consumer-resource) interactions, example I

2 / 57

Oak

3 / 57

Lotka and Volterra

  • Alfred J. Lotka, American, first proposed predator-prey model in 1910 but more generally in 1925
4 / 57

Lotka and Volterra

  • 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

4 / 57

Lotka and Volterra

  • 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

4 / 57

General two-species model

dRdt=f1(R,C)dCdt=f2(R,C)

5 / 57

General two-species model

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.

5 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die
6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die

Let's represent these processes using the following

6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die

Let's represent these processes using the following

  1. +rR
6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die

Let's represent these processes using the following

  1. +rR
  2. aRC
6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die

Let's represent these processes using the following

  1. +rR
  2. aRC
  3. +bRC
6 / 57

The Lotka-Volterra model

We minimally have four componenets to add to a model of predator and prey dynamics:

  1. Prey needs to grow
  2. Prey get eaten
  3. Predators grow by eating prey
  4. Predators must die

Let's represent these processes using the following

  1. +rR
  2. aRC
  3. +bRC
  4. mC
6 / 57

The Lotka-Volterra model

Putting the pieces together:

  1. Prey growth, +rR
  2. Predators removing prey, aRC
  3. Predator growth from eating prey, +bRC
  4. Predators die, mC
7 / 57

The Lotka-Volterra model

Putting the pieces together:

  1. Prey growth, +rR
  2. Predators removing prey, aRC
  3. Predator growth from eating prey, +bRC
  4. Predators die, mC dRdt=rRaRCdCdt=bRCmC
7 / 57

The Lotka-Volterra model

Putting the pieces together:

  1. Prey growth, +rR
  2. Predators removing prey, aRC
  3. Predator growth from eating prey, +bRC
  4. Predators die, mC dRdt=rRaRCdCdt=bRCmC . . . before we analyze this model, let's consider a simpler, more familiar case between two species
7 / 57

Neutralism

The case where two species do not affect one another.

8 / 57

Neutralism

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.

8 / 57

Neutralism

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(K1N1K1)dN2dt=r2N2(K2N2K2)

8 / 57

Neutralism time series: code

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)
9 / 57

Neutralism time series: plot

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")

10 / 57

Neutralism in state space

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

11 / 57

Neutralism: animated

I. Both N1 and N2 below equilibirum

12 / 57

Neutralism: animated

II. N1 below and N2 above their equilibiria

13 / 57

Neutralism: animated

III. N1 above and N2 below their equilibiria

14 / 57

Neutralism: animated

IV. N1 and N2 above their equilibiria

15 / 57

Neutralism: animated

All four starting points (initial conditions) showing different behaviours

16 / 57

Nullclines: the trajectory separators

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.

17 / 57

Nullclines: the trajectory separators

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:

17 / 57

Nullclines: the trajectory separators

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:

17 / 57

Nullclines: the trajectory separators

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:

18 / 57

Nullclines: the trajectory separators

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:

19 / 57

Nullclines: the trajectory separators

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:

20 / 57

Nullclines: the trajectory separators

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?

21 / 57

Nullclines: the trajectory separators

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?

21 / 57

Nullclines: the trajectory separators

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?

22 / 57

Nullclines: the trajectory separators

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?

23 / 57

Nullclines: calculation

24 / 57

Nullclines: calculation

Set dNidt=0 for each equation, put into a graphical form (isolate the variable on the vertical axis), plot, . . . and crush it.

CRUSH

24 / 57

Nullclines: calculation

Set dNidt=0 for each equation, put into a graphical form (isolate the variable on the vertical axis), plot, . . . and crush it.

CRUSH

Find the nullclines for the neutralism model . . . and plot them (one for each species).

24 / 57

Nullclines: calculation

The model dN1dt=r1N1α1N21dN2dt=r2N2α2N22

25 / 57

Nullclines: calculation

The model dN1dt=r1N1α1N21dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N210=r2N2α2N22

25 / 57

Nullclines: calculation

The model dN1dt=r1N1α1N21dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N210=r2N2α2N22

For N1 N1=0N1=r1α1

25 / 57

Nullclines: calculation

The model dN1dt=r1N1α1N21dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N210=r2N2α2N22

For N1 N1=0N1=r1α1

For N2 N2=0N2=r2α2

25 / 57

Nullclines: plot your results

26 / 57

Nullclines: plot your results

27 / 57

Neutralism: using R to graph dynamics

We will use a package called phaseR that is found in the Comprehensive R Archive Network (CRAN).

28 / 57

Neutralism: using R to graph dynamics

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").

28 / 57

Neutralism: using R to graph dynamics

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").

28 / 57

Neutralism: using R to graph dynamics

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)
29 / 57

Neutralism: using R to graph dynamics

30 / 57

Neutralism: using R to graph dynamics

flowField(deriv = neutralism, xlim = c(-0.1, 1), ylim = c(-0.1, 1), parameters = parm.vals, add = F, points = 20)

31 / 57

Neutralism: using R to graph dynamics

Plotting nullclines and direction field together

32 / 57

Neutralism: using R to graph dynamics

And if you want, you can add trajectories:

trajectory(deriv = neutralism, y0 = init, t.start = 0, t.end = 25, pch = 16)

33 / 57

A new model: amensalism

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?

34 / 57

A new model: amensalism

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

34 / 57

A new model: amensalism

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.

34 / 57

Amensalism

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)
35 / 57

Amensalism

The phase plane

36 / 57

Amensalism

The phase plane

Does this make sense?

What are the equations for the nullclines?

37 / 57

Amensalism

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22

38 / 57

Amensalism

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22

38 / 57

Amensalism

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22

For N1 N1=0N1=r1β1N2α1

38 / 57

Amensalism

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22

For N1 N1=0N1=r1β1N2α1

For N2 N2=0N2=r2α2

38 / 57

Amensalism: varying β

39 / 57

Consumer-resource, both logistic

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

40 / 57

Consumer-resource, both logistic

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22+β21N1N2

41 / 57

Consumer-resource, both logistic

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22+β21N1N2

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22+β21N1N2

41 / 57

Consumer-resource, both logistic

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22+β21N1N2

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22+β21N1N2

For N1 N1=0N1=r1β1N2α1

41 / 57

Consumer-resource, both logistic

The model dN1dt=r1N1α1N21β1N1N2dN2dt=r2N2α2N22+β21N1N2

Setting each subequation to 0 0=r1N1α1N21β1N1N20=r2N2α2N22+β21N1N2

For N1 N1=0N1=r1β1N2α1

For N2 N2=0N2=r2+β2N1α2

41 / 57

Consumer-resource, both logistic

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:

42 / 57

Consumer-resource, both logistic

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)
43 / 57

Consumer-resource, both logistic

The phase plane

44 / 57

Consumer-resource, both logistic

45 / 57

C-R/L-V, R ex. growth and C cons. mort

This is the Lotka-Volterra predator-prey model:

dRdt=rRβRCdCdt=γRCδC

46 / 57

C-R/L-V, R ex. growth and C cons. mort

The model F1=dRdt=rRβRCF2=dCdt=γRCδC

47 / 57

C-R/L-V, R ex. growth and C cons. mort

The model F1=dRdt=rRβRCF2=dCdt=γRCδC

Setting each subequation to 0 F1=0=rRβRCF2=0=γRCδC

47 / 57

C-R/L-V, R ex. growth and C cons. mort

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β

47 / 57

C-R/L-V, R ex. growth and C cons. mort

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=δγ

47 / 57

C-R/L-V, R ex. growth and C cons. mort

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:

48 / 57

C-R/L-V, R ex. growth and C cons. mort

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:

48 / 57

C-R/L-V, R ex. growth and C cons. mort

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)
49 / 57

C-R/L-V, R ex. growth and C cons. mort

The phase plane

50 / 57

C-R/L-V, R ex. growth and C cons. mort

51 / 57

Snowshoe hare-lynx data from the Hudson Bay Trapping Company

52 / 57

C-R, R log. growth and C cons. mort.

This is the Lotka-Volterra predator-prey model with generalist prey:

dRdt=rRαR2βRCdCdt=γRCδC

53 / 57

C-R, R log. growth and C cons. mort.

The model F1=dRdt=rRαR2βRCF2=dCdt=γRCδC

54 / 57

C-R, R log. growth and C cons. mort.

The model F1=dRdt=rRαR2βRCF2=dCdt=γRCδC

Setting each subequation to 0 F1=0=rRαR2βRCF2=0=γRCδC

54 / 57

C-R, R log. growth and C cons. mort.

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α

54 / 57

C-R, R log. growth and C cons. mort.

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=δγ

54 / 57

C-R, R log. growth and C cons. mort.

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)
55 / 57

C-R, R log. growth and C cons. mort.

The phase plane

56 / 57

C-R, R log. growth and C cons. mort.

57 / 57

Grey Grey Owl

Predator-prey (consumer-resource) interactions, example I

2 / 57
Paused

Help

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