Proposed by Peter Nightingale
Informally, the problem is to find a set (optionally of maximal size) of codewords, such that any pair of codewords are Hamming distance d apart. Each codeword (which may be considered as a sequence) is made up of symbols from the alphabet {1,…,q}, with each symbol occurring a fixed number λ of times per codeword.
More precisely, the problem has parameters v, q, λ, d and it is to find a set E of size v, of sequences of length qλ, such that each sequence contains λ of each symbol in the set {1,…,q}. For each pair of sequences in E, the pair are Hamming distance d apart (i.e. there are d places where the sequences disagree).
For the parameters v=5, q=3, λ=2, d=4, the following table shows a set E={c1,c2,c3,c4,c5}.
Symbol | Codeword |
---|---|
c1 | 0 0 1 1 2 2 |
c2 | 0 1 0 2 1 2 |
c3 | 0 1 2 0 2 1 |
c4 | 0 2 1 2 0 1 |
c5 | 0 2 2 1 1 0 |