Fibonacci Sequence
Fibonacci Sequence
The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ... The next number is found by adding up the two numbers before it.
The 2 is found by adding the two numbers before it (1+1) Similarly, the 3 is found by adding the two numbers before it (1+2), And the 5 is (2+3), and so on!
Example: the next number in the sequence above would be 21+34 = 55 It is that simple! Here is a longer list: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, ... Can you figure out the next few numbers?
Makes A Spiral
When you make squares with those widths, you get a nice spiral:
Do you see how the squares fit neatly together? For example 5 and 8 make 13, 8 and 13 make 21, and so on.
The Rule
The Fibonacci Sequence can be written as a "Rule" (see Sequences and Series). First, the terms are numbered from 0 onwards like this: n= xn = 0 0 1 1 2 1 3 2 4 3 5 5 6 8 7 13 8 21 9 34 10 55 11 12 13 14 ... 89 144 233 377 ...
Example: the 8th term is the 7th term plus the 6th term:
x8 = x7 + x6
xn is term number "n" xn-1 is the previous term (n-1) xn-2 is the term before that (n-2)
Golden Ratio
And here is a surprise. If you take any two successive (one after the other) Fibonacci Numbers, their ratio is very close to the Golden Ratio "" which is approximately 1.618034... In fact, the bigger the pair of Fibonacci Numbers, the closer the approximation. Let us try a few: A 2 3 5 8 ... 144 233 ... B 3 5 8 13 ... 233 377 ... B/A 1.5 1.666666666... 1.6 1.625 ... 1.618055556... 1.618025751... ...
Note: this also works if you pick two random whole numbers to begin the sequence, such as 192 and 16 (you would get the sequence 192, 16, 208, 224, 432, 656, 1088, 1744, 2832, 4576, 7408, 11984, 19392, 31376, ...): A B 192 16 16 208 208 224 224 432 ... ... 7408 11984 11984 19392 ... ... B/A 0.08333333... 13 1.07692308... 1.92857143... ... 1.61771058... 1.61815754... ...
It takes longer to get good values, but it shows you that it is not just the Fibonacci Sequence that can do this!
And even more surprising is that we can calculate any Fibonacci Number using the Golden Ratio:
The answer always comes out as a whole number, exactly equal to the addition of the previous two terms. Example:
When I used a calculator on this (only entering the Golden Ratio to 6 decimal places) I got the answer 8.00000033. A more accurate calculation would be closer to 8. Try it for yourself!
A Pattern
Here is the Fibonacci sequence again: n= xn = 0 0 1 1 2 1 3 2 4 3 5 5 6 8 7 8 9 10 11 12 13 14 15 ... 13 21 34 55 89 144 233 377 610 ...
Look at the number x3 = 2. Every 3rd number is a multiple of 2 (2, 8, 34, 144, 610, ...) Look at the number x4 = 3. Every 4th number is a multiple of 3 (3, 21, 144, ...) Look at the number x5 = 5. Every 5th number is a multiple of 5 (5, 55, 610, ...)
(Prove to yourself that adding the previous two terms together still works!) In fact the sequence below zero has the same numbers as the sequence above zero, except they follow a +-+- ... pattern. It can be written like this:
xn = (1)n+1 xn Which says that term "-n" is equal to (1)n+1 times term "n", and the value (1)n+1 neatly makes the correct 1,-1,1,-1,... pattern.
History
Fibonacci was not the first to know about the sequence, it was known in India hundreds of years before!