Copyright © University of Cambridge. All rights reserved.

'Transposition Fix' printed from https://nrich.maths.org/

Show menu


Suppose an operator types a US Bank Check Code into a machine and transposes two adjacent digits (i.e. swops the order of two adjacent digits) will the machine pick up every error of this type? Does the same apply to ISBN numbers, will a machine detect transposition errors in these numbers?

Congratulations Andrei Lazanu, age 14, School No. 205, Bucharest, Romania and Robert Goudie, age 17, Madras College, Fife, Scotland for your solutions.

For the transposition in an ISBN number to go undetected, the sum from the two digits that swap must remain the same, or change by a multiple of 11, because then the check will give the same remainder when divided by 11, and so will still yield the check number.

Let $x$ and $y$ be any adjacent digits in the ISBN. To check whether the ISBN is valid, the first digit is multiplied by 10 and the next by 9, all the way through to the second last digit which is multiplied by 1. These are then summed.

So if $r$ is the number that $x$ is multiplied by, then $y$ is multiplied by $(r - 1)$. If $x$ and $y$ are transposed, then $y$ will be multiplied by $r$ and $x$ will be multiplied by $(r-1)$.

So for the check sum from the two digits to remain unchanged

$$\eqalign{ rx + (r-1)y &= ry + (r-1)x\cr rx - (r-1)x &= ry - (r-1)y\cr rx - rx + x &= ry - ry + y\cr x &= y}.$$

Therefore, for the error to be undetected these digits must be the same (which, in a way, means the digits have not been transposed).

If the sum of the two digits increases by 11 then

$$\eqalign{ rx + (r-1)y &= ry + (r-1)x + 11\cr rx - (r-1)x &= ry - (r-1)y + 11\cr rx - rx + x &= ry - ry + y + 11\cr x &= y + 11}.$$

This, however, is impossible, since $x$ and $y$ must be between 0 and 9 inclusive. Therefore, it is impossible to transpose two numbers in an ISBN without the check digit spotting it, unless the numbers are the same, in which case the numbers have not really been transposed.

The argument for US Bank numbers is the same, except that the coefficients in the check sum are 7, 3, 9, 7, 3, 9, 7, 3 and the check sum must be equivalent to the ninth digit mod 10. The coefficients here do not decrease by 1, the difference could be 4, 6 or 2, so let the difference in coefficients be $k$. Therefore

$$\eqalign{ rx + (r-k)y &= (r-k)x + ry\cr rx - (r-k)x &= ry - (r-k)y\cr kx&= ky \cr x&=y}.$$

Once again, the digits transposed must be equal for the check sum to remain the same. For the check sum to change by 10 would give $kx=ky \pm 10$. As these are whole numbers the only possibility is for $k=2$ when $x$ and $y$ differ by 5. For example 123856788 is a valid US Bank identification number with check sum 238 congruent to 8 mod 10 but the error in transposing the third and fourth digits to give 128356788 will go undetected because here the check sum is 248.