We define the $n^{th}$ Fibonacci number as $a_1 = a_2 = 1$ and $a_n = a_{n-1} + a_{n-2}$ for $n \geq 3$. Consider
$$ \lim_{n \to \infty} \frac{a_{n+1}}{a_n}. $$
I wrote a script and found that this limit converges to the golden ratio $\phi \approx 1.61803$. However, I'm having trouble giving a rigorous proof for this. Here's what I have so far:
$$ \lim_{n \to \infty} \frac{a_{n+1}}{a_n} = \lim_{n \to \infty} \frac{a_n + a_{n-1}}{a_n} = \lim_{n \to \infty} \left( 1 + \frac{a_{n-1}}{a_n} \right). $$
I'm unsure of how to proceed after this. I know that expressing the limit as a certain continued fraction would imply that it converges to $\phi$ but I'm unsure of how to get there. Any ideas?