21.4 Exercises
Exercise 21.2 Modify the two stage moose population model (Equation (21.2)) with the following parameters and plot the resulting adult and juvenile populations:
- \(f = 0.6\), \(g = 0.6\), \(p = 0.7\)
- \(f = 0.5\), \(g = 0.6\), \(p = 0.4\)
- \(f = 0.3\), \(g = 0.6\), \(p = 0.5\)
population
in the demodeler
library to produce 1000 realizations of this stochastic process over 20 generations. Assume the initial population size is 10 individuals. Comment on the long term dynamics of the population.
casino
in the demodelr
library to produce 1000 realizations of this stochastic process. Comment on the long term dynamics of your earnings. Then assuming the house win probability is 0.52 figure out how long the game, on average, runs before you are broke. Finally, adjusting the house win probability, hypothesize a function of the length of game as a function of the house win probability.
Exercise 21.6 A population grows according the the growth law \(x_{t+1}=r_{t}x_{t}\).
- Determine the general solution to this discrete dynamical system.
- Plot a sample growth curve with \(r_{t}=0.86\) and \(r_{t}=1.16\), with \(x_{0}=100\). Show your solution for \(t=50\) generations.
- Now consider a model where \(r_{t}=0.86\) with probability 1/2 and \(r_{t}=1.16\) with probability 1/2. Write a function that will predict the population after \(t=50\). Show three or four different realizations of this stochastic process.
Exercise 21.7 (Inspired by Logan and Wolesensky (2009)) A “patch” has area \(a\), perimeter \(s\), and a strip (band) of width \(w\) inside the boundary of \(a\) from which the animals disperse. Only those in the strip disperse. Let \(u_{t}\) be the number of animals in \(a\) at any time \(t\). The growth rate of all the animals in \(a\) is \(r\). The rate at which animals disperse from the strip is proportional to the fraction of the animals in the strip, with proportionality constant \(\epsilon\), which is the emigration rate for those in the strip.
- Draw a picture of the situation described above.
- Explain why the equation that describes the dynamics is \[ u_{t+1}=ru_{t} - \epsilon \left( \frac{w \cdot s}{a} u_{t} \right) \]
- Determine conditions on the parameters \(r\), \(w\), \(s\), \(\epsilon\), and \(a\) under which the population is growing.