Assignment 12


For this assignment, I chose to write up problem number nine:

4. Generate a Fibonnaci sequence in the first column using f(0) = 1, f(1) = 1, f(n) = f(n-1) + f(n-2).

a. Construct the ratio of each pair of adjacent terms in the Fibonnaci sequence. What happens as n increases? What about the ratio of every second term? etc.

b. Explore sequences where f(0) and f(1) are some arbitrary integers other than 1. If f(0)=1 and f(1) = 3, then your sequence is a Lucas Sequence. All such sequences, however, have the same limit of the ratio of successive terms.


I constructed the table to the left using Microsoft Excel. Column A shows the first 22 fibonacci numbers, while in column B, row n shows the ratio (n+1)/n. These ratios seem to be converging towards a number near 1.61903399.

You might recall that the golden ratio Phi = = also happens to be very near 1.61903399. In fact, the sequence displayed in column B does converge to Phi. A geometric interpretation of this convergence follows.


Note that .
Why would I rewrite the golden ratio in such a silly way? Because it leads us to a different way of thinking about Phi. This representation of Phi should remind you of the the quadratic formula, specifically when a = 1, b = -1, and c = -1. It therefore tells us that Phi is one solution to the equation

,
and being even sillier, we can rewrite this as
.
which could be rewritten as
,
so long as x is not 0, which we won't let happen in our interpretation:

Since Phi is a solution to this equation, we get that , which means that if we have a rectangle with , then from our equation above, we find that .


Therefore, if we have a golden rectangle (a rectangle in which the ratio of the length to the width is the golden ratio), .

 

In the picture above all angles are right angles, all red segments have the same length, and all blue segments have the same length. Rectangle ABCD is a golden rectangle, and by the equation above, so is rectangle ABEF!

Since ABEF is a golden rectangle we can continue the process indefinitely::

...

This GSP file contains a script tool that constructs this spiral of golden rectangles. To increase or decrease the number of rectangles, press '+' or '-' immediately after using the tool.

If we repeat this construction starting with a square of length 1, rather than a golden rectangle, we get a spiral of squares with lengths equal to the fibonacci numbers:

As we spiral out from the unit square, observe what happens to the length/width ratio of the rectangles formed by each new square:
Rectangle
length/width ratio
unit square
1/1 = 1
ABCD
2/1 = 2
EBFD
3/2 = 1.5
EBGH
5/3 = 1.6666...
EGIJ
8/5 = 1.625
GIKL
13/8 = 1.61538...

As displayed in our excel sheet, this ratio approaches Phi. This means that as the rectangles spiral outward, they become very close to golden rectangles.


What happens if we look at the ratio of every second term, every third, every fourth, and so on? The following table displays these numbers and shows that all of these ratios seem to converge. The entries in table C, the ratios of every second term, seem to converge to Phi-squared. The entries in table D, the ratios of every third term, seem to converge to Phi-cubed. In general, it appears that the ratios of every nth term converge to Phi to the (n-1)th power.


If we make similar tables with f(0) and f(1) not both equal to one, we see that the sequence of successive ratios still seems to converge to Phi. Amazing, isn't it?


Home