Week 7

Lotka-Volterra model of competition: graphical analysis

Lecture in a nutshell

  • Model derivation
    1. Per capita growth rate of two competing species A and B (linear competitive effect):
      • 1NAdNAdt=rAαAANAαABNB
      • 1NBdNBdt=rBαBBNBαBANA
    2. Coefficient αij represents the effect of species j on species i: ddNj1NidNidt
    3. Intraspecific interaction: i=j; Interspecific interaction: ij
    4. Categorizing types of interspecific interaction:
      • Mutualism: both αAB and αBA is positive
      • Consumer-Resource: one of αAB and αBA is positive and the other is negative
      • Competition: both αAB and αBA is negative
    5. Find the equilibrium points of the system by solving the simultaneous equations:
      • dNAdt=0 and dNBdt=0
    6. Four equilibrium points (NA,NB):
      1. E0=(0,0)
      2. EA=(rAαAA,0)
      3. EB=(0,rBαBB)
      4. EAB=(rArB(αBBrBαABrA)αAAαBBαABαBA,rArB(αAArAαBArB)αAAαBBαABαBA)

  • State-space diagrams (phase plane) and isoclines
    1. State-space diagrams: state variables (NA,NB) as axes
    2. Zero net growth isoclines (ZNGIs): combinations of state variables that lead to zero growth (of the focal state variable)
    3. Four ZNGIs (two for each species):
      • ZNGIs for species A: NA=0 and rAαAANAαABNB=0
      • ZNGIs for species B: NB=0 and rBαBBNBαBANA=0

  • Graphical analysis

    Four cases:
    1. Species A wins: EA=(rAαAA,0) when rAαAA>rBαBA and rAαAB>rBαBB
    1. Species B wins: EB=(0,rBαBB) when rAαAA<rBαBA and rAαAB<rBαBB
    1. Species A and B coexist (stable): EAB=(rArB(αBBrBαABrA)αAAαBBαABαBA,rArB(αAArAαBArB)αAAαBBαABαBA) when rBαBA>rAαAA and rAαAB>rBαBB
    1. Species A and B coexist (unstable; there are alternative stable states EA and EB depending on the initial condition): EAB=(rArB(αBBrBαABrA)αAAαBBαABαBA,rArB(αAArAαBArB)αAAαBBαABαBA) when rBαBA<rAαAA and rAαAB<rBαBB

Take-home message: For the two species to coexist stably, the (intraspecific) effect each species imposes on itself should be greater than the (interspecific) effect it imposes on the other species.



Lab demonstration

Here are the state-space diagrams and vector fields of the systems in which (1) two species exhibit stable coexistence and (2) two species exhibit unstable coexistence (saddle).

library(tidyverse)
library(deSolve)

phase_plane <- function(r1, r2, a11, a21, a22, a12, title, shape){
  ### Vectors
  LV_competition_model <- function(times, state, parms) {
    with(as.list(c(state, parms)), {
      dN1_dt = N1*(r1-a11*N1-a12*N2)  
      dN2_dt = N2*(r2-a22*N2-a21*N1)
      return(list(c(dN1_dt, dN2_dt)))
    })
  }
  
  times <- seq(0, 0.1, by = 0.1)
  parms <- c(r1 = r1, r2 = r2, a11 = a11, a21 = a21, a22 = a22, a12 = a12)
  
  vector_grid <- expand.grid(seq(5, 505, 20), seq(5, 505, 20))
  vector_data <- vector_grid %>% 
    pmap(., function(Var1, Var2){
      state <- c(N1 = Var1, N2 = Var2)
      pop_size <- ode(func = LV_competition_model, times = times, y = state, parms = parms)
      pop_size[2, 2:3]
    }) %>% 
    bind_rows() %>%
    rename(xend = N1, yend = N2) %>%
    bind_cols(vector_grid) %>%
    rename(x = Var1, y = Var2)
  
  ### Phase plane
  ggplot() + 
    geom_abline(slope = -a11/a12, intercept = r1/a12, color = "#E41A1C", size = 1.5) + 
    geom_abline(slope = -a21/a22, intercept = r2/a22, color = "#377EB8", size = 1.5) + 
    geom_segment(data = vector_data, 
                 aes(x = x, y = y, xend = xend, yend = yend), 
                 arrow = arrow(length = unit(0.1, "cm"))) +
    geom_point(aes(x = (a22*r1-a12*r2)/(a11*a22-a12*a21), 
                   y = (a21*r1-a11*r2)/(a12*a21-a11*a22)), 
               color = "red", 
               size = 4, 
               shape = shape,
               stroke = 2) +
    scale_x_continuous(name = "N1", limits = c(0, 505), expand = c(0, 0)) +
    scale_y_continuous(name = "N2", limits = c(0, 505), expand = c(0, 0)) +
    theme_bw(base_size = 13) + 
    theme(panel.grid = element_blank(),
          plot.title = element_text(hjust = 0.5)) +
    labs(title = title)
}

phase_plane(r1 = 1.2, r2 = 1.2, a11 = 1/200, a21 = 1/300, a22 = 1/200, a12 = 1/300, title = "Stable coexistence", shape = 16)

phase_plane(r1 = 1.2, r2 = 1.2, a11 = 1/300, a21 = 1/200, a22 = 1/300, a12 = 1/200, title = "Unstable coexistence (saddle)", shape = 1)