A group of species that interact in a given space
Species interactions can be a determinant of:
List species interactions
Competition is considered to be a dominant (perhaps THE dominant) type of species interactions in a community*.
*I doubt it
Contest competition
One or few individuals dominate resources
Scramble competition
Depletes resources and all competitors are affected
One species model (Logistic model):
\[ \begin{align} \frac{dN}{dt} &= rN(1-\frac{N}{K}) &&\text{Logistic model}\\ \end{align} \]
Add \(N_2\) to the equation:
\[ \begin{align} \frac{dN_1}{dt} &= r_1N_1(1-\frac{N_1+N_2}{K_1})\\ \end{align} \]
How does \(N_2\) impact \(\frac{dN_1}{dt}\)?
Visualize how \(N_2\) impacts \(\frac{dN_1}{dt}\)
Set \(r\), \(K_1\), \(N_1\), and \(N_2\)
\(N_2\) is set to be \(0\) for reference
Write equation
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+N_2}{K_1})\\ \]
Logistic model + species 2 (\(N_2\))
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+N_2}{K_1})\\ \]
Logistic model + species 2 (\(N_2\))
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+N_2}{K_1})\\ \]
The above model assumes per-capita impacts are equal b/w species 1 and 2
Logistic model + species 2 (\(N_2\))
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+ \alpha N_2}{K_1})\\ \]
Multiply \(\alpha\) to model different impacts of species 2
\(\alpha\) is referred to as the competition coefficient
Logistic model + species 2 (\(N_2\))
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+ \alpha N_2}{K_1})\\ \]
The above model assumes
Lotka-Volterra model
\[ \frac{dN_1}{dt} = r_1N_1(1-\frac{N_1+ \alpha_{12} N_2}{K_1})\\ \frac{dN_2}{dt} = r_2N_2(1-\frac{N_2+ \alpha_{21} N_1}{K_2})\\ \]
The above equation models dynamic interactions of the two competing species
Lotka-Volterra model (different form)
\[ \frac{dN_1}{dt} = N_1(r_1-\beta_1 N_1 - \gamma_{12}N_2)\\ \frac{dN_2}{dt} = N_2(r_2-\beta_2 N_2 - \gamma_{21}N_1)\\ \]
\[ \begin{align} \frac{dN_1}{dt} &= r_1N_1(1-\frac{N_1+ \alpha_{12} N_2}{K_1})\\ &= N_1(r_1 - \frac{r_1}{K_1}N_1 - \frac{r_1 \alpha_{12}}{K_1} N_2)\\ &= N_1(r_1 - \beta_1 N_1 - \beta_1 \alpha_{12} N_2)\\ &= N_1(r_1 - \beta_1 N_1 - \gamma_{12} N_2)\\ \end{align} \]
where \(\beta_1 = \frac{r_1}{K_1}\) and \(\alpha_{12} = \frac{\gamma_{12}}{\beta_1}\)
\(\alpha_{12}\) is the ratio of inta- and interspecific competition coefficitents
Theory
Much of interests in community ecology is the coexistence of competiting species
What does the Lotka-Volterra model predict?
Make the discrete version of the Lotka-Volterra model
In analogy of trasformation from the logistic to Beverton-Holt model
\[ N_{1,t+1} = (\frac{\lambda_1}{1 + \beta_1 N_{1,t} + \gamma_{12}N_{2,t}}) N_{1,t}\\ N_{2,t+1} = (\frac{\lambda_2}{1 + \beta_2 N_{2,t} + \gamma_{21}N_{1,t}}) N_{2,t} \]
Set \(\lambda\), \(\beta_i\), and \(\gamma_{ji}\)
Set initial abundance N1[1]
and N2[1]
Write the equations
\[ N_{1,t+1} = (\frac{\lambda_1}{1 + \beta_1 N_{1,t} + \gamma_{12}N_{2,t}}) N_{1,t}\\ N_{2,t+1} = (\frac{\lambda_2}{1 + \beta_2 N_{2,t} + \gamma_{21}N_{1,t}}) N_{2,t} \]
Check the first 5 time steps
## [1] 10.00000 10.90909 11.52000 11.95514 12.27701
## [1] 5.000000 5.000000 4.925373 4.838899 4.760467
\[ N_{1,t+1} = (\frac{\lambda_1}{1 + \beta_1 N_{1,t} + \gamma_{12}N_{2,t}}) N_{1,t}\\ N_{2,t+1} = (\frac{\lambda_2}{1 + \beta_2 N_{2,t} + \gamma_{21}N_{1,t}}) N_{2,t} \]
In the previous exercise, we set:
What does this mean?
Try the following conditions
Scenario 1
Intraspecific competition \(\beta_{i}\) is stronger than interspecific competition \(\gamma_{ji}\) for both species (\(\beta_i > \gamma_{ji}\))
# Set equal values of lambda for species 1 and 2
lambda <- 3
b1 <- 0.1 # Intra-specific competition
g21 <- 0.05 # Impact of sp1 on sp2
b2 <- 0.3 # Intra-specific competition
g12 <- 0.15 # Impact of sp2 on sp1
# initial abundance
N1 <- N2 <- NULL # create "NULL" objects
N1[1] <- 5 # set initial abundance 5
N2[1] <- 10 # set initial abundance 10
# simulate
for(t in 1:99){ # simulate 100 time steps
N1[t+1] <- (lambda*N1[t])/(1 + b1*N1[t] + g12*N2[t])
N2[t+1] <- (lambda*N2[t])/(1 + b2*N2[t] + g21*N1[t])
}
When \(\beta_i > \gamma_{ji}\),
the two species coexist (initial abundance does not matter)
Try the following conditions
Scenario 2
Intraspecific competition \(\beta_{i}\) is stronger than interspecific competition \(\gamma_{ji}\) for species 1 (\(\beta_1 > \gamma_{21}\))
&
Intraspecific competition \(\beta_{i}\) is weaker than interspecific competition \(\gamma_{ji}\) for species 2 (\(\beta_2 < \gamma_{12}\))
Set initial abundance as you like
# Set equal values of lambda for species 1 and 2
lambda <- 3
# in sp.1 equation
b1 <- 1.5
g21 <- 1.0
# in sp.2 equation
b2 <- 0.1
g12 <- 0.8
# initial abundance
N1 <- N2 <- NULL # create "NULL" objects
N1[1] <- 10
N2[1] <- 8
# simulate
for(t in 1:99){ # simulate 100 time steps
N1[t+1] <- (lambda*N1[t])/(1 + b1*N1[t] + g12*N2[t])
N2[t+1] <- (lambda*N2[t])/(1 + b2*N2[t] + g21*N1[t])
}
When \(\beta_i > \gamma_{ji} \cap \beta_j < \gamma_{ij}\) (or \(\beta_i < \gamma_{ji} \cap \beta_j > \gamma_{ij}\)),
the two species cannot coexist
Try the following conditions
Scenario 3
Intraspecific competition \(\beta_{i}\) is weaker than interspecific competition \(\gamma_{ji}\) for species 1 (\(\beta_1 < \gamma_{21}\))
&
Intraspecific competition \(\beta_{i}\) is weaker than interspecific competition \(\gamma_{ji}\) for species 2 (\(\beta_2 < \gamma_{12}\))
Set initial abundance as you like
# Set equal values of lambda for species 1 and 2
lambda <- 3
# in sp.1 equation
b1 <- 0.1
g21 <- 0.2
# in sp.2 equation
b2 <- 0.2
g12 <- 0.4
# initial abundance
N1 <- N2 <- NULL # create "NULL" objects
N1[1] <- 1
N2[1] <- 1.5
# simulate
for(t in 1:99){ # simulate 100 time steps
N1[t+1] <- (lambda*N1[t])/(1 + b1*N1[t] + g12*N2[t])
N2[t+1] <- (lambda*N2[t])/(1 + b2*N2[t] + g21*N1[t])
}
When \(\beta_i < \gamma_{ji}\),
the two species cannot coexist (winner is the species with higher initial abundance)
Lotka-Volterra model predicts three consequences
Stable coexistence
\(\beta_i > \gamma_{ji}\)
Competitive dominance (exclusion)
\(\beta_i > \gamma_{ji} \cap \beta_j < \gamma_{ij}\) (or \(\beta_i < \gamma_{ji} \cap \beta_j > \gamma_{ij}\))
Destabilizing competition
\(\beta_i < \gamma_{ji}\)