Introduction to the Predator Prey ProblemThe predator problem is a simulation that attempts to predict the relationship in populations between a population of foxes and rabbits isolated on an island.
PRn = PR(n-1) + BR *PR(n-1)
where :
(Under these conditions the rabbit population would continually increase.)
PFn = PF(n-1)- DF*PF(n-1)
where:
(Under these conditions the fox population only will decrease.)
The population of Rabbits is the same as above with a loss of population due to foxes :
PRn = PR(n-1)+ BR *PR(n-1) - A* PR(n-1)* PF(n-1)
where :
The population of foxes is increased with the addition of the interaction term :
PFn = PF(n-1) - DF *PF(n-1) + A* PF(n-1)* PR(n-1)
(Now the population of rabbits is decreased by the foxes with the greater number of foxes causing a greater decrease in the rabbit population. This means that the rabbit population is eventually going to decrease and the resulting fox population will also decease. As a result a cyclic increase and decrease in populations are set up. This is what is observed in the simulation.)
This page is Copyright 1999 by J. Barry DeRoos. All Rights Reserved.
This page may be distributed and used freely, provided that the
copyright notices remain intact.
Last Modified: Jan 9,2002.