Cryptarithms and challenges
A cryptarithm is an arithmetic puzzle where the digits have been replaced by letters. Each letter stands for a distinct digit. Your job: figure out the digits so the arithmetic works. They are exactly as old as written arithmetic and still appear in newspapers today.
Concept
The most famous example is
S E N D
+ M O R E
---------
M O N E Y
Each letter is one of . Different letters stand for different digits. Solve!
Strategy 1: Carry analysis. Look at the leftmost column. Adding two single digits (each ) gives at most . So the leftmost column has at most a carry of . In the above puzzle, , where the leading of the answer must come from a carry. So .
Strategy 2: Use the units column. The rightmost letters tell you the last digit of the sum directly (possibly with a carry to the next column).
Strategy 3: Distinct digits constraint. Often you can rule out a letter being a particular digit because another letter has already claimed it.
For SEND + MORE = MONEY the unique solution (which you can find with some work) is:
Verify: . ✓
Strategy for any cryptarithm.
- Identify any letter forced to be (leading digit appearing as carry).
- Identify any letter forced to be (when adding two columns gives the same letter back, with a carry).
- Use the units column to constrain a small set of possibilities.
- Try those possibilities; check consistency with other columns.
Another classic.
A B C
+ A B C
+ A B C
+ A B C
-------
B B B B
Translating: . So . The right side is which is between and . The left side is which is between and . So , giving . And ; we need this to be a whole number with ? Let's check : , not integer. : , not integer. ? Hmm , this puzzle needs more constraint or it has no solution; cryptarithms are problem-specific.
Why this is good practice. Cryptarithms force you to think in modular and digit-by-digit ways. They use every divisibility and place-value idea from this chapter. Solving them is a strong test of the toolkit.
Worked examples
Example 1. Solve:
A B
+ B A
-----
C C
- .
- .
- So , giving .
- For example, : . ✓
Example 2. Find a digit so that
X X X
+ X X X
-------
6 6 6
- , so .
- . ✓
Example 3. Solve:
A 1
\times B
-----
9 A
(Multiplication, not addition.) , so , i.e., , so . Try : , not integer. : , not. : , so . Check: . ✓ So . But letters should be distinct usually , this puzzle does not have that constraint here.
Example 4. Solve (a 4-digit number whose first two are BA and last two are AB)?
This is harder; skip if time-pressed. Most class VIII cryptarithms only use addition.
Try it yourself
Solve each cryptarithm. Different letters represent different digits unless otherwise noted.
- , with single digits.
-
B A + B A ----- C A C -
1 A + 2 B ----- A B -
A B C \times 3 ----- B C A -
(Not all puzzles have solutions; show whether this one does.)T E N - O N E ----- T W O - Find the magic sum if a magic square uses -.
-
What does equal?A + B ----- A A -
Find (this one has multiple steps).X Y Z + X Y Z ------- Y Z Z 0
Activity / Insight
Cryptarithm club. With a friend, take turns inventing cryptarithms based on small English words (, ). Solve each other's puzzles. Discuss the strategies you each used. You will rediscover, on your own, that mathematicians call this kind of search-with-constraints a constraint-satisfaction problem , the same idea that powers Sudoku, scheduling apps, and even AI planning.