My textbook provides following task -
Prove combinatorially following statement :
The number of compositions of $n+2$ using integers $\ge2$ is a Fibonacci number
So I had tried first several few numbers :
(1) if $n = 0$, $n+2 =2$ and it only gives $1$ cases such as $\{2\}$
(2) if $n =1$, $n+2 = 3$ and it only gives $1$ cases such as $\{2,1\}$
(3) if $n =2$, $n+2 = 4$ and it gives $2$ cases such as $\{2,2\}$ and $\{4\}$
(4) if $n =3$, $n+2 = 5$ and it gives 2 cases such as $\{5\}$ , $\{3,2\}$
so till now the sequence I got is $1, 1, 2, 2$ which is obviously deviated from Fibonacci Sequence.
Is there anything I missed or the problem set wrong or any modification required to make the problem set complete?