Other notes about the problem: Keep in mind that a 2 foot step then a 1 foot step is different than a 1 foot step then a 2 foot step.
I have found it easy to think of the bridge as a 1x12 game board using 1x1 blocks and 1x2 blocks. With that, I started with a 1x1 board and found there to be one possibility to fill the board, a 1x1 block. For a 1x2 board there are two possibilities: two 1x1 blocks or one 1x2 block. For a 1x3 board there are 3 possibilities, a 1x4 there are 5 possibilities, for a 1x5 there are 8 possibilities, and so forth. I noticed that this looked like the Fibonacci Sequence, therefore the recursive formula would look like Fn=Fn-1+Fn-2 if F1=1 and F2=2. Then we can find that there will be 233 ways for Andrew to cross the bridge.
Although I understand that the reason behind the recursive formula slightly, our professor wants a proof for how we came to the conclusion and i was unsure how to go about it. Here is what I understand thus far:
Given the 1x1 board and the 1x2 board, we can see that a 1x3 board is like the 1x2 board but with an extra 1x1 block added to the end. The 1x4 board has similar patterns to the 1x3 board, but adds an extra 1x1 block to the end and it is similar to the 1x2 board but adds two 1x1 block and one 1x2 block to the ends.
How does that work into a proof?
You are right that this amounts to a Fibonacci sequence, and to see why, notice this:
Let's say that the number of ways to $P_n$
Now, all possible ways to cross a $n$-foot bridge can be split into two groups: one where the first step is a step of length $1$ foot, and one where the first step is a step of length $2$ feet. In the first case, there are $n-1$ feet left to cross, which by definition can be done in $P_{n-1}$ ways, and in the second case there are $n-2$ feet left to cross, which by definition can be done in $P_{n-2}$ ways
So, we have that:
$$P_n = P_{n-1}+P_{n-2}$$
and there is obviously your connection with the Fibonacci problem!
Now you just have to figure out what $P_1$ and and $P_2$ are, but that's trivial: $P_1=1$, and $P_2=2$
So, if we follow the convention that for the Fibonacci numbers we have that $F_1=F_2=1$, then we see that $P_1=F_2$, $P_2=F_3$, and thus in general that $P_n$=$F_{n+1}$
So, crossing this 12-foot bridge can be done in $P_{12}=F_{13}=233$ ways