De Bruijn sequence


In combinatorial mathematics, a de Bruijn sequence of order n on a size-k alphabet A is a cyclic sequence in which every possible length-n string on A occurs exactly once as a substring. Such a sequence is denoted by and has length, which is also the number of distinct strings of length n on A. Each of these distinct strings, when taken as a substring of, must start at a different position, because substrings starting at the same position are not distinct. Therefore, must have at least symbols. And since has exactly symbols, De Bruijn sequences are optimally short with respect to the property of containing every string of length n exactly once.
The number of distinct de Bruijn sequences is
The sequences are named after the Dutch mathematician Nicolaas Govert de Bruijn, who wrote about them in [|1946]. As he later wrote, the existence of de Bruijn sequences for each order together with the above properties were first proved, for the case of alphabets with two elements, by. The generalization to larger alphabets is due to.
In most applications, A =.

History

The earliest known example of a de Bruijn sequence comes from Sanskrit prosody where, since the work of Pingala, each possible three-syllable pattern of long and short syllables is given a name, such as 'y' for short–long–long and 'm' for long–long–long. To remember these names, the mnemonic yamātārājabhānasalagām is used, in which each three-syllable pattern occurs starting at its name: 'yamātā' has a short–long–long pattern, 'mātārā' has a long–long–long pattern, and so on, until 'salagām' which has a short–short–long pattern. This mnemonic, equivalent to a de Bruijn sequence on binary 3-tuples, is of unknown antiquity, but is at least as old as Charles Philip Brown's 1869 book on Sanskrit prosody that mentions it and considers it "an ancient line, written by Pāṇini".
In 1894, A. de Rivière raised the question in an issue of the French problem journal L'Intermédiaire des Mathématiciens, of the existence of a circular arrangement of zeroes and ones of size that contains all binary sequences of length. The problem was solved, along with the count of distinct solutions, by Camille Flye Sainte-Marie in the same year. This was largely forgotten, and proved the existence of such cycles for general alphabet size in place of 2, with an algorithm for constructing them. Finally, when in 1944 Kees Posthumus conjectured the count for binary sequences, de Bruijn proved the conjecture in 1946, through which the problem became well-known.
Karl Popper independently describes these objects in his The Logic of Scientific Discovery, calling them "shortest random-like sequences".

Examples

The de Bruijn sequences can be constructed by taking a Hamiltonian path of an n-dimensional de Bruijn graph over k symbols.
An alternative construction involves concatenating together, in lexicographic order, all the Lyndon words whose length divides n.
An inverse Burrows—Wheeler transform can be used to generate the required Lyndon words in lexicographic order.
De Bruijn sequences can also be constructed using shift registers or via finite fields.

Example using de Bruijn graph

Goal: to construct a B de Bruijn sequence of length 24 = 16 using Eulerian 3-D de Bruijn graph cycle.
Each edge in this 3-dimensional de Bruijn graph corresponds to a sequence of four digits: the three digits that label the vertex that the edge is leaving followed by the one that labels the edge. If one traverses the edge labeled 1 from 000, one arrives at 001, thereby indicating the presence of the subsequence 0001 in the de Bruijn sequence. To traverse each edge exactly once is to use each of the 16 four-digit sequences exactly once.
For example, suppose we follow the following Eulerian path through these vertices:
These are the output sequences of length k:
This corresponds to the following de Bruijn sequence:
The eight vertices appear in the sequence in the following way:
1 1 1 1 0 1 1 0 0 1 0 1
0 1 1 1 0 1 1 0 0 1 0 1
0 0 1 1 0 1 1 0 0 1 0 1
0 0 0 1 0 1 1 0 0 1 0 1
0 0 0 0 0 1 1 0 0 1 0 1
0 0 0 0 1 1 1 0 0 1 0 1
0 0 0 0 1 1 1 0 0 1 0 1
0 0 0 0 1 1 1 0 0 1 0 1
0 0 0 0 1 1 1 1 0 1 0 1
0 0 0 0 1 1 1 1 0 1 0 1
0 0 0 0 1 1 1 1 0 1 0 1
0 0 0 0 1 1 1 1 0 1 1 1
0 0 0 0 1 1 1 1 0 1 1 0
01 0 1...
... 0 00 1...
... 0 0 01...
...and then we return to the starting point. Each of the eight 3-digit sequences appears exactly twice, and each of the sixteen 4-digit sequences appears exactly once.

Example using inverse Burrows—Wheeler transform

Mathematically, an inverse Burrows—Wheeler transform on a word w generates a multi-set of equivalence classes consisting of strings and their rotations. These equivalence classes of strings each contain a Lyndon word as a unique minimum element, so the inverse Burrows—Wheeler transform can be considered to generate a set of Lyndon words. It can be shown that if we perform the inverse Burrows—Wheeler transform on a word w consisting of the size-k alphabet repeated kn-1 times, then the result will be the set of all Lyndon words whose length divides n. It follows that arranging these Lyndon words in lexicographic order will yield a de Bruijn sequence B, and that this will be the first de Bruijn sequence in lexicographic order. The following method can be used to perform the inverse Burrows—Wheeler transform, using its standard permutation:
  1. Sort the characters in the string w, yielding a new string w
  2. Position the string w' above the string w, and map each letter's position in w to its position in w while preserving order. This process defines the .
  3. Write this permutation in cycle notation with the smallest position in each cycle first, and the cycles sorted in increasing order.
  4. For each cycle, replace each number with the corresponding letter from string w in that position.
  5. Each cycle has now become a Lyndon word, and they are arranged in lexicographic order, so dropping the parentheses yields the first de Bruijn sequence.
For example, to construct the smallest B de Bruijn sequence of length 24 = 16, repeat the alphabet 8 times yielding w=abababababababab. Sort the characters in w, yielding w'=aaaaaaaabbbbbbbb. Position w above w as shown, and map each element in w' to the corresponding element in w by drawing a line. Number the columns as shown so we can read the cycles of the permutation:
Starting from the left, the Standard Permutation notation cycles are: .
Then, replacing each number by the corresponding letter in w' from that column yields:.
These are all of the Lyndon words whose length divides 4, in lexicographic order, so dropping the parentheses gives B = aaaabaabbababbbb.

Algorithm

The following Python code calculates a de Bruijn sequence, given k and n, based on an algorithm from Frank Ruskey's Combinatorial Generation.

def de_bruijn -> str:
"""
de Bruijn sequence for alphabet k
and subsequences of length n.
"""
try:
# let's see if k can be cast to an integer;
# if so, make our alphabet a list
_ = int
alphabet = list
except :
alphabet = k
k = len
a = * k * n
sequence =
def db:
if t > n:
if n % p 0:
sequence.extend
else:
a = a
db
for j in range:
a = j
db
db
return "".join
print
print

which prints
00010111
aabacadbbcbdccdd
Note that these sequences are understood to "wrap around" in a cycle. For example, the first sequence contains 110 and 100 in this fashion.

Uses

The sequence can be used to shorten a brute-force attack on a PIN-like code lock that does not have an "enter" key and accepts the last n digits entered. For example, a digital door lock with a 4-digit code would have B  solutions, with length. Therefore, only at most presses are needed to open the lock. Trying all codes separately would require presses.
The symbols of a de Bruijn sequence written around a circular object can be used to identify its angle by examining the n consecutive symbols facing a fixed point. This angle-encoding problem is known as the "rotating drum problem". Gray codes can be used as similar rotary positional encoding mechanisms.
De Bruijn cycles are of general use in neuroscience and psychology experiments that examine the effect of stimulus order upon neural systems, and can be specially crafted for use with functional magnetic resonance imaging.
A de Bruijn sequence can be used to quickly find the index of the least significant set bit or the most significant set bit in a word using bitwise operations. An example of returning the index of the least significant bit from a 32 bit unsigned integer is given below using bit manipulation and multiplication.

unsigned int v;
int r;
static const int MultiplyDeBruijnBitPosition =
r = MultiplyDeBruijnBitPosition;

The index of the LSB in v is stored in r and if v has no set bits the operation returns 0. The constant, 0x077CB531U, in the expression is the B  sequence 0000 0111 0111 1100 1011 0101 0011 0001.
An example of returning the index of the most significant bit set from a 32 bit unsigned integer is given below using bit manipulation and multiplication.

uint32_t keepHighestBit
uint8_t highestBitIndex

f-fold de Bruijn sequences

f-fold n-ary de Bruijn sequence' is an extension of the notion n-ary de Bruijn sequence, such that the sequence of the length contains every possible subsequence of the length n exactly f times. For example, for the cyclic sequences 11100010 and 11101000 are two-fold binary de Bruijn sequences. The number of two-fold de Bruijn sequences, for is, the other known numbers are,, and.

De Bruijn torus

A de Bruijn torus is a toroidal array with the property that every k-ary m-by-n matrix occurs exactly once.
Such a pattern can be used for two-dimensional positional encoding in a fashion analogous to that described above for rotary encoding. Position can be determined by examining the m-by-n matrix directly adjacent to the sensor, and calculating its position on the de Bruijn torus.

De Bruijn decoding

Computing the position of a particular unique tuple or matrix in a de Bruijn sequence or torus is known as the de Bruijn Decoding Problem. Efficient decoding algorithms exist for special, recursively constructed sequences and extend to the two dimensional case. De Bruijn decoding is of interest, e.g., in cases where large sequences or tori are used for positional encoding.