Introduction
The multiplication puzzle is an excellent adventure in basic math over the set of nonnegative integers less than 10 under standard addition and multiplication modulo 10. A multiplication problem is shown with all digits replaced by letters. Your task is to guess which letter represents which number.
Strategy
In all multiplication puzzles, the following are true:
- There is a one-to-one correspondence between the elements of the set (ABCDEFGHIJ) and the ten integers 0 through 9.
- The puzzle, when interpreted in standard grade-school arithmetic notation, is mathematically correct.
I H H X H G ----------- H C I G C B J J ----------- E E C G GFor this particular example, the following are true:
- HxG = G (mod 10) That is because the units digits in the 2 multiplicands (H in IHH and G in HG), when multiplied, gives the result G (the units digit in HCIG).
- HxH = J (mod 10)
- I+J = G (mod 10)
- C+J = C (mod 10) (if there is no carry), or C+J+1=C (mod 10) (if there is a carry)
6 H H X H 5 ----------- H C 6 5 C B 9 9 ----------- E E C 5 5Now we see that 6HHx5 = HC65. From previous analysis, H is either 3 or 7. So H has to be 3. The rest of letters can be solved straight forward. So we solved the puzzle from mathmatical analysis without any gussing. The final solution is:
6 3 3 X 3 5 ----------- 3 1 6 5 1 8 9 9 ----------- 2 2 1 5 5