Population Dynamics

We are going to look at two models for population growth of a species. The first is a standard exponential growth/decay model that describes quite well the population of a species becoming extinct, or the short-term behavior of a population growing in an unchecked fashion. The second, more realistic model, describes the growth of a species subject to constraints of space, food supply and competitors/predators.

Exponential Growth/Decay

We assume that the species starts with an initial population [Graphics:popdyngr1.gif]. The population after n time units is denoted[Graphics:popdyngr2.gif]. Suppose that in each time interval, the population increases or decreases by a fixed proportion of its value at the beginning of the interval. Thus [Graphics:popdyngr3.gif] = [Graphics:popdyngr4.gif] + r [Graphics:popdyngr5.gif], n >= 1. The constant r represents the difference between the birth rate and the death rate. The population increases if r is positive, decreases if r is negative, and remains fixed if r = 0. We can express this in Mathematica via

[Graphics:popdyngr7.gif][Graphics:popdyngr6.gif]

Let's compute two populations at five year intervals for different values of r:

[Graphics:popdyngr7.gif][Graphics:popdyngr8.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr9.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr10.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr11.gif]

In the first case, the population is growing rapidly; in the secondd, decaying rapidly. In fact, it is clear from the model that, for any n, the quotient [Graphics:popdyngr12.gif]/[Graphics:popdyngr13.gif] = (1+ r), and therefore it follows that [Graphics:popdyngr14.gif] = [Graphics:popdyngr15.gif][Graphics:popdyngr16.gif], n >= 0. This accounts for the expression exponential growth/decay. The model predicts a population growth without bound (for growing populations), and is therefore not realistic. Our next model allows for a check on the population caused by limited space, limited food supply, competitors and predators.

Logistic Growth

The previous model assumes that the relative change in population is constant, that is
[Graphics:popdyngr17.gif] = r.
Now let's build in a term that holds down the growth, namely
[Graphics:popdyngr18.gif] = r - u [Graphics:popdyngr19.gif].
We shall simplify matters by assuming that u = 1 + r , so that our recursion relation becomes
[Graphics:popdyngr20.gif]= u [Graphics:popdyngr21.gif](1 - [Graphics:popdyngr22.gif]),
where u is a positive constant. In this model, the population P is constrained to lie between 0 and 1, and should be interpreted as a percentage of a maximum possible population in the environment in question.

This time we will use the Mathematica commands Nest and NestList to automate the computations. Here are explanations of the commands

[Graphics:popdyngr7.gif][Graphics:popdyngr23.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr24.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr25.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr26.gif]

Thus Nest[f, 1, 10] computes f(f(...(f(1))...) with 10 evaluations of the function, and NestList[f, 1, 10] lists all the intervening iterates. Now let's compute a few examples.

[Graphics:popdyngr7.gif][Graphics:popdyngr27.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr28.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr29.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr30.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr31.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr32.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr33.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr34.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr35.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr36.gif]

In the first computation, we have used the Nest command to compute the population density after 20 time intervals, assuming a logistic growth constant u = 0.5, and an initial population density of 50%. The population seems to be dying out. In the remaining examples, we kept the initial population density at 50%, and we used NestList to generate a list of densities for the first 20 time intervals. The only thing we varied was the logistic growth constant. In the second example, with a growth constant u = 1,once again the population is dying out. In the third example, with a growth constant of 1.5 the population seems to be stabilizing at 33.3...%. Finally, in the last example, with a constant of 3.4 the population seems to oscillate between densities of approximately 45% and 84%.

These examples illustrate the remarkable features of the logistic population dynamics model. This model has been studied for more than 150 years, its origins lying in an analysis by the Belgian mathematician Verhulst. Here are some of the facts associated with this model. We will corroborate some of them with Mathematica. In particular, we shall use the ListPlot and BarChart features in Mathematica to display some of the data.

(1) The logistic constant cannot be larger than 4.

In order for the model to work, the output at any point must be between 0 and 1. But the parabola u x (1-x), for 0 <= x <= 1, has its maximum height when x = 1/2, where its value is u/4. To keep that number between 0 and 1, we must restrict u <= 4. Here is what happens if u is bigger than 4:

[Graphics:popdyngr7.gif][Graphics:popdyngr37.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr38.gif]
(2) If 0 <= u <= 1, the population density tends to zero for any initial configuration.

[Graphics:popdyngr7.gif][Graphics:popdyngr39.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr40.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr41.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr42.gif]

Now let's use ListPlot and BarChart to display this data.

[Graphics:popdyngr7.gif][Graphics:popdyngr43.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr44.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr45.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr46.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr47.gif]
(3) If 1 < u <= 3, the population will stabilize at density 1 - 1/u for any initial density other than zero.

The third of the original four examples corroborates the assertion (with u = 1.5 and 1 - 1/u = 1/3). In the following examples, we set u = 2, 2.5 and 3 respectively, so that 1 - 1/u equals 0.5, 0.6 and 0.666..., respectively. The convergence in the last computation is rather slow (as one might expect from a boundary case -- or bifurcation point).

[Graphics:popdyngr7.gif][Graphics:popdyngr48.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr49.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr50.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr51.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr52.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr53.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr54.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr55.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr56.gif]
(4) If 3 < u < 3.56994..., then there is a periodic cycle.

The theory is quite subtle. For a fuller explanation, the reader may consult Encounters with Chaos, by Denny Gulick (McGraw-Hill), section 1.5. In fact there is a sequence
[Graphics:popdyngr57.gif] = 3 < [Graphics:popdyngr58.gif] = 1 + [Graphics:popdyngr59.gif] < [Graphics:popdyngr60.gif] < [Graphics:popdyngr61.gif] < ... < 4,
such that: between [Graphics:popdyngr62.gif] and [Graphics:popdyngr63.gif] there is a cycle of period 2; between [Graphics:popdyngr64.gif] and [Graphics:popdyngr65.gif] there is cycle of period 4; and in general, between [Graphics:popdyngr66.gif] and [Graphics:popdyngr67.gif] there is a cycle of period [Graphics:popdyngr68.gif]. In fact one knows that, at least for small k, one has the approximation [Graphics:popdyngr69.gif] ~~ 1 + [Graphics:popdyngr70.gif]. So

[Graphics:popdyngr7.gif][Graphics:popdyngr71.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr72.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr73.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr74.gif]

This explains the oscillatory behavior we saw in the last of the original four examples (with [Graphics:popdyngr75.gif]< u = 3.4 < [Graphics:popdyngr76.gif]). Here is the behavior for [Graphics:popdyngr77.gif] < u = 3.5 < [Graphics:popdyngr78.gif]. BarChart is particularly effective here for spotting the cycle of order 4.

[Graphics:popdyngr7.gif][Graphics:popdyngr79.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr80.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr81.gif]
(5) There is a value u < 4 beyond which -- chaos!

It is possible to prove that the sequence [Graphics:popdyngr82.gif] tends to a limit [Graphics:popdyngr83.gif]. The value of [Graphics:popdyngr84.gif] , sometimes called the Feigenbaum parameter, is aproximately 3.56994... Let's see what happens if we use a value of u between the Feigenbaum parameter and 4.

[Graphics:popdyngr7.gif][Graphics:popdyngr85.gif]

[Graphics:popdyngr7.gif][Graphics:popdyngr86.gif]
[Graphics:popdyngr7.gif][Graphics:popdyngr87.gif]

This is an example of what mathematicians call a chaotic phenomenon! It is not random -- the sequence was generated by a precise, fixed mathematical procedure, but the results manifest no discernible pattern. Chaotic phenomena are unpredictable, but with modern methods (including computer analysis), mathematicians have been able to identify certain patterns of behavior in chaotic phenomena. For example, the last figure suggests the possibility of unstable periodic cycles and other recurring phenomena. Indeed a great deal of information is known. The aforementioned book by Gulick is a fine reference, as well as the source of an excellent bibliography on the subject.