Section2.6Intervention and Bifurcations¶ permalink
It is often the case that an outside influence affects a population. A population of economic value might be harvested for resource consumption. A species that is deemed harmful might have outside efforts to control or eradicate the population. Endangered populations may be influenced by conservation efforts to modify the birth or death rates or to supplement natural population growth through artificial migration. Mathematical models can often help us understand some of the impacts of these interventions on a population.
This section will suggest some of the ways that we can analyze the effects of interventions on a population. These interventions often are targeted at changing the growth rate, and analysis can explore if changes to the mathematical model will lead to such changes in population growth. We will use harvesting as a specific intervention to motivate our discussion.
Consider a population that prior to any intervention can be modeled as a sequence with a projection function \(f\), \begin{equation*}P_{n+1} = f(P_n).\end{equation*} We are interested in the changes to the model when we introduce harvesting. Harvesting corresponds to removing additional individuals from the population than occur naturally through death and emigration. If we let \(H_{n+1}\) be the sequence for the number of individuals harvested during the \((n+1)\)st cycle for the population, then the new model for our sequence will be defined through \begin{equation*}P_{n+1} = f(P_n) - H_{n+1}.\end{equation*}
The two simplest models for harvesting correspond to a constant harvesting rate and a proportional harvesting rate. A constant harvesting rate occurs when the same number of individuals are removed from the population during each cycle, independent of the current size of the population. A proportional harvesting rate occurs when the harvesting efforts remove a number of individuals that is proportional to the population size. This model is often used to approximate what happens when harvesting effort is constant but success in capturing an individual is proportional to the population size. Other models might also be formed that capture the idea that it is harder to find individuals to harvest when the population is small with nonlinear functions.
In addition, we will explore the effect of intervention on the potential equilibrium values of the model as well as the stability of those equilibria. Such fundamental changes in the behavior of the model are known as bifurcations, and this section will introduce some examples of bifurcations.
The constant harvesting rate results in a model \begin{equation*}P_{n+1} = f(P_n) - H, \end{equation*} where \(H\) is the number of individuals harvested per cycle. In the context of the graphical analysis of the projection function, this corresponds to shifting the graph of the projection function vertically downward by the value of \(H\). This changes the values of fixed points and for large enough values of \(H\) make the fixed points vanish.
Example2.6.1
Consider the discrete logistic model with projection function \(f(x) = (1+r_0)x - \alpha x^2.\) The natural fixed points for this model are at \(P=0\) and at \(P=K=\frac{r_0}{\alpha}\). Once constant harvesting is introduced, the modified projection function is given by \(f_H(x) = (1+r_0)x - \alpha x^2 - H\).
The fixed points are the solution to the quadratic equation \begin{equation*} -\alpha x^2 + r_0 x - H = 0.\end{equation*} The solutions are given by the quadratic formula \begin{equation*}x = \frac{r_0 \pm \sqrt{r_0^2 -4 \alpha H}}{2\alpha}.\end{equation*} When \(H=0\), we recover the unperturbed fixed points. As \(H\) increases, the expression inside the square root, \(r_0^2-4\alpha H\), decreases until it equals zero when \(H = \frac{r_0^2}{4 \alpha}\). For any value of \(H \gt \frac{r_0^2}{4 \alpha}\), there are no fixed points, a catastrophic result for the population that is predicted to decrease indefinitely.
You should note that for \(H \gt 0\), \(P=0\) is no longer a fixed point. Mathematically, even though there are no individuals, the model still harvests individuals resulting in a negative population. Although this does not make physical sense, it is biologically significant for very small populations. It would indicate that for small enough populations, constant harvesting would eradicate the population in a single step. And for populations that are below the lower fixed point, the population would be decreasing steadily towards this same fate.
You can explore the cobweb diagram for this situation for the discrete logistic model with \(r_0 = 1.8\) and \(\alpha = 0.01\) and varying values for \(H\). The bifurcation occurs when \(H = \frac{r_0^2}{4\alpha} = 81\). Notice that if your initial condition is below the lower fixed point, the population will die off. Also notice that if \(H\) is above the bifurcation value, there is no population that will be able to survive.
When working with bifurcations, it is often useful to create a bifurcation diagram. For the example above, our bifurcation diagram might show the values of the fixed points as they depend on the value of \(H\). In addition, by changing the line style of the graph, we can indicate the local stability of the fixed points. For the parameter values used, the upper fixed point was stable so long as it existed and the lower fixed point was unstable. The following Sage code generates a graph that we can use.
This type of bifurcation where two fixed points with opposite stability merge and subsequently vanish is called a saddle node bifurcation. The bifurcation itself occurs at the parameter value where the two fixed points coalesce.
Subsection2.6.2Proportional Harvesting
The proportional harvesting rate results in a model \begin{equation*}P_{n+1} = f(P_n) - h \cdot P_n, \end{equation*} where \(h\) is the proportionality constant of \(H_{n+1} = h P_n\). For small populations, there will be small numbers harvested; for large populations, there will be large numbers harvested. If \(f(x)\) has a fixed point at \(x=0\), the harvesting model will also have that fixed point. The following example considers the effect of proportional harvesting on the discrete logistic model.
Example2.6.2
Again consider the discrete logistic model with projection function \(f(x) = (1+r_0)x - \alpha x^2\) with fixed points at \(P=0\) and at \(P=K=\frac{r_0}{\alpha}\). With proportional harvesting, the modified projection function is given by \(f_h(x) = (1+r_0)x - \alpha x^2 - hx\).
The fixed point equation \begin{equation*}(1+r_0)x - \alpha x^2 - hx = x\end{equation*} can be rewritten in an equivalent factored form \begin{equation*}x\big((r_0-h)-\alpha x\big)=0.\end{equation*} The fixed points of the perturbed model are \(x = 0\) and \(x=\frac{r_0-h}{\alpha}\). When \(h=0\), the second fixed point corresponds to our original value \(K=\frac{r_0}{\alpha}\). As \(h\) increases, location of the second fixed point steadily decreases. When \(h=r_0\), the two fixed points overlap, and when \(h \gt r_0\), the second fixed point is a negative value.
You can explore the cobweb diagram for this situation for the discrete logistic model with \(r_0 = 1.8\) and \(\alpha = 0.01\) and varying values for \(h\). The bifurcation occurs when \(h = r_0 = 1.8\). Notice that if your initial condition is between the two fixed points, the population increase. But if the harvesting rate exceeds the intrinsic per capita net growth rate \(h \gt r_0\), then the population converges to an extinct state.
Before generating a bifurcation diagram, let us consider the stability of our fixed points. The projection function that includes harvesting is given by \begin{equation*}f(x) = (1+r_0)x - \alpha x^2 - h x.\end{equation*} The derivative is given by \begin{equation*}f'(x) = (1+r_0 - h) - 2 \alpha x.\end{equation*} Finding the slope at the fixed points, \(x=0\) and \(x=\frac{r_0-h}{\alpha}\), we find \begin{align*}
f'(0) &= 1 + r_0 - h, \\
f'(\frac{r_0-h}{\alpha}) &= 1+r_0-h - 2(r_0-h) = 1-(r_0-h).
\end{align*} Consequently, we see that \(x^*=0\) is locally unstable when \(h \lt r_0\). That is, a small population will be able to grow so long as the per capita net growth rate exceeds the per capita harvesting rate. However, once \(h \gt r_0\), the slope \(f'(0)\) has value less than 1 and the fixed point is stable. This means that a small population will converge towards extinction. (A population does not want extinction to be a stable equilibrium.) The other fixed point has the reverse stability. Note that it is possible for instability if \((r_0-h) \gt 2\), where the model would introduce unstable oscillations around the fixed point. For the parameters explored above, this does not happen.
The following Sage code generates a bifurcation diagram. Note that the plots for the fixed points are divided into two parts to capture the change in stability.
This type of bifurcation where two fixed points with opposite stability cross through one another and subsequently switch stability is called a transcritical bifurcation. The bifurcation itself occurs at the parameter value where the two fixed points coalesce, in this case when \(h=r_0\).