Generation Calculator 2
Conditions:
- The number of offspring per generation means the total number of offspring in the lifespan of the parents.
(that is, the parents do not survive to the next generation) - Non numeric values are treated as a value of 0 (zero)
- The number of generations must be a whole number. Offspring can be decimal
- The starting point is always 2 individuals at generation 0 (you must have a least two parents to have offspring)
- The calculation is: total = round( (previous/2) x # per generation )
- The starting point is always 1 individual at generation 0 (you must have a least one parent to have offspring)
- The calculation is: total = round( previous x # per generation )