Thue–Morse sequence
In mathematics, the Thue–Morse sequence or Prouhet–Thue–Morse sequence or parity sequence[1] is the binary sequence (an infinite sequence of 0s and 1s) obtained by starting with 0 and successively appending the Boolean complement of the sequence obtained thus far. The first few steps of this procedure yield the strings 0 then 01, 0110, 01101001, 0110100110010110, and so on, which are prefixes of the Thue–Morse sequence. The full sequence begins:
- 01101001100101101001011001101001.... [1]
The sequence is named after Axel Thue and Marston Morse.
Definition
There are several equivalent ways of defining the Thue–Morse sequence.
Direct definition
To compute the nth element tn, write the number n in binary. If the number of ones in this binary expansion is odd then tn = 1, if even then tn = 0.[2] That is, tn is the even parity bit for n. John H. Conway et al. called numbers n satisfying tn = 1 odious (for odd) numbers and numbers for which tn = 0 evil (for even) numbers. In other words, tn = 0 if n is an evil number and tn = 1 if n is an odious number.
Fast sequence generation
This method leads to a fast method for computing the Thue–Morse sequence: start with t0 = 0, and then, for each n, find the highest-order bit in the binary representation of n that is different from the same bit in the representation of n − 1. If this bit is at an even index, tn differs from tn − 1, and otherwise it is the same as tn − 1.
In pseudo-code form:
def generate_sequence(seq_length: int): """Thue–Morse sequence.""" value = 0 for n = 0 to seq_length-1 by 1: # Note: assumes an even number of bits in the word size, and two's complement arithmetic so that when n == 0, x is odd (e.g. 31 or 63) x = index_of_highest_one_bit(n ^ (n - 1)) if ((x & 1) == 0): # bit index is even, so toggle value value = 1 - value yield value
The resulting algorithm takes constant time to generate each sequence element, using only a logarithmic number of bits (constant number of words) of memory.[3]
Recurrence relation
The Thue–Morse sequence is the sequence tn satisfying the recurrence relation
- [math]\displaystyle{ \begin{align} t_0 &= 0,\\ t_{2n} &= t_n,\\ t_{2n+1} &= 1 - t_n, \end{align} }[/math]
for all non-negative integers n.[2]
L-system
The Thue–Morse sequence is a morphic word:[4] it is the output of the following Lindenmayer system:
Variables | 0, 1 |
---|---|
Constants | None |
Start | 0 |
Rules | (0 → 01), (1 → 10) |
Characterization using bitwise negation
The Thue–Morse sequence in the form given above, as a sequence of bits, can be defined recursively using the operation of bitwise negation. So, the first element is 0. Then once the first 2n elements have been specified, forming a string s, then the next 2n elements must form the bitwise negation of s. Now we have defined the first 2n+1 elements, and we recurse.
Spelling out the first few steps in detail:
- We start with 0.
- The bitwise negation of 0 is 1.
- Combining these, the first 2 elements are 01.
- The bitwise negation of 01 is 10.
- Combining these, the first 4 elements are 0110.
- The bitwise negation of 0110 is 1001.
- Combining these, the first 8 elements are 01101001.
- And so on.
So
- T0 = 0.
- T1 = 01.
- T2 = 0110.
- T3 = 01101001.
- T4 = 0110100110010110.
- T5 = 01101001100101101001011001101001.
- T6 = 0110100110010110100101100110100110010110011010010110100110010110.
- And so on.
Infinite product
The sequence can also be defined by:
- [math]\displaystyle{ \prod_{i=0}^{\infty} \left(1 - x^{2^i}\right) = \sum_{j=0}^{\infty} (-1)^{t_j} x^j, }[/math]
where tj is the jth element if we start at j = 0.
Properties
The Thue–Morse sequence contains many squares: instances of the string [math]\displaystyle{ XX }[/math], where [math]\displaystyle{ X }[/math] denotes the string [math]\displaystyle{ A }[/math], [math]\displaystyle{ \overline{A} }[/math], [math]\displaystyle{ A \overline{A}A }[/math], or [math]\displaystyle{ \overline{A}A \overline{A} }[/math], where [math]\displaystyle{ A=T_{k} }[/math] for some [math]\displaystyle{ k\ge 0 }[/math] and [math]\displaystyle{ \overline{A} }[/math] is the bitwise negation of [math]\displaystyle{ A }[/math].[5] For instance, if [math]\displaystyle{ k=0 }[/math], then [math]\displaystyle{ A=T_{0}=0 }[/math]. The square [math]\displaystyle{ A \overline{A}AA \overline{A}A = 010010 }[/math] appears in [math]\displaystyle{ T }[/math] starting at the 16th bit. Since all squares in [math]\displaystyle{ T }[/math] are obtained by repeating one of these 4 strings, they all have length [math]\displaystyle{ 2^n }[/math] or [math]\displaystyle{ 3\cdot2^n }[/math] for some [math]\displaystyle{ n\ge 0 }[/math]. [math]\displaystyle{ T }[/math] contains no cubes: instances of [math]\displaystyle{ XXX }[/math]. There are also no overlapping squares: instances of [math]\displaystyle{ 0X0X0 }[/math] or [math]\displaystyle{ 1X1X1 }[/math].[6][7] The critical exponent of [math]\displaystyle{ T }[/math] is 2.[8]
The Thue–Morse sequence is a uniformly recurrent word: given any finite string X in the sequence, there is some length nX (often much longer than the length of X) such that X appears in every block of length nX.[9][10] Notably, the Thue-Morse sequence is uniformly recurrent without being either periodic or eventually periodic (i.e., periodic after some initial nonperiodic segment).[11]
The sequence T2n is a palindrome for any n. Furthermore, let qn be a word obtained by counting the ones between consecutive zeros in T2n . For instance, q1 = 2 and q2 = 2102012. Since Tn does not contain overlapping squares, the words qn are palindromic squarefree words.
The Thue–Morse morphism μ is defined on alphabet {0,1} by the substitution map μ(0) = 01, μ(1) = 10: every 0 in a sequence is replaced with 01 and every 1 with 10.[12] If T is the Thue–Morse sequence, then μ(T) is also T. Thus, T is a fixed point of μ. The morphism μ is a prolongable morphism on the free monoid {0,1}∗ with T as fixed point: T is essentially the only fixed point of μ; the only other fixed point is the bitwise negation of T, which is simply the Thue–Morse sequence on (1,0) instead of on (0,1). This property may be generalized to the concept of an automatic sequence.
The generating series of T over the binary field is the formal power series
- [math]\displaystyle{ t(Z) = \sum_{n=0}^\infty T(n) Z^n \ . }[/math]
This power series is algebraic over the field of rational functions, satisfying the equation[13]
- [math]\displaystyle{ Z + (1+Z)^2 t + (1+Z)^3 t^2 = 0 }[/math]
In combinatorial game theory
The set of evil numbers (numbers [math]\displaystyle{ n }[/math] with [math]\displaystyle{ t_n=0 }[/math]) forms a subspace of the nonnegative integers under nim-addition (bitwise exclusive or). For the game of Kayles, evil nim-values occur for few (finitely many) positions in the game, with all remaining positions having odious nim-values.
The Prouhet–Tarry–Escott problem
The Prouhet–Tarry–Escott problem can be defined as: given a positive integer N and a non-negative integer k, partition the set S = { 0, 1, ..., N-1 } into two disjoint subsets S0 and S1 that have equal sums of powers up to k, that is:
- [math]\displaystyle{ \sum_{x \in S_0} x^i = \sum_{x \in S_1} x^i }[/math] for all integers i from 1 to k.
This has a solution if N is a multiple of 2k+1, given by:
- S0 consists of the integers n in S for which tn = 0,
- S1 consists of the integers n in S for which tn = 1.
For example, for N = 8 and k = 2,
- 0 + 3 + 5 + 6 = 1 + 2 + 4 + 7,
- 02 + 32 + 52 + 62 = 12 + 22 + 42 + 72.
The condition requiring that N be a multiple of 2k+1 is not strictly necessary: there are some further cases for which a solution exists. However, it guarantees a stronger property: if the condition is satisfied, then the set of kth powers of any set of N numbers in arithmetic progression can be partitioned into two sets with equal sums. This follows directly from the expansion given by the binomial theorem applied to the binomial representing the nth element of an arithmetic progression.
For generalizations of the Thue–Morse sequence and the Prouhet–Tarry–Escott problem to partitions into more than two parts, see Bolker, Offner, Richman and Zara, "The Prouhet–Tarry–Escott problem and generalized Thue–Morse sequences".[14]
Fractals and turtle graphics
Using turtle graphics, a curve can be generated if an automaton is programmed with a sequence. When Thue–Morse sequence members are used in order to select program states:
- If t(n) = 0, move ahead by one unit,
- If t(n) = 1, rotate by an angle of π/3 radians (60°)
The resulting curve converges to the Koch curve, a fractal curve of infinite length containing a finite area. This illustrates the fractal nature of the Thue–Morse Sequence.[15]
It is also possible to draw the curve precisely using the following instructions:[16]
- If t(n) = 0, rotate by an angle of π radians (180°),
- If t(n) = 1, move ahead by one unit, then rotate by an angle of π/3 radians.
Equitable sequencing
In their book on the problem of fair division, Steven Brams and Alan Taylor invoked the Thue–Morse sequence but did not identify it as such. When allocating a contested pile of items between two parties who agree on the items' relative values, Brams and Taylor suggested a method they called balanced alternation, or taking turns taking turns taking turns . . . , as a way to circumvent the favoritism inherent when one party chooses before the other. An example showed how a divorcing couple might reach a fair settlement in the distribution of jointly-owned items. The parties would take turns to be the first chooser at different points in the selection process: Ann chooses one item, then Ben does, then Ben chooses one item, then Ann does.[17]
Lionel Levine and Katherine E. Stange, in their discussion of how to fairly apportion a shared meal such as an Ethiopian dinner, proposed the Thue–Morse sequence as a way to reduce the advantage of moving first. They suggested that “it would be interesting to quantify the intuition that the Thue–Morse order tends to produce a fair outcome.”[18]
Robert Richman addressed this problem, but he too did not identify the Thue–Morse sequence as such at the time of publication.[19] He presented the sequences Tn as step functions on the interval [0,1] and described their relationship to the Walsh and Rademacher functions. He showed that the nth derivative can be expressed in terms of Tn. As a consequence, the step function arising from Tn is orthogonal to polynomials of order n − 1. A consequence of this result is that a resource whose value is expressed as a monotonically decreasing continuous function is most fairly allocated using a sequence that converges to Thue–Morse as the function becomes flatter. An example showed how to pour cups of coffee of equal strength from a carafe with a nonlinear concentration gradient, prompting a whimsical article in the popular press.[20]
Joshua Cooper and Aaron Dutle showed why the Thue–Morse order provides a fair outcome for discrete events.[21] They considered the fairest way to stage a Galois duel, in which each of the shooters has equally poor shooting skills. Cooper and Dutle postulated that each dueler would demand a chance to fire as soon as the other's a priori probability of winning exceeded their own. They proved that, as the duelers’ hitting probability approaches zero, the firing sequence converges to the Thue–Morse sequence. In so doing, they demonstrated that the Thue–Morse order produces a fair outcome not only for sequences Tn of length 2n, but for sequences of any length.
Thus the mathematics supports using the Thue–Morse sequence instead of alternating turns when the goal is fairness but earlier turns differ monotonically from later turns in some meaningful quality, whether that quality varies continuously[19] or discretely.[21]
Sports competitions form an important class of equitable sequencing problems, because strict alternation often gives an unfair advantage to one team. Ignacio Palacios-Huerta proposed changing the sequential order to Thue–Morse to improve the ex post fairness of various tournament competitions, such as the kicking sequence of a penalty shoot-out in soccer.[22] He did a set of field experiments with pro players and found that the team kicking first won 60% of games using ABAB (or T1), 54% using ABBA (or T2), and 51% using full Thue–Morse (or Tn). As a result, ABBA is undergoing extensive trials in FIFA (European and World Championships) and English Federation professional soccer (EFL Cup).[23] An ABBA serving pattern has also been found to improve the fairness of tennis tie-breaks.[24] In competitive rowing, T2 is the only arrangement of port- and starboard-rowing crew members that eliminates transverse forces (and hence sideways wiggle) on a four-membered coxless racing boat, while T3 is one of only four rigs to avoid wiggle on an eight-membered boat.[25]
Fairness is especially important in player drafts. Many professional sports leagues attempt to achieve competitive parity by giving earlier selections in each round to weaker teams. By contrast, fantasy football leagues have no pre-existing imbalance to correct, so they often use a “snake” draft (forward, backward, etc.; or T1).[26] Ian Allan argued that a “third-round reversal” (forward, backward, backward, forward, etc.; or T2) would be even more fair.[27] Richman suggested that the fairest way for “captain A” and “captain B” to choose sides for a pick-up game of basketball mirrors T3: captain A has the first, fourth, sixth, and seventh choices, while captain B has the second, third, fifth, and eighth choices.[19]
Hash collisions
The initial 2k bits of the Thue–Morse sequence are mapped to 0 by a wide class of polynomial hash functions modulo a power of two, which can lead to hash collisions.[28]
History
The Thue–Morse sequence was first studied by Eugène Prouhet (fr) in 1851,[29] who applied it to number theory. However, Prouhet did not mention the sequence explicitly; this was left to Axel Thue in 1906, who used it to found the study of combinatorics on words. The sequence was only brought to worldwide attention with the work of Marston Morse in 1921, when he applied it to differential geometry. The sequence has been discovered independently many times, not always by professional research mathematicians; for example, Max Euwe, a chess grandmaster and mathematics teacher, discovered it in 1929 in an application to chess: by using its cube-free property (see above), he showed how to circumvent the threefold repetition rule aimed at preventing infinitely protracted games by declaring repetition of moves a draw. At the time, consecutive identical board states were required to trigger the rule; the rule was later amended to the same board position reoccurring three times at any point, as the sequence shows that the consecutive criterion can be evaded forever.
See also
- Dejean's theorem
- Fabius function
- First difference of the Thue–Morse sequence
- Gray code[30][31][32]
- Komornik–Loreti constant
- Prouhet–Thue–Morse constant
Notes
- ↑ 1.0 1.1 Sloane, N. J. A., ed. "Sequence A010060 (Thue-Morse sequence)". OEIS Foundation. https://oeis.org/A010060.
- ↑ 2.0 2.1 (Allouche Shallit)
- ↑ Arndt (2011).
- ↑ (Lothaire 2011)
- ↑ Brlek (1989).
- ↑ (Lothaire 2011)
- ↑ (Pytheas Fogg 2002)
- ↑ Krieger (2006).
- ↑ (Lothaire 2011)
- ↑ Berthé & Rigo (2010).
- ↑ (Lothaire 2011)
- ↑ (Berstel Lauve)
- ↑ (Berstel Lauve)
- ↑ Bolker et al. (2016).
- ↑ Ma & Holdener (2005).
- ↑ Abel, Zachary (January 23, 2012). "Thue-Morse Navigating Turtles". http://blog.zacharyabel.com/2012/01/thue-morse-navigating-turtles/.
- ↑ Brams & Taylor (1999).
- ↑ Levine & Stange (2012).
- ↑ 19.0 19.1 19.2 (Richman 2001)
- ↑ Abrahams (2010).
- ↑ 21.0 21.1 (Cooper Dutle)
- ↑ Palacios-Huerta (2012).
- ↑ Palacios-Huerta (2014).
- ↑ Cohen-Zada, Krumer & Shapir (2018).
- ↑ Barrow (2010).
- ↑ "Fantasy Draft Types". NFL.com. http://www.nfl.com/fantasyfootball/help/drafttypes.
- ↑ Allan, Ian (July 16, 2014). "Third-Round Reversal Drafts". Fantasy Index. https://www.fantasyindex.com/2014/07/16/fantasy-news/third-round-reversal-drafts.
- ↑ Pachocki, Jakub; Radoszewski, Jakub (2013). "Where to Use and How not to Use Polynomial String Hashing". Olympiads in Informatics 7: 90–100. https://ioinformatics.org/journal/INFOL119.pdf.
- ↑ The ubiquitous Prouhet-Thue-Morse sequence by Jean-Paul Allouche and Jeffrey Shallit
- ↑ "Gray codes and the Thue-Morse-Hedlund sequence". Journal of Combinatorial Mathematics and Combinatorial Computing (JCMCC) (Naval Postgraduate School, Department of Mathematics, Monterey, California, USA) 11: 3–11. 1992.
- ↑ "On the Asymptotic Relative Change for Sequences of Permutations". 2018-10-30. https://www.researchgate.net/project/On-the-Asymptotic-Relative-Change-for-Sequences-of-Permutations. [1]
- ↑ "What is the relationship between the Gray code and the Thue–Morse sequence". Quora. 2020-06-21. https://www.quora.com/What-is-the-relationship-between-the-Gray-code-and-the-Thue-Morse-sequence.
References
- Abrahams, Marc (12 July 2010). "How to pour the perfect cup of coffee". The Guardian. https://www.theguardian.com/education/2010/jul/13/perfect-coffee-improbable-research.
- Arndt, Jörg (2011). "1.16.4 The Thue–Morse sequence". Matters Computational: Ideas, Algorithms, Source Code. Springer. p. 44. http://jjj.de/fxt/fxtbook.pdf.
- Allouche, Jean-Paul; Shallit, Jeffrey (2003). Automatic Sequences: Theory, Applications, Generalizations. Cambridge University Press. ISBN 978-0-521-82332-6.
- Barrow, John D. (2010). "Rowing and the Same-Sum Problem Have Their Moments". American Journal of Physics 78 (7): 728–732. doi:10.1119/1.3318808. Bibcode: 2010AmJPh..78..728B.
- Berstel, Jean; Lauve, Aaron; Reutenauer, Christophe; Saliola, Franco V. (2009). Combinatorics on words. Christoffel words and repetitions in words. CRM Monograph Series. 27. Providence, RI, USA: American Mathematical Society. ISBN 978-0-8218-4480-9. http://www.ams.org/bookpages/crmm-27.
- Berthé, Valérie; Rigo, Michel, eds (2010). Combinatorics, automata, and number theory. Encyclopedia of Mathematics and its Applications. 135. Cambridge: Cambridge University Press. p. 7. ISBN 978-0-521-51597-9.
- Bolker, Ethan; Offner, Carl; Richman, Robert; Zara, Catalin (2016). "The Prouhet–Tarry–Escott problem and generalized Thue–Morse sequences". Journal of Combinatorics 7 (1): 117–133. doi:10.4310/JOC.2016.v7.n1.a5.}
- Brams, Steven J.; Taylor, Alan D. (1999). The Win-Win Solution: Guaranteeing Fair Shares to Everybody. W. W. Norton & Co., Inc.. pp. 36–44. ISBN 978-0-393-04729-5. https://archive.org/details/winwinsolutiongu00stev/page/36.
- Brlek, Srećko (1989). "Enumeration of Factors in the Thue-Morse Word". Discrete Applied Mathematics 24 (1–3): 83–96. doi:10.1016/0166-218x(92)90274-e.
- Cohen-Zada, Danny; Krumer, Alex; Shapir, Offer Moshe (2018). "Testing the effect of serve order in tennis tiebreak". Journal of Economic Behavior and Organization 146: 106–115. doi:10.1016/j.jebo.2017.12.012. https://www.sciencedirect.com/science/article/pii/S0167268117303530.
- Cooper, Joshua; Dutle, Aaron (2013). "Greedy Galois Games". American Mathematical Monthly 120 (5): 441–451. doi:10.4169/amer.math.monthly.120.05.441. http://www.math.sc.edu/~cooper/ThueMorseDueling.pdf.
- Krieger, Dalia (2006). "On critical exponents in fixed points of non-erasing morphisms". in Ibarra, Oscar H.; Dang, Zhe. Developments in Language Theory: Proceedings 10th International Conference, DLT 2006, Santa Barbara, California, USA, June 26-29, 2006. Lecture Notes in Computer Science. 4036. Springer-Verlag. pp. 280–291. ISBN 978-3-540-35428-4.
- Levine, Lionel; Stange, Katherine E. (2012). "How to Make the Most of a Shared Meal: Plan the Last Bite First". American Mathematical Monthly 119 (7): 550–565. doi:10.4169/amer.math.monthly.119.07.550. http://math.colorado.edu/~kstange/papers/EthiopianDinner.pdf.
- Lothaire, M. (2011). Algebraic combinatorics on words. Encyclopedia of Mathematics and Its Applications. 90. With preface by Jean Berstel and Dominique Perrin (Reprint of the 2002 hardback ed.). Cambridge University Press. ISBN 978-0-521-18071-9.
- Ma, Jun; Holdener, Judy (2005). "When Thue-Morse meets Koch". Fractals 13 (3): 191–206. doi:10.1142/S0218348X05002908. http://www2.kenyon.edu/people/holdenerj/StudentResearch/WhenThueMorsemeetsKochJan222005.pdf.
- Palacios-Huerta, Ignacio (2012). "Tournaments, fairness and the Prouhet–Thue–Morse sequence". Economic Inquiry 50 (3): 848–849. doi:10.1111/j.1465-7295.2011.00435.x. http://www.palacios-huerta.com/docs/EI-Tournaments_and_PTM_sequence.pdf.
- Palacios-Huerta, Ignacio (2014). Beautiful Game Theory. Princeton University Press. ISBN 978-0691144023.
- Substitutions in dynamics, arithmetics and combinatorics. Lecture Notes in Mathematics. 1794. Berlin, Germany: Springer-Verlag. 2002. ISBN 978-3-540-44141-0.
- Richman, Robert (2001). "Recursive Binary Sequences of Differences". Complex Systems 13 (4): 381–392. http://www.complex-systems.com/pdf/13-4-3.pdf.
Further reading
- Bugeaud, Yann (2012). Distribution modulo one and Diophantine approximation. Cambridge Tracts in Mathematics. 193. Cambridge: Cambridge University Press. ISBN 978-0-521-11169-0.
- Lothaire, M. (2005). Applied combinatorics on words. Encyclopedia of Mathematics and Its Applications. 105. A collective work by Jean Berstel, Dominique Perrin, Maxime Crochemore, Eric Laporte, Mehryar Mohri, Nadia Pisanti, Marie-France Sagot, Gesine Reinert, Sophie Schbath, Michael Waterman, Philippe Jacquet, Wojciech Szpankowski, Dominique Poulalhon, Gilles Schaeffer, Roman Kolpakov, Gregory Koucherov, Jean-Paul Allouche and Valérie Berthé. Cambridge: Cambridge University Press. ISBN 978-0-521-84802-2. https://archive.org/details/appliedcombinato0000loth.
External links
- Hazewinkel, Michiel, ed. (2001), "Thue-Morse sequence", Encyclopedia of Mathematics, Springer Science+Business Media B.V. / Kluwer Academic Publishers, ISBN 978-1-55608-010-4, https://www.encyclopediaofmath.org/index.php?title=p/t120090
- Weisstein, Eric W.. "Thue-Morse Sequence". http://mathworld.wolfram.com/Thue-MorseSequence.html.
- Allouche, J.-P.; Shallit, J. O. The Ubiquitous Prouhet-Thue-Morse Sequence. (contains many applications and some history)
- Thue–Morse Sequence over (1,2) (sequence A001285 in the OEIS)
- OEIS sequence A000069 (Odious numbers: numbers with an odd number of 1's in their binary expansion)
- OEIS sequence A001969 (Evil numbers: numbers with an even number of 1's in their binary expansion)
- Reducing the influence of DC offset drift in analog IPs using the Thue-Morse Sequence. A technical application of the Thue–Morse Sequence
- MusiNum - The Music in the Numbers. Freeware to generate self-similar music based on the Thue–Morse Sequence and related number sequences.
- Parker, Matt. "The Fairest Sharing Sequence Ever" (video). standupmaths. https://www.youtube.com/watch?v=prh72BLNjIk.
Original source: https://en.wikipedia.org/wiki/Thue–Morse sequence.
Read more |