A question about the fibonacci sequence.
I have a sequence:
$$\lambda_n = \frac{f_{n+1}}{f_n}$$
While $f_n$ is the fibonacci sequence.
I also have the equation: $$ 0 = x^2 - x -1$$ And i know that the two possible values for x are:
$$x= \frac {1\pm \sqrt{5}}{2}$$
(The famous golden ratio)
Let $\alpha$ be the positive solution for the above equation. Let $\beta$ be the negative one.
I want to show that $$\sigma_n = \frac {\lambda_n - \alpha}{\lambda_n - \beta}$$
converges (It does converge against 0 right? Because $\lambda_n$ converges against $\alpha$ But how would i go on proving it?).
I know about Cauchy's convergence criterion, and the definition for limits.. etc. I don't get how to apply them here. For me, the coherence between the fibonacci sequence and the golden ratio is really hard to understand.
P.S: This is an exercise in analysis 1 (computer science), first term. I have seen questions like: Fibonacci and the algebraic expression $x^2-x-1$
But i can't understand these because i haven't ever seen most of the stuff they do there in our lectures.
To prove the convergence, I'll directly compare successive terms of $\lambda_n - \phi$ where $\phi$ is the golden mean (i.e. your $\alpha$). Notice
$$\frac{\lambda_n - \phi}{\lambda_{n-1} - \phi} = \frac{F_{n+1} - \phi F_n}{F_n - \phi F_{n-1}}\frac{F_{n-1}}{F_n} = \frac{(1-\phi)F_n + F_{n-1}}{F_n - \phi F_{n-1}}\frac{F_{n-1}}{F_n}\\ \stackrel{\color{blue}{[1]}}{=} \frac{(1-\phi)F_n - F_{n-1}\phi(1-\phi)}{F_n - \phi F_{n-1}}\frac{F_{n-1}}{F_n} = (1-\phi)\frac{F_{n-1}}{F_n} $$ Since $F_n$ is increasing, $\left|\frac{F_{n-1}}{F_n}\right| \le 1$. Together with $|1 - \phi| = \phi^{-1} < 1$, we get
$$\left|\frac{\lambda_n - \phi}{\lambda_{n-1} - \phi}\right| < \phi^{-1} \quad\stackrel{\color{blue}{[2]}}{\implies}\quad | \lambda_n - \phi | \le \phi^{-(n-1)} |\lambda_1 - \phi| = \phi^{-n} \to 0\;\text{ as }\; n \to \infty $$
As a result, $\lim\limits_{n\to\infty} \lambda_n = \phi$.
Update
As an alternate approach, one can compare the successive terms of $\sigma_n$. Notice
$$\begin{align} \sigma_n &= \frac{\lambda_n - \alpha}{\lambda_n - \beta} = \frac{F_{n+1} - \alpha F_n}{F_{n+1} - \beta F_n}\\ &= \frac{(1-\alpha)F_n + F_{n-1}}{(1-\beta)F_n + F_{n-1}} = \frac{(1-\alpha)F_n - \alpha(1-\alpha)F_{n-1}}{(1-\beta)F_n - \beta(1-\beta)F_{n-1}}\\ &= \frac{1-\alpha}{1-\beta}\frac{\lambda_{n-1}-\alpha}{\lambda_{n-1}-\beta}\\ &= \frac{\beta}{\alpha}\sigma_{n-1} \end{align} $$ Since $\left|\frac{\beta}{\alpha}\right| < 1$, we find
$$\lim_{n\to\infty} \sigma_n \stackrel{\color{blue}{[2]}}{=} \lim_{n\to\infty} \left(\frac{\beta}{\alpha}\right)^{n-1} \sigma_1 = 0 \quad\implies\quad \lim_{n\to\infty} \lambda_n = \lim_{n\to\infty} \frac{\alpha-\beta\sigma_n}{1-\sigma_n} = \frac{\alpha - \beta\cdot 0}{1-0} = \alpha$$
Notes