Reference articles on history, science, culture and more
Encyclopedia

Verhoeff algorithm

Decimal error detection code

The Verhoeff algorithm is a checksum for error detection first published by Dutch mathematician Jacobus Verhoeff in 1969. It was the first decimal check digit algorithm that detects all single-digit errors, and all transposition errors involving two adjacent digits, which was at the time thought impossible with such a code.

The method was independently discovered by H. Peter Gumm in 1985, this time including a formal proof and an extension to any base.

01Goals

Verhoeff had the goal of finding a decimal code, one where the check digit is a single decimal digit, which detected all single-digit errors and all transpositions of adjacent digits. At the time, supposed proofs of the nonexistence of these codes made base-11 codes popular, for example in the ISBN check digit.

His goals were also practical, and he based the evaluation of different codes on live data from the Dutch postal system, using a weighted points system for different kinds of error. The analysis broke the errors down into a number of categories: first, by how many digits are in error; for those with two digits in error, there are transpositions (abba), twins (aabb), jump transpositions (abccba), phonetic (1aa0), and jump twins (abacbc). Additionally there are omitted and added digits. Although the frequencies of some of these kinds of errors might be small, some codes might be immune to them in addition to the primary goals of detecting all singles and transpositions.

The phonetic errors in particular showed linguistic effects, because in Dutch, numbers are typically read in pairs; and also while 50 sounds similar to 15 in Dutch, 80 does not sound like 18.

Taking six-digit numbers as an example, Verhoeff reported the following classification of the errors:.

Digits in error Classification Count Frequency
1Transcription9,57479.05%
2Transpositions1,23710.21%
Twins670.55%
Phonetic590.49%
Other adjacent2321.92%
Jump transpositions990.82%
Jump Twins350.29%
Other jump errors430.36%
Other980.81%
31691.40%
41180.97%
52191.81%
61621.34%
Total12,112

02Description

The general idea of the algorithm is to represent each of the digits (0 through 9) as elements of the dihedral group D5. That is, map digits to D5, manipulate these, then map back into digits. Let this mapping be m : [0, 9] → D5

m={\begin{pmatrix}0&1&2&3&4&5&6&7&8&9\\e&r&r^{2}&r^{3}&r^{4}&s&rs&r^{2}s&r^{3}s&r^{4}s\end{pmatrix}}

Let the nth digit be an and let the number of digits be k.

For example given the code 942 then k is 3 and a3 = m(2) = r2.

Now define the permutation f : D5 → D5

f={\begin{pmatrix}e&r&r^{2}&r^{3}&r^{4}&s&rs&r^{2}s&r^{3}s&r^{4}s\\r&s&r^{2}s&rs&r^{2}&r^{3}s&r^{3}&e&r^{4}s&r^{4}\end{pmatrix}}

For example, f(r^{3})=rs. Another example is f^{2}(r^{3})=r^{3} since f(f(r^{3}))=f(rs)=r^{3}.

Using multiplicative notation for the group operation of D5, the check digit is then simply a value c such that

f^{0}(c)\cdot f^{1}(a_{k})\cdot \ldots \cdot f^{k-1}(a_{2})\cdot f^{k}(a_{1})=e

c is explicitly given by multiplicative inverse:

c=\left(\prod _{n=1}^{k}f^{n}(a_{k+1-n})\right)^{-1}

For example the check digit for 942 is 7. To verify this, use the mapping to D5 and insert into the LHS of the previous equation

f^{0}(r^{2}s)\cdot f^{1}(r^{2})\cdot f^{2}(r^{4})\cdot f^{3}(r^{4}s)=e

To evaluate this permutation quickly use that

f^{3}(r^{4}s)=f^{2}(r^{4})=f^{1}(r^{2})=f^{0}(r^{2}s)=r^{2}s

to get that

r^{2}s\cdot r^{2}s\cdot r^{2}s\cdot r^{2}s=e

This is the same reflection being iteratively multiplied. Use that reflections are their own inverse.

(r^{2}s\cdot r^{2}s)\cdot (r^{2}s\cdot r^{2}s)=e^{2}=e

In practice, the algorithm is implemented using simple lookup tables without needing to understand how to generate those tables from the underlying group and permutation theory. This is more properly considered a family of algorithms, as other permutations work too. Verhoeff's notes that the particular permutation, given above, is special as it has the property of detecting 95.3% of the phonetic errors.

The strengths of the algorithm are that it detects all transliteration and transposition errors, and additionally most twin, twin jump, jump transposition and phonetic errors.

The main weakness of the Verhoeff algorithm is its complexity. The calculations required cannot easily be expressed as a formula in say Z / 10Z. Lookup tables are required for easy calculation. A similar code is the Damm algorithm, which has similar qualities.

03Table-based algorithm

The Verhoeff algorithm can be implemented using three tables: a multiplication table d, an inverse table inv, and a permutation table p.

d k
0 1 2 3 4 5 6 7 8 9
j 0 0123456789
1 1234067895
2 2340178956
3 3401289567
4 4012395678
5 5987604321
6 6598710432
7 7659821043
8 8765932104
9 9876543210
j inv(j)
0 0
1 4
2 3
3 2
4 1
5 5
6 6
7 7
8 8
9 9
p num
0 1 2 3 4 5 6 7 8 9
pos (mod 8) 0 0123456789
1 1576283094
2 5803796142
3 8916043527
4 9453126870
5 4286573901
6 2793806415
7 7046913258

The first table, d, is based on multiplication in the dihedral group D5. and is simply the Cayley table of the group. Note that this group is not commutative, that is, for some values of j and k, d(j,k) ≠ d(k, j).

The inverse table inv represents the multiplicative inverse of a digit, that is, the value that satisfies d(j, inv(j)) = 0.

The permutation table p applies a permutation to each digit based on its position in the number. This is actually a single permutation (1 5 8 9 4 2 7 0)(3 6) applied iteratively; i.e. p(i + j, n) = p(i, p(j, n)).

The Verhoeff checksum calculation is performed as follows:

  1. Create an array n out of the individual digits of the number, taken from right to left (rightmost digit is n0, etc.).
  2. Initialize the checksum c to zero.
  3. For each index i of the array n, starting at zero, replace c with d(c, p(i mod 8, ni)).

The original number is valid if and only if c = 0.

To generate a check digit, append a 0, perform the calculation: the correct check digit is inv(c).

04Examples

Generate a check digit for 236:

i ni p(i, ni) c
0000
1633
2331
3212

c is 2, so the check digit is inv(2), which is 3.

Validate the check digit in 2363:

i ni p(i, ni) c
0333
1631
2334
3210

c is zero, so the check is correct.

05Uses

The Verhoeff algorithm is used in a variety of systems, including:

Watch videos about Verhoeff algorithmExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Verhoeff algorithm, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.