Name: Anonymous 2022-02-25 21:46
Proof that fib(n+1)/fib(n) goes to phi (the golden ratio) as n gets large
The golden ratio is defined by AB/AC = AC/BC. Let AB=phi and AC=1. Then we get phi=1/(AB-AC) = 1/(phi-1), phi(phi-1)=1, phiˆ2-phi-1=0. One solution to this quadratic equation is the golden ratio, phi, while the other, called phi', is negative and doesn't interest us.
fib(n+1)/fib(n) = (fib(n)+fib(n-1))/fib(n) = 1 + fib(n-1)/fib(n) = 1 + 1/(fib(n)/fib(n-1))
As n gets very large, fib(n+1)/fib(n) and fib(n)/fib(n-1) become indistinguishable, so let's call those two by x.
x = 1 + 1/x, xˆ2 = x + 1, xˆ2 - x - 1 = 0.
As you can see, it is the same quadratic equation as the one mentioned before. Since fib only gives positive numbers, the ratio between two fibs which is x must be a positive number, which excludes the negative solution to that equation. So the solution must be phi (the golden ratio).
Therefore, fibonacci goes to phi.
The golden ratio is defined by AB/AC = AC/BC. Let AB=phi and AC=1. Then we get phi=1/(AB-AC) = 1/(phi-1), phi(phi-1)=1, phiˆ2-phi-1=0. One solution to this quadratic equation is the golden ratio, phi, while the other, called phi', is negative and doesn't interest us.
fib(n+1)/fib(n) = (fib(n)+fib(n-1))/fib(n) = 1 + fib(n-1)/fib(n) = 1 + 1/(fib(n)/fib(n-1))
As n gets very large, fib(n+1)/fib(n) and fib(n)/fib(n-1) become indistinguishable, so let's call those two by x.
x = 1 + 1/x, xˆ2 = x + 1, xˆ2 - x - 1 = 0.
As you can see, it is the same quadratic equation as the one mentioned before. Since fib only gives positive numbers, the ratio between two fibs which is x must be a positive number, which excludes the negative solution to that equation. So the solution must be phi (the golden ratio).
Therefore, fibonacci goes to phi.