Revision as of 22:48, 2 December 2018 by Segloff (Talk | contribs)

Introduction

The Fibonacci sequence is one of the more widely known integer sequences used in mathematics. An integer sequence is simply an ordered list of integers (0, ±1, ±2, …). The Fibonacci sequence is typically constructed recursively; the nth term of the sequence can be determined by the previous terms. Beginning with 0 and 1, the Fibonacci sequence is given by:

$ F_n = F_{n-1} + F_{n-2} $,

that is to say that the nth term is the sum of the previous two terms of the sequence (3). The first several Fibonacci numbers are then:

0,1,1,2,3,5,8,13,21,34,55,89,144,233,377, ...

At first glance, the Fibonacci sequence seems relatively benign. However, it is related to many phenomena observed in nature, due to how the sequence can be represented graphically. Consider the rectangle in Figure 1. It has been constructed by combining squares with side lengths equal to the Fibonacci numbers in a cyclical manner. A spiral can be created by drawing a portion of a circle within each square. The result is the Fibonacci spiral, which appears in many plant structures. Specifically, the Fibonacci sequence is prominent in the phyllotaxis, or leaf arrangement, of plants.

Screen-Shot-2017-03-24-at-14.39.02.png
Figure 1: Creation of the Fibonacci Spiral

The Fibonacci sequence cannot be discussed independently of the golden ratio. The golden ratio, denoted by φ, is equal to:

$ φ = \frac{1 + \sqrt{5}}{2} \approx 1.618 ... $

The value of the golden ratio can be found using a variety of method. For example, consider the golden rectangle seen below.

golden-rectangle.png
Figure 2: The Golden Rectangle

A golden rectangle is constructed by taking a square of side length a, and extending it a length b so that the following is true:

$ \frac{a}{b} = \frac{a + b}{a} $


The golden ratio is the value $ \frac{a}{b} $ that solves this equation. If we substitute $ x = \frac{a}{b} $, we can see that only a simple quadratic equation must be solved:

$ x = 1 + \frac{1}{x} \qquad \rightarrow \qquad x^2 - x - 1 = 0 $

Which has solutions:

$ x = \frac{1 + \sqrt{5}}{2}, \frac{1 - \sqrt{5}}{2} = φ, 1 - φ $

The first solution (which is positive) is defined as the golden ratio. The golden ratio is strongly related to the Fibonacci sequence, as the ratio between consecutive terms of the Fibonacci sequence approaches . Consider the ratio between Fn and Fn-1, and between Fn-1 and Fn-2. Since the sequence approaches a fixed ratio, as $ n \rightarrow \infty $, we have:

$ \frac{F_{n}}{F_{n-1}} = \frac{F_{n-1}}{F_{n-2}} $

Using the recursive relationship that defines the Fibonacci series, we can rewrite the above equation as:

$ \frac{F_{n-1} + F_{n-2}}{F_{n-2}} = \frac{F_{n-1}}{F_{n-2}} $

Substituting $ x = \frac{F_{n-1}}{F_{n-2}} $, we obtain the same equation as for the golden rectangle:

$ x = 1 + \frac{1}{x} $

In fact, the golden ratio can be used to provide an explicit equation for the nth Fibonacci number:

$ F_n = \frac{1}{\sqrt{5}}[φ^n - (1 - φ)^n] $

This is known as Binet’s formula. The derivation of Binet’s formula involves some clever math involving infinite series. We wish to find a formula $ F(x) $ that yields the $ x^{th} $ Fibonacci number. To begin, we represent $ F(x) $ as a power series with coefficients equal to the $ n^{th} $ Fibonacci number:

$ F(x) = 0 \cdot x^0 + 1 \cdot x^1 + 1 \cdot x^2 + 2 \cdot x^3 + 5 \cdot x^4 + … + F_n \cdot x^n + … = \Sigma_{n=0}^{\infty} F_n x^n = 0 + x + \Sigma_{n=2}^{\infty} F_n x^n $

Next, we take the recursive relationship that defines the Fibonacci sequence and substitute for $ F_n $:

$ F(x) = x + \Sigma_{n=2}^{\infty} (F_{n-1} + F_{n-2}) x^n = x + \Sigma_{n=2}^{\infty} F_{n-1} x^n + \Sigma_{n=2}^{\infty} F_{n-2} x^n $

This expansion makes it clear why the first two terms of the sequence had to be removed from the infinite sum: otherwise $ F_{n-2} $ and $ F_{n-1} $ would not be defined, as $ n $ would be negative. Consider the first sum containing $ F_{n-1} $. It can be rewritten in terms of the original function $ F(x) $ by factoring out x:

$ \Sigma_{n=2}^{\infty} F_{n-1} x^n = x \Sigma_{n=2}^{\infty} F_{n-1} x^{n-1} =x [0 + \Sigma_{n=2}^{\infty} F_{n-1} x^{n-1}] = x F(x) $



and can be explored in more depth here (10).

The following pages explore how these mathematical concepts relate to phyllotaxis, and in what ways the Fibonacci sequence and golden ratio can be found in other aspects of plant formation.



Back to Home

Alumni Liaison

BSEE 2004, current Ph.D. student researching signal and image processing.

Landis Huffman