Prove the following combinatorially:
$$F_{n} = \sum_{i=0}^{\left\lfloor n/2 \right\rfloor}\binom{n-i}{i}$$
So, I know that the Fibonacci number counts the number of ways to cover a $1 \times n$ rectangle with checkers (covering a single square) and dominoes (covering two squares). I believe that will come up somewhere in the explanation, but I am having difficulty seeing how to show that the RHS counts the same as the Fibonacci number.
EDIT: I think I have got it figured out. If we say that the LHS is the way to cover a nx1 rectangle with checkers and dominoes, then the floor of n/2 is the max amount of dominoes you could have. In this case, i represents the number of dominoes in that particular solution, hence why you have n-i positions. Then you figure out how many unique solutions there are when you have i dominoes, adding up all the solutions with the different number of dominoes.