In this variation on Fibonacci rabbits the growth of mature rabbits in a period has to be less than 10%.
- After one period the rabbits are called "young rabbits", after two periods the rabbits will be mature rabbits.
- Each pair of mature rabbits will give birth to a pair of newborn rabbits.
- Only 80% of the rabbits survive at birth.
- After the mature rabbits gave birth, hunters have to kill $p \cdot 100$% of the rabbits such that the growth of mature rabbits in a period is less than 10%.
What must the value $p$ at least be to meet this criterium? Can I solve this using a recurrence relation just like in the normal version of Fibonacci's rabbits?
Let $x_n$ be the number of mature rabbits at time $n$.
Let $y_n$ be the number of young rabbits at time $n$.
Let $z_n$ be the number of newborn rabbits at time $n$.
The number of newborn rabbits is equal to the number of mature rabbits, so $z_{n}=x_n$
80% of newborn rabbits survive to become young rabbits. This is equivalent to $y_{n+1}=0.8z_n$
With no intervention from hunters, all young rabbits would become mature rabbits and all mature rabbits would stay alive as mature rabbits. This is equivalent to $x_{n+1}=x_n+y_n$
Killing a proportion of the mature rabbits means that $x_{n+1}=(1-p)x_n+y_n$
We could create a recurrence relationship using the above, but we are told that the hunters kill enough rabbits so that in fact $x_{n+1}=1.1x_n$
This has the straightforward solution $x_n=(1.1)^nx_0$
To find out how many need to be killed to achieve this rate of growth, let's look again at the earlier equations.
$z_{n}=x_n \Rightarrow z_{n}=(1.1)^nx_0 $
$y_{n+1}=0.8z_n \Rightarrow y_{n+1}=0.8 \times (1.1)^{n}x_0 \Rightarrow y_{n}=0.8 \times (1.1)^{n-1}x_0$
Since we have both $x_{n+1}=(1-p)x_n+y_n$ and $x_{n+1}=1.1x_n$,
$1.1x_n=(1-p)x_n+y_n \Rightarrow 1.1(1.1)^nx_0=(1-p)(1.1)^nx_0+0.8 \times (1.1)^{n-1}x_0$
$(1.1)^{n+1}x_0=(1-p)(1.1)^nx_0+0.8 \times (1.1)^{n-1}x_0$
$(1.1)^{n+2}x_0=(1-p)(1.1)^{n+1}x_0+0.8 \times (1.1)^{n}x_0$
$(1.1)^2=(1-p)(1.1)+0.8$
$1.21=1.1-1.1p+0.8$
$1.1p=0.69$
$p=0.627$
So you need to kill about 63% of the mature rabbits.