library(package = "deSolve")
library(package = "phaseR")
Welcome back from break! I hope that you are all well rested and eager to take on the second half of the term! I want to note that I will be scaling back the problem sets a bit so that you may allocate more of your time to the remodeling project for this second half of the course. That being written, I ask that you please complete and turn in a knitted (.html and optional .Rmd) copy of your assignment to Filer on time. It is important to me to post the problem set keys soon after the due date so that way people have access to the key and can checks their answers. The sooner after people see keys, the better reinforced the learning. Thank you for your cooperation.
These questions all require the same parameter values, but present the results differently. Nothing technically is new here, but you are essentially graphically showing the same result 3 different ways.
1.1. First, write out, in \(\LaTeX\), the Rosenzweig-MacArthur predator-prey/consumer-resource model. Remember the equations are separated in the book (for some unknown and mildly-annoying reason), but can be found as the first equation on the top of page 166 and the first equation on page 165.
1.2. Second, using the Rosenzweig-MacArthur predator-prey/consumer-resource model, I ask that you show 3 time series; each with a different dynamical behavior: (1) stable, prey only equilibrium, (2) stable coexistence of prey and predators, and (3) unstable (spiral) predator and prey populations. Make a time sequence until 100 units of time and use the parameter values:
Parameter | Symbol | Value |
---|---|---|
Intrinsic rate of grow of prey | \(r\) | 0.5 |
Maximum consumption rate of prey | \(c\) | 2 |
Half-saturation constant | \(g\) | 10 |
Maximum consumption and conversion rate of prey to pre | \(b\) | 1.5 |
Density-independent death rate of predators | \(m\) | 1 |
The way I would like you to create the 3 different dynamical behaviors is to modify the carrying capacity. Just plug in various numbers until you graphically see the different behaviors. Note that increasing the carrying capacity in this model tends to destabilize the populations; hence, the paradox of enrichment you read about before break.
Last, make sure to plot all three in the same graph, by setting up
the plotting parameters (e.g.,
par(mfrow = c(1, 3), mar = c(4.5, 4.5, 0.5, 0.5))
) and add
the chunk option (between the curly brackets at the top of the code
chunk) fig.dim = c(8, 3)
to set the width and height of the
figure once it’s knitted.
lines()
for the prey and predator populations) for each of
the 3 graphs. That’s it!