Headshot of Rupert

Rupert McKay

How Phi and Fibonacci are connected.

Posted: 09 Jul 2023

Definition: Fibonacci Sequence

The Fibonacci Sequence is a sequence starting, 0, 1, 1, 2, 3, 5, 8, 13..., and each subsequent number is the sum of the previous two.

We can define the Fibonacci numbers recursively as:

F 0 = 0 F 1 = 1 F n = F n - 1 + F n - 2

Definition: Phi

Phi is the "Golden Ratio". Two quantities a and b are in the golden ratio φ if:

a + b a = a b = φ

Given this definition, we can derive the following additional relationships:

1 + 1 φ = φ φ 2 = φ + 1

Connecting the two together

The values of the Fibonacci sequence increase in size very quickly. But how fast exactly?

Lets assume it can be approximated by some exponential curve of the form:

F n = x n

Where x is some constant.

If so, then from the recursive definition of the Fibonacci numbers:

F n = x n = F n - 1 + F n - 2 = x n - 1 + x n - 2 x n = x n - 1 + x n - 2

And if we divide through by: x n - 2

Then we get:

x 2 = x + 1

This last relationship is exactly the relationship we identified earlier in the definition of φ. And so we can conclude: x = φ

But wait! We aren't done. This conclusion was predicated on a very shaky assumption "lets assume the Fibonacci sequence can be approximated by some exponential curve".

Despite this assumption we can conclude rigorously that if any consecutive pair of Fibonacci numbers were exactly in the Golden Ratio, then all subsequent pairs would also be.

So we've identified that the Golden Ratio is "stable" with respect to the recursive property of Fibonacci numbers.

But that's not useful if we never happen to hit the Golden Ratio in the course of the Fibonacci pairs.

Lets consider what happens when the current ratio is not φ. Lets model it as having a ratio of φ + δ , for some non-zero δ.

Then the next ratio will be:

1 + φ + δ φ + δ = 1 φ + δ + 1

This last term is similar to 1 + 1 φ = φ but with the added δ term. As such if δ>0, then our first ratio was greater than φ, but our second ratio will be less than φ.

On the other hand if δ<0, then our first ratio was less than φ, but our second ratio will be greater than φ.

From this we can conclude that ratios of Fibonacci pairs will "oscillate" either side of φ. But you may also note that because of the position of the δ term in the denominator the absolute distance from φ reduces from every ratio to the next.

We have therefore concluded two things:

Notice also that these two conclusions did not depend on the starting values chosen for the Fibonacci sequence. They follow solely from the recursive property of the Fibonacci numbers and the definition of φ. As such these conclusions would still hold no matter what starting values are chosen.

Take care,

Rupert