Week 7
Lotka-Volterra model of competition: graphical analysis
Lecture in a nutshell
- Model derivation
- Per capita growth rate of two competing species A and B (linear competitive effect):
- 1NAdNAdt=rA−αAANA−αABNB
- 1NBdNBdt=rB−αBBNB−αBANA
- Coefficient αij represents the effect of species j on species i: ddNj1NidNidt
- Intraspecific interaction: i=j; Interspecific interaction: i≠j
- 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
- Find the equilibrium points of the system by solving the simultaneous equations:
- dNAdt=0 and dNBdt=0
- Four equilibrium points (N∗A,N∗B):
- E0=(0,0)
- EA=(rAαAA,0)
- EB=(0,rBαBB)
- EAB=(rArB(αBBrB−αABrA)αAAαBB−αABαBA,rArB(αAArA−αBArB)αAAαBB−αABαBA)
- Per capita growth rate of two competing species A and B (linear competitive effect):
- State-space diagrams (phase plane) and isoclines
- State-space diagrams: state variables (NA,NB) as axes
- Zero net growth isoclines (ZNGIs): combinations of state variables that lead to zero growth (of the focal state variable)
- 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
- Species A wins: EA=(rAαAA,0) when rAαAA>rBαBA and rAαAB>rBαBB
- Species B wins: EB=(0,rBαBB) when rAαAA<rBαBA and rAαAB<rBαBB
- 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
- 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)
<- function(r1, r2, a11, a21, a22, a12, title, shape){
phase_plane ### Vectors
<- function(times, state, parms) {
LV_competition_model with(as.list(c(state, parms)), {
= N1*(r1-a11*N1-a12*N2)
dN1_dt = N2*(r2-a22*N2-a21*N1)
dN2_dt return(list(c(dN1_dt, dN2_dt)))
})
}
<- seq(0, 0.1, by = 0.1)
times <- c(r1 = r1, r2 = r2, a11 = a11, a21 = a21, a22 = a22, a12 = a12)
parms
<- expand.grid(seq(5, 505, 20), seq(5, 505, 20))
vector_grid <- vector_grid %>%
vector_data pmap(., function(Var1, Var2){
<- c(N1 = Var1, N2 = Var2)
state <- ode(func = LV_competition_model, times = times, y = state, parms = parms)
pop_size 2, 2:3]
pop_size[%>%
}) 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)