Given the following proof:
Let $F_n$ be the $n$-th Fibonacci number. Prove or disprove: $5 | F_{5k}$ for all positive integers $k$.
I am confused exactly where to start. The Fibonacci numbers are defined recursively correct? So wouldn't this be something that I can prove with strong induction?
Well, $F_5=5$ and $5\mid5$, right?!
Now, suppose that $5\mid F_{5k}$. Then\begin{align}F_{5(k+1)}&=F_{5k+5}\\&=F_{5k+4}+F_{5k+3}\\&=F_{5k+3}+F_{5k+2}+F_{5k+2}+F_{5k+1}\\&=F_{5k+3}+2F_{5k+2}+F_{5k+1}\\&=F_{5k+2}+F_{5k+1}+2F_{5k+1}+2F_{5k}+F_{5k+1}\\&=3F_{5k}+5F_{5k+1}.\end{align}Since $5\mid F_{5k}$, it follows from this that $5\mid F_{5(k+1)}$.