Mathematics 134 -- Intensive Calculus for Science 2

Discussion 6/Lab Day 4: Population Growth Models

April 23, 24 and 25, 2001

Background

One mathematical model of population growth for a species (that is, a differential equation whose solutions are supposed to exhibit all or some of the same behavior as actual populations, and allow us to make predictions about the real-world population under consideration) is the ``exponential growth'' equation:
(1)

dP/dt = kP

(k > 0), which has general solution
(2)
P(t) = P(0)ekt

As we know, saying that a population satisfies the equation (1) for all t is the same as saying that

(*) the rate of change of the population (dP/dt) is always proportional to P.

The constant of proportionality k in the equation represents the net growth rate per unit time -- birth rate minus death rate.

Discussion Questions

A) For example, suppose you had k = .04, P(0) = 1000, t in years, and you used (2) to calculate a prediction of the population at t = 50 years. What number does (2) give you?

B) What are some of the limitations of the functions (2) as mathematical descriptions of real populations? What are we ``leaving out''? Are we ``leaving out'' too much of the real world to get realistic results?

C) If our population is living in a fixed habitat with limited, but self-renewing, resources (for instance, plants as food for the individuals of an animal species to eat), then one possible additional constraint we might want to build into our population model is that there is a limited sustainable maximum population M that the habitat can support. In biology, M would be called the carrying capacity. One mathematical model along these lines was proposed by the Belgian scientist P.F. Verhulst in the 1830's, and intensively studied by biologists and demographers since. Verhulst's idea was to consider, instead of (*), the proposed relationship:

(**) The rate of change of the natural logarithm of the population is proportional to the difference between M (the maximum sustainable population) and the population.

Write Verhulst's proposed model as a differential equation of the form dP/dt = f(t,P) for the appropriate function f(t,P). This is called the logistic equation.

D) Solve your equation using the separation of variables technique, and the table of integrals as necessary. You should be able to transform your answer to

P(t) = M/(1 + c e-Mkt)

by algebraic manipulations, where c is an arbitrary constant.
Next, we want to study these equations, their solutions, and see how an actual population problem might be attacked using this model.

Lab Questions

In a "real-world" population study in biology or demographics, the idea would be to

If the fit is good, you might make predictions about what the population would be at times in the future.

We are going to do this for the following table of data from the U.S. Census from the end of the 19th century through the beginning of the 20th century:

t (year)18701880189019001910192019301940
P (pop. in millions)38.650.262.976.092.0105.7122.8131.7

If these points were exactly on some logistic equation solution graph, then for each of these t values, the points (P, P'/P) would lie on some line z = k(M - P) in the (P,z)-plane. To begin,

E) Using the table of values above, estimate the rate of change P' (in million people per year) at each of the given times, using a forward difference (P(t + Delta t) - P(t))/Delta t and divide by P to get an approximate value for the ratio P'/P. For instance, to estimate P' at 1870, you will use (50.2-38.6)/10 = 1.16. (The whole calculation can be done by hand, or using Maple as a calculator.)

F) In Maple, make a list of your approximate data points (P,P'/P) in the following format. Your first data point (corresponding to the year 1870) should have y' = 1.16 as above and y = 38.6 from the table. Then 1.16/38.6 = .0301 (approx.) is your first P'/P value, and the first point in the list is as here:

dl:=[[38.6,.0301],[P2,P2'/P2],...,[P7,P7'/P7]];

(Since there's no obvious good way to estimate P'(1940) from the table, only include data points for 1870 through t = 1930 -- seven points in all.) You can plot your list of (P,P'/P) points to see how close they come to lying on a line, using a plot command like this

plot(dl,style=point);

Try this, take a careful look at the scale on the vertical axis(!), maybe add an option view = [0..120,0..0.05] to the plotting command to scale things more reasonably, and try to "eyeball" a line fitting these points. For example, what sign will the slope have? Approximately where is the z-intercept? We'll derive the equation of the best fitting line by a statistical method in the next question.

G) From (1) again, if our population values were all on the graph of a logistic function, then the points we have plotted here would all lie on a straight line z = k(M - P) in the (P,z)-plane. That isn't true here, but we can still try to determine the line that fits the data the best. You may have seen a method called linear regression or least-squares curve fitting for doing this in another course. We will do this now, using Maple's least-squares routine. Enter the following command to load the stats package that contains this routine:

with(stats):

Next, to put the data into the form Maple wants, we will need to separate out the P- and z=P'/P-coordinates of the data from dl, as follows:

Plist := [dl[1][1], dl[2][1], dl[3][1], dl[4][1], dl[5][1],dl[6][1],dl[7][1]];
zlist := [dl[1][2], dl[2][2], dl[3][2], dl[4][2], dl[5][2],dl[6][2],dl[7][2]];

Now we're ready to compute the best-fit line. Enter

fit[leastsquare[[P,z]]]([Plist,zlist]);

If all your [, ]'s and (, )'s match, this should generate the equation of a line in the form

z = (intercept) + (slope) P

From the slope and intercept values, determine the best-fit k and M for the logistic model, for this data. (Recall, M is the maximum sustainable population in the logistic equation.)

H) Now comes the ``moment of truth''! Using your k and M values, and the population in 1870, determine a formula for the solution of the logistic equation that should model the U.S. population. Plot your solution curve as a function of time for the period 1870 - 2000. (It will simplify the formulas to take t = 0 as the year 1870.) What U.S. population do you predict for 2000? How close is your prediction to the actual recently-released census figure of 284.1 million?

I) Discuss your results and compare the values of your function and the population data given in table 10.10 on page 535 of our text book. In particular, think about the following questions:

  1. What are some trends that might affect population size that are not included in the logistic model we have been using? Has the U.S. population been affected by any of these over the period 1870 - 2000?
  2. Is a fixed carrying capacity for human populations realistic? Is there a more realistic model?

Assignment

Solutions will be due on the last day of class, Monday April 30. One set of solutions per group. This assignment will count as two of the parts of the lab/discussion grade for the course.