Abstract
When is an animal considered endangered? When will it become extinct? What happens when a population has reached the limits of its resources? What happens to a population when a habitat changes? These are some of the questions population biologists try to answer. They use population models, created from math equations, to predict what will happen to a population over time. If you want to see how modeling is done and make some predictions of your own, you certainly won't need a crystal ball—just try this environmental science fair project!Objective
To learn some of the ways in which animal population growth is modeled, and then use the logistic model to determine how a population grows when it is far below, at, or far above its carrying capacity.
Introduction
Animal life is all around you, in beauty and abundance. Tiny microbes thrive on your healthy, normal skin; jellyfish float like lacy parachutes through the seas; red-faced turkey vultures cruise the skies, barely flapping at all as they scavenge for carcasses; and beady-eyed rodents scurry nervously through the fields. Such different-looking creatures, but they all have similar biological characteristics:
![]() |
| Figure 1. There are many types of animals, but they have similar biological characteristics. (Turkey vulture, Callie Bowdish, 2006; Rat, Kristin Kearns, 2009). |
All animals also interact with their external environments, and their ability to grow and increase in numbers is limited by the amount of resources that are available to them. Resources include things they use to survive, things they eat and drink, and their habitat. Natural predators also influence an animal's numbers, or population. If an environment changes, due to human or natural factors, an animal's habitat and numbers of natural predators can be affected, and an animal's population can increase or decrease. An oil spill is a well-known example of how a human factor can impact the environment, affect a habitat, and change the populations of certain species. Another example in North America is the deer population. Many natural predators of deer—like wolves, mountain lions, and coyotes—have smaller populations than they did centuries ago, due to city growth and the resulting loss of predator habitats. Consequently, the deer population has increased.
Biologists sample and model populations to see if animals are present in healthy numbers, and if those numbers will remain healthy in the future. Modeling is a way of using math equations to predict what will happen to a population over time. The first and simplest model was developed in the late 1700's by Thomas Malthus. He noted that with unlimited resources, most populations will grow exponentially.
Equation 1:
| P(t) = | P0ert |
|
For example, if you start with an initial population of 25 individuals, you can see in Figure 2 what will happen to the population in later years, at growth rates of 1 and 2 percent, if the animals have unlimited resources (unlimited habitat, unlimited food, and no predators). You can see from the curves that a 1 percent growth rate results in a doubling of the population about every 70 years. A 2 percent growth rates results in a doubling about every 35 years.
![]() |
| Figure 2. These graphs show how a population will grow, according to the simple exponential model, over a 100-year time span, starting with an initial population of 25, and with growth rates of 1 and 2 percent. |
If you look at even faster growth rates, like 3, 4, and 5 percent, you can see in Figure 3 how quickly the population grows, but the shape of all the curves is the same. These exponential J-curves have been said to hold true over the short term. However, in the real world, resources are generally limited, so over the long term, the Malthus model, which assumes unlimited resources, does not hold true.
![]() |
| Figure 3. These graphs show how a population will grow, according to the simple exponential model (the Malthus model), over a 100-year time span, starting with an initial population of 25, and with growth rates of 3, 4, and 5 percent. Note that as time increases, all the curves begin to take on a "J" shape. |
In the 1800's Pierre-François Verhulst tried to correct the model. He refined Malthus' model to include information about the carrying capacity, which is the size of a population that a habitat can support. The carrying capacity is the level at which the birth rate matches the death rate, resulting in a constant population over time. It is affected by factors such as food, number of predators, and competition for resources. Verhulst's model is given below.
Equation 2:
| P(t) = |
|
|
You can compare Equations 1 and 2 to see the different terms. Verhulst modified the Malthus model to show that if the starting population is well below the carrying capacity, K, the population will initially grow rapidly (like the J-curve), but the growth will slow as the population reaches its carrying capacity. This logistic model produces a population curve with an "S" shape, and so is called an S-curve. The model also predicts a different kind of growth behavior if the starting population is well above the carrying capacity. In this environmental science fair project, you will investigate what happens to a population when it is far below, at, or far above the carrying capacity of its habitat.
Terms, Concepts and Questions to Start Background Research
Bibliography
This source describes the characteristics of all animals:
This source describes what makes populations grow and regulate themselves:
This source describes the simple, exponential (Malthus) model:
This source describes the logistic model:
This source discusses many types of population models:
This source describes difference equations:
This source discusses carrying capacity:
This source defines the human population growth rates of different countries:
This source shows you how population growth models can be used to predict the populations of elephants in Kruger National Park:
Materials and Equipment
Note: A programming tool, like a programmable calculator or a computer, will make the calculations in this experiment faster, but it is possible to do the experimental procedure with a simple calculator, or even pen and paper.
Experimental Procedure
Important Notes Before You Begin:To experiment with the logistic model on a programmable calculator, computer, or in a table, you need to first convert the model into a difference equation. Equation 2, in the Introduction, is the solution to a first-order differential equation, and when that differential equation is converted to a difference equation, you get:
Equation 3:
| Population[time+1] = | Population[time] + GrowthRate × ( | 1 - Population[time] CarryingCapacity |
) × Population[time] |
|
This difference equation is a good approximation to what is going on in the differential equation, and is in a form that can be readily implemented on a programmable tool, like a computer or calculator.
You can implement Equation 3 with a programmable tool or in a table.
If you choose to use a programmable tool, a sample program of how to implement Equation 3 in software, like MATLAB, is given below. Notice that variables—like the growth rate, carrying capacity, initial population, population array, fraction of the carrying capacity array, and number of years to be evaluated—are defined and given initial (starting) values. Note: For your science fair project, you will experiment with changes to the initial values for the growth rate, carrying capacity, initial population, and number of years to be evaluated.
Following the initialization of the variables, a for loop is used to pass, in yearly steps, through time. Finally, results are plotted.
clear
growthrate=0.15;
carryingcapacity=400;
initialpop=30;
population(1)=initialpop;
numberofyears=50;
for time=1:numberofyears,
fractioncc(time)=population(time)/carryingcapacity;
population(time+1)=population(time)+growthrate*(1-fractioncc(time))*population(time);
end
fractioncc(time+1)=population(time+1)/carryingcapacity;
figure
plot(0:numberofyears,fractioncc)
figure
plot(0:numberofyears,population)
If you choose to use a table and pen and paper, create a table, so that you can see what the value of each of the variables will be with each time step. You will step through the table, just as the computer steps, in yearly increments, through the "for loop."
After implementing Equation 3 on a programmable tool, or in a table, you are ready to begin evaluating Equation 3 and testing the logistic population model.
| Animal | Carrying capacity | Growth rate |
| Gray wolf | 300–500 (Wisconsin) | 21% |
| Moose | 840 (Quebec boreal forest) | 25% |
| Woodland caribou | 200 (Quebec boreal forest) | 24.5% |
| Elephant | 7,500 (Kruger National Park) | 15% |
Variations
Credits
Kristin Strong, Science Buddies
MATLAB® is a registered trademark of The MathWorks.
Last edit date: 2009-04-10 10:28:00
If you like this project, you might enjoy exploring careers in Environmental Science.
![]() |
Natural Sciences Manager Some of the biggest questions in science—like how to cure cancers or how to control global warming—require large teams of scientists to answer. Natural sciences managers work to coordinate and direct the research of these teams to ensure collaboration among the scientists and effective use of equipment and resources. |
![]() |
Environmental Compliance Inspector Our environment on planet Earth is made up of the air, water, and land. Environmental compliance inspectors work to protect and preserve our environment and the public by making sure communities, individuals, businesses, and state and local governments are in compliance with pollution laws and regulations. | |
![]() |
Soil and Water Conservationist Soil and water are two of Earth's most important natural resources. Earth would not be able to sustain life without nutritive soil to grow food and clean water to drink. Soil and water conservationists foster the science and art of natural resource conservation. The scientists work to discover, develop, implement, and constantly improve ways to use land that sustains its productive capacity, and enhances the environment at the same time. Soil and water conservationists are involved in improving conservation policy by bringing science and professional judgment to bear in shaping local, state, and federal policy. |
![]() |
Park Ranger Park rangers are the law enforcement officials of our state and national parks. They protect and preserve parklands, keeping park resources safe from people who might try to damage them, deliberately or through neglect, and keeping people safe from dangers within the park. To achieve this goal, park rangers work in a wide variety of positions, including education and interpretation for park visitors, emergency dispatch, firefighting, maintenance, law enforcement, search and rescue, and administration. There is a large global shortage of park rangers in developing countries. | |
![]() |
Industrial Safety and Health Engineer Think of all the jobs in the world that involve machinery, chemicals, toxins, radiation, loud noise, or travel to places above or below Earth’s surface—all of these jobs carry an element of risk to the workers. Industrial health and safety engineers work to minimize this risk. They inspect work sites and help workers and companies understand and comply with safety laws. They use their knowledge of mechanical processes, chemistry, and human psychology and performance to anticipate hazardous conditions. Protecting workers requires excellent communication skills and a strong sense of responsibility. | |||
|
Join Science Buddies
Become a Science Buddies member! It's free! As a member you will be the first to receive our new and innovative project ideas, news about upcoming science competitions, science fair tips, and information on other science related initiatives. |