To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Zeckendorf's theorem

From Wikipedia, the free encyclopedia

The first 89 natural numbers in Zeckendorf form. Each rectangle has a Fibonacci number Fj as width (blue number in the center) and Fj−1 as height. The vertical bands have width 10.

In mathematics, Zeckendorf's theorem, named after Belgian amateur 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

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 64 is

64 = 55 + 8 + 1.

There are other ways of representing 64 as the sum of Fibonacci numbers

64 = 55 + 5 + 3 + 1
64 = 34 + 21 + 8 + 1
64 = 34 + 21 + 5 + 3 + 1
64 = 34 + 13 + 8 + 5 + 3 + 1

but these are not Zeckendorf representations because 34 and 21 are consecutive Fibonacci numbers, as are 5 and 3.

For any given positive integer, its Zeckendorf representation can be found by using a greedy algorithm, choosing the largest possible Fibonacci number at each stage.

YouTube Encyclopedic

  • 1/5
    Views:
    385
    847 158
    448 649
    2 633 317
    414
  • CookieMonsterMeetsFibonaccisMmmmThms YaleApril2014
  • The Simplest Thing We Can't Prove #shorts
  • Brown's Criterion - Numberphile
  • Fibonacci Mystery - Numberphile
  • Differencing Techniques (Part 03) ~ Exponentials and the Fibonacci Sequence

Transcription

History

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 Gerrit 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. If n is a Fibonacci number then there is nothing to prove. Otherwise there exists j such that Fj < n < Fj + 1. Now suppose each positive integer a < n has a Zeckendorf representation (induction hypothesis) and consider b = nFj. Since b < n, b has a Zeckendorf representation by the induction hypothesis. At the same time, b = nFj < Fj + 1Fj = Fj − 1 (we apply the definition of Fibonacci number in the last equality), so the Zeckendorf representation of b does not contain Fj − 1, and hence also does not contain Fj. As a result, n can be represented as the sum of Fj and the Zeckendorf representation of b, such that the Fibonacci numbers involved in the sum are distinct.

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 larger Fibonacci number Fj + 1.

The lemma can be proven by induction on j.

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

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

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

Fibonacci multiplication

One can define the following operation on natural numbers a, b: given the Zeckendorf representations and we define the Fibonacci product

For example, the Zeckendorf representation of 2 is , and the Zeckendorf representation of 4 is ( is disallowed from representations), so

(The product is not always in Zeckendorf form. For example, )

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.[2]

Representation with negafibonacci numbers

The Fibonacci sequence can be extended to negative index n using the rearranged recurrence relation

which yields the sequence of "negafibonacci" numbers satisfying

Any integer can be uniquely represented[3] 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.

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 F−n 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

References

  1. ^ "Fibonacci bases and Other Ways of Representing Numbers". r-knott.surrey.ac.uk. Retrieved 2024-03-16.
  2. ^ Knuth, Donald E. (1988). "Fibonacci multiplication" (PDF). Applied Mathematics Letters. 1 (1): 57–60. doi:10.1016/0893-9659(88)90176-0. ISSN 0893-9659. Zbl 0633.10011.
  3. ^ Knuth, Donald (2008-12-11). Negafibonacci Numbers and the Hyperbolic Plane. Annual meeting, Mathematical Association of America. The Fairmont Hotel, San Jose, CA.
  • 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

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.

This page was last edited on 16 March 2024, at 14:06
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.