the fibonacci spiral is created from the fibonacci sequence. the fibonacci sequence is a...

10
Fibonacci Spiral Richard Kwong MAT 385

Upload: ronald-ramsey

Post on 24-Dec-2015

217 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Fibonacci SpiralRichard Kwong

MAT 385

Page 2: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is obtained by adding together the last 2 digits that came before it.

The sequence goes as follows: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233..

What is the Fibonacci Spiral?

Page 3: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

The Fibonacci series is present all around us in many different forms such as flower patterns and shells. One of the best representations is in the sunflower. The pattern of seeds within a sunflower follows the Fibonacci sequence.

Fibonacci Sequence in Nature

Page 4: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Another well known representation of the Fibonacci sequence is found in pinecones. In In the picture, there are 8 spirals bending to the left as they open out indicated in red. Likewise there are 13 spirals opening to the right indicated by blue traces. 8 and 13 are consecutive Fibonacci numbers.

Fibonacci Sequence in Nature cont.

Page 5: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Fibonacci Spiral ImplementationWritten In Java

Created with Eclipse

Page 6: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Step 1

Begin by drawing a square inside the Rectangle. The length of each side is equal to the height of the frame.

Page 7: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Step 2

Draw an arc within the square you just drew with a radius that is equal to the height of the frame.

Page 8: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Step 3

Draw next square with sides that are equal to the smallest length of the rectangle on the right. The arc is then drawn into the square as well.

Page 9: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Step 4

Continue iteration..

Page 10: The Fibonacci Spiral is created from the Fibonacci Sequence. The Fibonacci sequence is a mathematical succession of numbers in which each number is

Step 5

The Fibonacci Spiral is now finished being drawn.