I am trying to prove this equation with an induction proof:
$$\ F(n) = \frac{(1 + \phi)^n - (-\phi)^n}{\sqrt{5}}$$
where $\ \phi = \frac{\sqrt{5} - 1}{2} $
I have started off by proving two base cases: $\ F(1)$ and $\ F(2):$
$$\ F(1) = \frac{(1 + \phi)^1 - (-\phi)^1}{\sqrt{5}} = \frac{(1 + \phi + \phi)}{\sqrt{5}} = \frac{1 + 2\phi}{\sqrt{5}} = \frac{1 + \sqrt{5} - 1}{\sqrt{5}} = \frac{\sqrt{5}}{\sqrt{5}} = 1 $$
$$\ F(2) = \frac{(1 + \phi)^2 - (-\phi)^2}{\sqrt{5}} = \frac{(1 + 2\phi + \phi^2 - \phi^2)}{\sqrt{5}} = \frac{(1 + 2\phi)}{\sqrt{5}} = \frac{(1 + \sqrt{5} - 1)}{\sqrt{5}} = \frac{\sqrt{5}}{\sqrt{5}} = 1$$
However, I do not know how to go about proving the inductive step: $\ F(n + 1) $. Can someone show me how to proceed from here?
Let us assume this true for $<n$
$$\ F(n) = \frac{(1 + \phi)^n - (-\phi)^n}{\sqrt{5}}$$ Note that $$F(n)=F(n-1)+F(n-2)$$ $$F(n)=\frac{(1 + \phi)^{n-1} - (-\phi)^{n-1}}{\sqrt{5}}+\frac{(1 + \phi)^{n-2} - (-\phi)^{n-2}}{\sqrt{5}}$$ $$F(n)=\frac{(1 + \phi)^{n-1} - (-\phi)^{n-1}+{(1 + \phi)^{n-2} - (-\phi)^{n-2}}}{\sqrt{5}}$$ $$=\frac{(1+\phi)^{n-2}(1+\phi+1)-(-\phi)^{n-2}(-\phi+1)}{\sqrt5}$$ $$=\frac{(1+\phi)^{n-2}(1+\phi)^{2}-(-\phi)^{n-2}(-\phi)^2}{\sqrt5}$$ $$=\frac{(1+\phi)^{n}-(-\phi)^{n}}{\sqrt5}$$ Note that ,I used $$1-\phi=(\phi)^2=(-\phi)^2$$ and similarly$$2+\phi=(\phi)^2+2\phi+1=(1+\phi)^2$$