I'm very new to induction proof and need some help to show that for $n ∈ N$ we have the relation between the Fibonacci and Lucas numbers:
$$5F_{n+1} = L_{n+4} − L_n.$$
I know that I should show true for n = 1 and k = n+1. I also know that the Fibonacci numbers are defined recursively, $F_0 = 0, F_1 = 1$, and $F_n = F_{n-1}+F_{n-2}$, for n > 1.
The Lucas numbers are defined recursively,
$L_0 = 2, L1 = 1,$ and $L_n = L_{n-1}+L_{n-2}$,for n >1.
Thanks for any help!
Here's a few steps you can follow:
1. Show that the statement holds for $n=0$.
2. Show that the statement holds for $n=1$.
3. Assume the statement holds for every $n$ from $0$ up to $k$, then show that it must hold for $n=k+1$ as well.
Obviously 1 and 2 are the easy parts. To get you started on 3, we need to prove that $5F_{k+2}=L_{k+5}-L_{k+1}$. Be careful not to assume this is true! (Many people learning induction make the mistake of assuming what they are trying to prove.) Instead, use the following facts: $$F_{n+2} = F_{n+1} + F_n\\ L_{n+2} = L_{n+1} + L_n\\ \textrm{(by definition of Fibonacci and Lucas numbers)}\\ {\ }\\ 5F_{k+1}=L_{k+4}-L_{k}\\ 5F_{k}=L_{k+3}-L_{k-1}\\ \textrm{(by induction hypothesis)}\\$$
So: $$ \begin{align} 5F_{k+2} &= 5(F_{k+1} + F_k)\\ &= \ldots\\ &= L_{k+5} - L_{k+1} \end{align}$$
It remains only to fill in the missing lines.