Eight Digits (solution)

by Kai Huang

Given the fact that each letter corresponds to one of eight digits, a natural guess is that the puzzle uses base 8 arithmetic. Attempting to solve the first part will confirm that this assumption is likely true since there’s exactly one solution.

One possible series of deductions for the first part is:

  1. P = 0    (by units digit of equation 4)
  2. Y = 0 or Y = 4    (by units digit of equation 2)
  3. Y = 4    (following the Y = 0 path from deduction 2 leads us to the trivial result where all letters are 0)
  4. M = 4    (by units digit of equation 6)
  5. V = G    (by units digit of equation 1)
  6. Q = Z    (by tens digit of equation 1 and tens digit of equation 6)
  7. V = Q + 4 or V = Q + 5    (by tens digit of equation 3, depending whether units digit carries)
  8. V = Q + J + 1    (by tens digit of equation 2, note the units digit carries)
  9. J = 3 or J = 4    (by deductions 7 and 8)
  10. J ≡ 2V (mod 8)    (by units digit of equation 3)
  11. J = 4    (by deductions 9 and 10, where deduction 10 tells us J is even)
  12. V = 2 or 6    (by deduction 10)
  13. V = 6 and G = 6    (by deductions 8 and 12, where deduction 8 tells us V ≥ J)
  14. Q = 1 and Z = 1    (by deduction 8)
  15. C = 7    (by tens digit of equation 1)
  16. B = 2X    (by tens digit of equation 4)
  17. X ≡ B + K (mod 8)    (by units digit of equation 5)
  18. -X ≡ K (mod 8)    (by deductions 16 and 17)
  19. K = X + 1 or K = X + 2    (by tens digit of equation 5, depending whether units digit carries)
  20. K = 5 and X = 3    (by deductions 18 and 19)
  21. B = 6    (by deduction 16)

Thus, the first part gives the correspondences P = 0, Q = Z = 1, X = 3, J = M = Y = 4, K = 5, B = G = V = 6, and C = 7.

Looking at the last computation, you’ll notice that it uses only letters not used in the first part. Thus, you’ll have to figure out how to map the rest of the alphabet to octal digits as well. By some combination of:

the aha that you’ll hopefully reach is that the statement “every letter below corresponds to one of eight digits” has two relevant meanings in this puzzle. It means both:

One particularly natural way to correspond every letter to 1 of 8 fingers is according to which letters are typed by each finger on a qwerty keyboard (minus the thumbs). Indeed, the correspondences from the first part match up with this way of associating fingers. Specifically, two letters are assigned the same octal digit if and only if they are typed by the same finger.

Once the aha is reached, you can extend the octal digit correspondences to the whole alphabet: A = Q = Z = 1, S = W = X = 3, C = D = E = 7, B = F = G = R = T = V = 6, H = J = M = N = U = Y = 4, I = K = 5, L = O = 2, and P = 0.

Now you can make the last computation:

FINAL + ANSWER - DTIFW - EDUHO = 65412 + 143376 - 76563 - 77442 = 32563

The result 32563 only corresponds to one English word, SLITS, which is the answer to this puzzle.