I'm trying to better understand the Fibonacci recurrence. I understand that the closed form solution is: $$F_n=\frac{1}{\sqrt{5}}\bigg[\Big(\frac{1+\sqrt5}{2}\Big)^n-\Big(\frac{1-\sqrt5}{2}\Big)^n\bigg].$$
I read that is can simplified as. $$F_n=\operatorname{round} (\phi^n/\sqrt{5}),$$
where $\phi=(1+\sqrt{5})/2$.
I'm confused as how this simplifies to this.