Proof that every natural number $n\in \mathbb N$, can be written as the sum of different Fibonacci numbers between $F_2,F_3,\ldots,F_k,\ldots$.
For example: $32 = 21 + 8+3 = F_8+F_6+F_4$
Research effort:
The base step it's simple:
Let $k=1$ it can be britten as $k=1=F_2$
For the inductive step I considered:
Let $k = k F_2 =F_2+F_2+\cdots+F_2 = \sum_{i=2}^w a_iF_i, a_i =\{0,1\} $
Then if $k$ suffice I want to see if $k+1$ suffices too... But I'm not realy seeing how to use the inductive hypothesis, so I assume It's wrong.
Any thoughts on which can the inductive step be?
You need to use generalized induction:
If $$ \text{$P_k$ is true for all $k\in \mathbb N$ with $k<n$} \implies P_n $$ then $$ \text{$P_n$ is true for all $n\in \mathbb N$} $$
Then you apply the idea suggested in the other answers. To represent the number $n$ you take the largest $F_i$ such tht $F_i\le n$. Then apply the induction hypothesys on $n-F_i$. The point is to notice that $n - F_i< F_i$ because $F_i < 2 F_{i-1}$.