We know:
$F_0 = 0$
$F_1 = 1$
$F_i = F_{i-1} + F_{i-2}$ for $i \geq 2$
Prove by induction:
$F_i = \dfrac{\phi^i-{\phi^{*}}^i}{\sqrt{5}}$
where $\phi = (1+\sqrt{5}) / 2$ and $\phi = (1-\sqrt{5}) / 2$.
My attempt:
Base case: $i = 0$: $F_0 = 0$ (easy to show)
Assume true for $i = k$ and $i = k + 1$.
We have:
$F_k = \dfrac{\phi^k-{\phi^{*}}^k}{\sqrt{5}}$
and
$F_{k+1} = \dfrac{\phi^{k+1}-{\phi^{*}}^{k+1}}{\sqrt{5}}$
Show it holds for $i = k + 2$ to complete induction. This is where I'm stuck. I have tried:
$F_{k+2} = F_{k+1} + F_{k} = \dfrac{\phi^{k+1}-{\phi^{*}}^{k+1}}{\sqrt{5}} + \dfrac{\phi^k-{\phi^{*}}^k}{\sqrt{5}}$
$F_{k+2} = \dfrac{\phi^k(1+\phi)-{\phi^{*}}^{k}(1+{\phi^*})}{\sqrt{5}}$
but I'm not sure where to go from here. Any help would be appreciated.