Fine Art

Zeckendorf's theorem, named after Belgian mathematician Edouard Zeckendorf, is a theorem about the representation of integers as sums of Fibonacci numbers.

Zeckendorf's theorem states that every positive integer can be represented uniquely as the sum of one or more distinct Fibonacci numbers in such a way that the sum does not include any two consecutive Fibonacci numbers. More precisely, if N is any positive integer, there exist positive integers ci ≥ 2, with ci + 1 > ci + 1, such that

\( N = \sum_{i = 0}^k F_{c_i}, \)

where Fn is the nth Fibonacci number. Such a sum is called the Zeckendorf representation of N. The Fibonacci coding of N can be derived from its Zeckendorf representation.

For example, the Zeckendorf representation of 100 is

100 = 89 + 8 + 3.

There are other ways of representing 100 as the sum of Fibonacci numbers – for example

100 = 89 + 8 + 2 + 1
100 = 55 + 34 + 8 + 3

but these are not Zeckendorf representations because 1 and 2 are consecutive Fibonacci numbers, as are 34 and 55.

For any given positive integer, a representation that satisfies the conditions of Zeckendorf's theorem can be found by using a greedy algorithm, choosing the largest possible Fibonacci number at each stage.

istory

While the theorem is named after the eponymous author who published his paper in 1972, the same result had been published 20 years earlier by Lekkerkerker.[1] As such, the theorem is an example of Stigler's Law of Eponymy.

Proof

Zeckendorf's theorem has two parts:

  1. Existence: every positive integer n has a Zeckendorf representation.
  2. Uniqueness: no positive integer n has two different Zeckendorf representations.

The first part of Zeckendorf's theorem (existence) can be proven by induction. For n = 1, 2, 3 it is clearly true (as these are Fibonacci numbers), for n = 4 we have 4 = 3 + 1. Now suppose each nk has a Zeckendorf representation. If k + 1 is a Fibonacci number then we're done, else there exists j such that Fj < k + 1 < Fj + 1 . Now consider a = k + 1 − Fj . Since ak, a has a Zeckendorf representation (by the induction hypothesis). At the same time, Fj + a < Fj + 1 and since Fj + 1 = Fj + Fj − 1 (by definition of Fibonacci numbers), a < Fj − 1, so the Zeckendorf representation of a does not contain Fj − 1 . As a result, k + 1 can be represented as the sum of Fj and the Zeckendorf representation of a.

The second part of Zeckendorf's theorem (uniqueness) requires the following lemma:

Lemma: The sum of any non-empty set of distinct, non-consecutive Fibonacci numbers whose largest member is Fj is strictly less than the next largest Fibonacci number Fj + 1 .

The lemma can be proven by induction on j.

Now take two non-empty sets of distinct non-consecutive Fibonacci numbers S and T which have the same sum. Consider sets S and T which are equal to S and T from which the common elements have been removed (i.e. S = S\T and T = T\S). Since S and T had equal sum, and we have removed exactly the elements from S \( \cap \) T from both sets, S and T must have the same sum as well.

Now we will show by contradiction that at least one of S and T is empty. Assume the contrary, i.e. that S and T are both non-empty and let the largest member of S be Fs and the largest member of T be Ft. Because S and T contain no common elements, FsFt. Without loss of generality, suppose Fs < Ft. Then by the lemma, the sum of S is strictly less than Fs + 1 and so is strictly less than Ft, whereas the sum of T is clearly at least Ft. This contradicts the fact that S and T have the same sum, and we can conclude that either S or T must be empty.

Now assume (again without loss of generality) that S is empty. Then S has sum 0, and so must T. But since T can only contain positive integers, it must be empty too. To conclude: S = T = ∅ which implies S = T, proving that each Zeckendorf representation is unique.


Fibonacci multiplication

One can define the following operation a\circ b on natural numbers a, b: given the Zeckendorf representations \( a=\sum_{i=0}^kF_{c_i}\;(c_i\ge2) and b=\sum_{j=0}^lF_{d_j}\;(d_j\ge2) \) we define the Fibonacci product \( a\circ b=\sum_{i=0}^k\sum_{j=0}^lF_{c_i+d_j} \).

For example, the Zeckendorf representation of 2 is F_3, and the Zeckendorf representation of 4 is \( F_4 + F_2 \) (\( F_1 \) is disallowed from representations), so \( 2 \circ 4 = F_{3+4} + F_{3+2} = 13 + 5 = 18. \)

A simple rearrangement of sums shows that this is a commutative operation; however, Donald Knuth proved the surprising fact that this operation is also associative.


Representation with negafibonacci numbers

The Fibonacci sequence can be extended to negative index n using the re-arranged recurrence relation

\( F_{n-2} = F_n - F_{n-1}, \, \)

which yields the sequence of "negafibonacci" numbers satisfying

\( F_{-n} = (-1)^{n+1} F_n. \, \)

Any integer can be uniquely represented[2] as a sum of negafibonacci numbers in which no two consecutive negafibonacci numbers are used. For example:

−11 = F−4 + F−6 = (−3) + (−8)
12 = F−2 + F−7 = (−1) + 13
24 = F−1 + F−4 + F−6 + F−9 = 1 + (−3) + (−8) + 34
−43 = F−2 + F−7 + F−10 = (−1) + 13 + (−55)
0 is represented by the empty sum.This gives a system of coding integers, similar to the representation of Zeckendorf's theorem. In the string representing the integer x, the nth digit is 1 if Fn appears in the sum that represents x; that digit is 0 otherwise. For example, 24 may be represented by the string 100101001, which has the digit 1 in places 9, 6, 4, and 1, because 24 = F−1 + F−4 + F−6 + F−9 . The integer x is represented by a string of odd length if and only if x > 0.

Note that 0 = F−1 + F−2 , for example, so the uniqueness of the representation does depend on the condition that no two consecutive negafibonacci numbers are used.

This gives a system of coding integers, similar to the representation of Zeckendorf's theorem. In the string representing the integer x, the nth digit is 1 if Fn appears in the sum that represents x; that digit is 0 otherwise. For example, 24 may be represented by the string 100101001, which has the digit 1 in places 9, 6, 4, and 1, because 24 = F−1 + F−4 + F−6 + F−9 . The integer x is represented by a string of odd length if and only if x > 0.


See also

Fibonacci coding
Ostrowski numeration

References

Historical note on the name Zeckendorf Representation by R Knott, University of Surrey

Knuth, Donald. "Negafibonacci Numbers and the Hyperbolic Plane" Paper presented at the annual meeting of the Mathematical Association of America, The Fairmont Hotel, San Jose, CA. 2008-12-11 <http://www.allacademic.com/meta/p206842_index.html>

Knuth, Donald E. (1988). "Fibonacci multiplication". Applied Mathematics Letters 1 (1): 57–60. doi:10.1016/0893-9659(88)90176-0. ISSN 0893-9659. Zbl 0633.10011.
Zeckendorf, E. (1972). "Représentation des nombres naturels par une somme de nombres de Fibonacci ou de nombres de Lucas". Bull. Soc. R. Sci. Liège (in French) 41: 179–182. ISSN 0037-9565. Zbl 0252.10011.

External links

Weisstein, Eric W., "Zeckendorf's Theorem", MathWorld.
Weisstein, Eric W., "Zeckendorf Representation", MathWorld.
Zeckendorf's theorem at cut-the-knot
G.M. Phillips (2001), "Zeckendorf representation", in Hazewinkel, Michiel, Encyclopedia of Mathematics, Springer, ISBN 978-1-55608-010-4
"Sloane's A101330 : Knuth's Fibonacci (or circle) product", The On-Line Encyclopedia of Integer Sequences. OEIS Foundation.

This article incorporates material from proof that the Zeckendorf representation of a positive integer is unique on PlanetMath, which is licensed under the Creative Commons Attribution/Share-Alike License.

Undergraduate Texts in Mathematics

Graduate Texts in Mathematics

Graduate Studies in Mathematics

Mathematics Encyclopedia

Retrieved from "http://en.wikipedia.org/"
All text is available under the terms of the GNU Free Documentation License

Home - Hellenica World