Demographic stochasticity refers to the variability in population growth rates arising from random differences among individuals in survival and reproduction within a season. This variability will occur even if all individuals have the same expected ability to survive and reproduce and if the expected rates of survival and reproduction don't change from one generation to the next. Even though it will occur in all populations, it is generally important only in populations that are already fairly small.5
To make this concrete, let's compare two populations, one of size 10,
one of size 10,000. We'll asssume that individuals produce 2
offspring, on average, but that the actual number of offspring any one
individual produces is a Poisson random variable, i.e.,
> n <- rpois(1000, 20000)
> n.surv <- numeric(0)
> for (i in 1:1000) n.surv[i] <- rbinom(1, n[i], 0.5)
> mean(n)
[1] 20002.28
> var(n)
[1] 19284.28
> mean(n.surv)
[1] 9999.959
> var(n.surv)
[1] 9370.934
> quantile(n.surv)
0% 25% 50% 75% 100%
9734.00 9931.75 9999.00 10070.00 10322.00
So in this simulation the maximum decline (from 10,000 to 9734) was a little less than 3%, and the median outcome was indistinguishable from stability.
Another way of summarizing these results is to say that
.
> n <- rpois(1000, 20) > n.surv <- numeric(0) > for (i in 1:1000) n.surv[i] <- rbinom(1, n[i], 0.5) > mean(n) [1] 20.102 > var(n) [1] 19.01261 > mean(n.surv) [1] 10.016 > var(n.surv) [1] 10.46621 > quantile(n.surv) 0% 25% 50% 75% 100% 2 8 10 12 23
So in this simulation the maximum decline (from 10 to 2) was 80%, even though the median outcome was stability and the individuals in this population had exactly the same reproductive potential as those in the population of 10,000.
Another way of summarizing these results is to say that
, three orders of magnitude
greater than the variance when
.
Like genetic stochasticity, demographic stochasticity is likely to be important only in populations that are already small.7It may pose an additional threat to species that are already endangered, but it is unlikely to cause the endangerment of those with reasonably large populations.