Fibonacci spiral

by Hilaire Fernandes

Email: hilaire@drgeo.eu

Abstract

The Fibonacci spiral is based on the Fibonacci sequence to construct a curve forming a spiral. This spiral and some variants appear in the constructions of live entities. In this article we present a computed, interactive version of this spiral

1. The resulting curve can be interactively deformed by the user while maintaining its internal constraints.

1, with the help of Dr. Geo, an interactive geometry and programming application. Later we discuss on the interest of this approach in mathematics secondary teaching.

1Introduction

Leonardo Fibonacci, Italian merchandiser, book keeper, mathematician from the XIIIe century, is well known for his Fibonacci sequence, whose terms are called Fibonacci numbers. He made far more mathematical contributions than this sole sequence. He introduced in Europe the Arab digits and its positional system to construct our contemporary numbers, he wrote several treaties on mathematics and accounting.

The Fibonacci sequence is defined by two initial terms and a recurrence relation:

f0=1,f1=1,fn+1=fn+fn-1

The first few numbers of the sequence are therefore 1, 1, 2, 3, 5, 8.

The Fibonacci spiral is built by using the terms of the sequence as side lengths of squares and by drawing inside each square an inscribed arc of a circle – part of the spiral – whose center lies at one summit of the square and whose radius equals to the square's side length:

Figure 1. Fibonacci spiral built with the first 6 terms of the sequence.

The construction logic is easy to understand: each square aligns well with its two ancestors according to the recurrence relation. The challenge is how to translate this logic into an iterative process with code in an interactive geometry software. This article presents the steps involved in constructing this programming code.

2The start

As the Fibonacci sequence first defines its two first terms, let's look at the first two squares and arcs:

  1. We set two points A(1 ; 0) and B(-1 ; 0), then build the middle M(0 ; 0).

  2. Let A be a summit of the first square with f1=1 and let M be another summit as well as the center of the arc. The point A is considered as its origin. To construct the arc we just need its extremities E=r(A) with the rotation r(M,-90𝅝). The fourth summit of the square is found by translating point E by the vector MA.

    Figure 2. Construction of the two first spiral arcs

  3. Concerning the second square, with f2=1, M is still the center of the arc inscribed. The point E becomes its origin. The arc extremity B is built with the same rotation r applied to E, B=r(E). The fourth square summit is built by applying the translation vector ME. to point B

Let's summarize these constructions:

Rotation

It builds the extremity of the arc when knowing its origin. Its center is the arc center, the angle -90 degrees.

Translation

It builds the fourth square summit. Its origin is the arc center, its extremity the arc origin.

Transition

The extremity of the first arc becomes the origin of the next one, the center is unchanged.

We translate this description into Dr. Geo code:

|canvas shape alpha a b m s|
canvas := DrGeoCanvas new fullscreen.
alpha := canvas freeValue: -90 degreesToRadians.
shape := [:c :o :f| | e p |
   "c,o,e: center, origin and extremity of the arc"
   e := canvas rotate: o center: c angle: alpha.
   canvas arcCenter: c from: o to: e.
   p := canvas translate: e vector: (canvas vector: c to: o).
   (canvas polygon: { c. o. p. e }) name: f.
   e].
a := canvas point: 1@0.
b := canvas point: -1 @0.
m := canvas middleOf: a and: b.
s := shape value: m value: a value: 1.
shape value: m value: s value: 1.

A few comments:

As the first two terms of the sequence, these two first portions of the spiral are special: same center and radius. In the next section, we adapt this procedure to the remaining part of the spiral.

3Another transformation

The third portion spiral has a radius of 2. It is obvious that a change of scale is needed with a homothety:

  1. In this part of the spiral, f3=2, we need its center and origin: they are the points A and B. Our block of code shape builds its arc and associated square.

  2. The point E returned as an answer by block shape is also the origin of the next arc, f4=3.

  3. The radius of this arc will change from 2 to 3 compared to the previous one, therefore a dilatation of 32. Then its center is h(A) with the homothety h(E,32).

Figure 3. Construction of the spiral parts for f3andf4.

Let's summarize these steps:

Construction

A spiral portion is built knowing its center A and origin B, the method described in the previous section is used.

Next arc

The construction above gives the origin E of the next arc. Its center is determined as the transformation of the previous center A with the homothety of center E and the scale f4f3. Then the construction step is repeated for the next arc and so on.

We translate this description into the recursive block of code fibo:

fibo := [ :f :o :c :k | | e f1 f2 f3|
"f1: term Fn, f2: term Fn+1, 
o & c: origin and center of the arc
e: extremity of the arc/orgin of the next arc"
   f1 := f first.
   f2 := f second.
   f3 := f1 + f2.
   e := shape value: c value: o value: f2. 
   c := canvas scale: c center: e factor: f3 / f2.
   k > 0 ifTrue: [ 
      fibo value: {f2. f3} value: e value: c value: k - 1 ]].

This code deserves a few comments:

The full code – it can be found in the appendix – is quite short. It comes with the two extracts presented previously. This example illustrates the power of programming; with an appropriate API

2. Application Programming interface

2 of geometric methods we can concentrate on solving our problem, then we can write a concise code to describe our construction problem.

The second interest is to be able to construct a lot of objects, sometime thousands. Finally, the computed sketch is interactive: moving the point A deforms the whole spiral.

Figure 4. An interactive deformed spiral

4Conclusion

So why programming interactive sketches with students? Several themes appear:

Secondary II students are mathematically equipped to work out this spiral. The recursivity of the block of code matches the recursivity of the Fibonacci sequence and the construction process of the spiral. The programming part required more knowledge, it can be acquired with simpler construction problem. The Dr. Geo' Smalltalk language and environment were designed over the years for kids, indeed from the '70 when computers had strong magical and attractive dimensions, nevertheless the demultiplicating power of programming remains an aspect of strong interest.

Appendix A

|canvas shape alfa fibo a b m s|
canvas := DrGeoCanvas new fullscreen.
alfa := (canvas freeValue: -90 degreesToRadians) hide.
shape := [:c :o :f| | e p |
   e := (canvas rotate: o center: c angle: alfa) hide.
   (canvas arcCenter: c from: o to: e) large.
   p := canvas translate: e vector: (canvas vector: c to: o) hide.
   (canvas polygon: { c. o. p hide. e }) name: f.
   e].
fibo := [ ].
fibo := [ :f :o :c :k | | e f1 f2 f3|
"f1: term Fn-1, f2: term Fn, o & c: origin and center of spiral arm
e: extremity of the spiral arm"
   f1 := f first.
   f2 := f second.
   f3 := f1 + f2.
   e := shape value: c value: o value: f2. 
   c := (canvas scale: c center: e factor: f3 / f2) hide.
   k > 0 ifTrue: [ 
      fibo value: {f2. f3} value: e value: c value: k - 1 ]].
a := canvas point: 1@0.
b := canvas point: -1 @0.
m := (canvas middleOf: a and: b) hide.
s := shape value: m value: a value: 1.
shape value: m value: s value: 1.
fibo value: {1. 2} value: b value: a value: 10