My question is similar to This but it is a bit more complicated.
Assuming I have a population of a creature that can reproduce by themselves (like bacteria). Each one is about to give birth in a period between 1 to 6 years. After each birth, the recovery time for a second birth is 6 years. Each newborn will be mature and able to give birth by itself every 8 years.
Example: I start with two animals, one is about to give birth in 2 years and the other one will give birth in 5 years, so I can list them like this: (2,5)
After 2 years, one animal will be left with 3 years, and we have a new animal, and since the recovery time is 6 years for the one who gave birth, and the newborn (bold numbered) will take 8 years to give birth by itself, the list becomes:
(6,3,8)
after 3 years we have a newborn animal and one animal resets to 6
(3,6,5,8)
after another 3 years, we have a newborn animal and another one resets to 6
(6,3,2,5,8)
Is there a way to calculate it after N years? this seems to be a very close issue to population growth, first order differential equation, where the order of growth is assumed to be proportionally constant to the Population itself. It also reminds me of Fib sequence, yet I am unable to get to a formula that solves it.
Thanks
– Serilena Dec 19 '22 at 10:09