| Here's a fun little exercise:
Open up a spreadsheet. Label the first column C for capital. This starts at 1. Label the second column T for total resources extracted. This starts at 0. Label the third column r for resources extracted this step. Label the fourth column E for extraction efficiency. Label the 5th column m for maintenance. Make it proportional to capital. Now, for each step: E is some positive function of T with a negative slope. It doesn't have to have a finite area under the curve (you don't have to assume total resources to be finite, in other words). You just have to assume that the next unit of resources to be extracted requires a bit more effort than the last one. Use E = .1*exp(-.01*T) or something like that. r = C*E m = C*k where k is any positive number between 1 and 0- .01 is a good constant to use. C += r*q - m where q is again some constant, say .2 T += r Now observe the behavior of the system. Plot the value of C over time. For the above constants you'll want to include about 3000 steps. (Edit: forgot the maintenance term) |