Stochastic Population Models

Random variables
Environmental stochasticity
Demographic stochasticity
A random variable is a variable whose value can’t be predicted with certainty.
Examples
A random variable (\(X\)) can be described by a probability distribution.
There are many types of probability distributions, including:
\[ X \sim \mbox{Normal}(\mu=0, \sigma^2=1) \]










\[ N_t \sim \mbox{Normal}(\mu=50, \sigma^2=1) \]
Environmental stochasticity
Demographic stochasticity
\[ N_{t+1} = N_t + N_t r_t \]
\[ r_t \sim \mbox{Normal}(\bar{r}, \sigma^2) \]
R code
\[ r_t \sim \mbox{Normal}(\bar{r}=0.1, \sigma^2=0.01) \]










\[ r_t \sim \mbox{Normal}(\bar{r}=0.1, \sigma^2=0.25) \]










Imagine the carrying capacity fluctuates randomly.
\[ N_{t+1} = N_t + N_tr_{max}(1 - N_t/K_t) \\ K_t \sim \mbox{Normal}(\bar{K}, \sigma^2) \]
\[ K_t \sim \mbox{Normal}(\bar{K}=200, \sigma^2=50) \]










We can make the BIDE model stochastic by modeling random variation in the number of individuals that are born and die each year (we’ll ignore movement):
\[ N_{t+1} = N_t + B_t - D_t \]
What distributions should we use for \(B_t\) and \(D_t\)?
\[ B_t \sim \mathrm{Poisson}(N_t\times b) \] \[ D_t \sim \mathrm{Binomial}(N_t, d) \]
The Poisson distribution is useful for data that are non-negative integers.
It has a single parameter that describes the expected value of the random outcomes.
In stochastic population models, the Poisson distribution can be used to model the number of births (\(B_t\)) that occur in a time interval.
\[ B_t \sim \mathrm{Poisson}(N_t \times b) \]
The binomial distribution is also useful for data that are non-negative integers, but it has an upper bound.
In population models, the upper bound is often population size, and we use the model to describe how many individuals die during some time period.
\[ D_t \sim \mathrm{Binomial}(N_t, d) \]
Poisson-Binomial birth-death model.
\[ \begin{gather*} N_{t+1} = N_t + B_t - D_t \\ B_t \sim \mathrm{Poisson}(N_t \times b) \\ D_t \sim \mathrm{Binomial}(N_t, d) \end{gather*} \]
Purely deterministic models are too rigid.
Purely stochastic models don’t describe population processes.
The goal is to develop mechanistic models that represent our biological understanding while allowing for uncertainty.