I'm trying to do a proof on fibonacci numbers by induction, and I have an answer but I'm not sure its acceptable.
I'm trying to prove $F_n < 2^n$
My base case at 1 is $F_1 = 1; 2^1 = 2$ therefore checks out
My inductive hypothesis: $F_k < 2^k; 1 \le k \le n$
And inductive step: $F_{k+1} < 2^{k+1}$
I know $F_k = F_{k-1} + F_{k-2}$, so I substitute that into my I.S.
$F_k + F_{k-1} < 2^{k+1}$
We know the L.H.S is less than or equal to $2F_k$, and $2^{k+1} = 2^k 2$
we can conclude that $F_k + F_{k-1} < 2^{k+1}$ from the above statement. This is because the above statement is true, and it is shown the L.H.S is less than that of our statement