Revision as of 16:47, 28 November 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:

Fn = Fn-1 + Fn-2 ,

that is to say that the nth term is the sum of the previous two terms of the sequence. 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 - φ $ </center>






Back to Walther MA279 Fall2018 topic1

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett