Cryptarithms

Summary: Mathematical puzzles where letters represent unique digits (0-9). Solve the equation to find the letter-to-digit mapping, then decode a word or phrase.

Example:

  SEND
+ MORE
------
 MONEY

Solution Process:

  1. M must be 1 (carry from thousands place)
  2. S must be 8 or 9 (to generate carry)
  3. From column analysis:
  4. Verification: 9567 + 1085 = 10652 [correct]

Decoding: If the puzzle asks to decode "MONEY" = 10652

Another Example:

  CAT
+ DOG
-----
 BIRD

Solution: C=7, A=2, T=9, D=6, O=5, G=3, B=8, I=1, R=4 (729 + 653 = 1382)

Multiplication Example:

   AB
x  C
-----
  DEF

Solution Process:

  1. AB is a 2-digit number, C is single digit, result is 3-digit
  2. So AB must be at least 10, and C at least 2 (10x2=20)
  3. Maximum: 99x9=891, so D can be 1-8
  4. Testing systematically:
  5. Solution: A=2, B=7, C=4, D=1, E=0, F=8
  6. Verification: 27 x 4 = 108 [correct]

Division Example:

    HI
   ----
FG | JKL

Find the values where a 2-digit number divided by another 2-digit gives result HI.

Example solution: 12 | 84 = 7 (F=1, G=2, J=8, K=4, H=0, I=7 -> but H can't be 0 in quotient) Better: 156 / 13 = 12 (J=1, K=5, L=6, F=1, G=3, H=1, I=2 - duplicates!)

Valid solution: 84 / 12 = 7 (if using single digit result)