Learn
Decode numbers by converting each to its corresponding letter.
Number-to-letter decoding is the reverse of letter-to-number encoding. Given a sequence of numbers, convert each to the letter at that position in the alphabet: 1=A, 2=B, 3=C, etc. The key skill is quickly recognizing position values, especially for letters later in the alphabet.
1=A, 2=B, 3=C, ... 26=Z
- 19-21-14 = SUN
- 2-15-15-11 = BOOK
- 23-1-20-5-18 = WATER
How to recognize it
- Given numbers, asked to find the word
- Numbers are between 1 and 26
- Decode by finding the letter at each position
Common mistakes
- Confusing high numbers (is 20 T or U?)
- Not recognizing common patterns (15=O, 5=E)
- Mixing up single and double digit parsing
Step-by-step walkthrough
Decode the sequence 19-21-14
- 19 is the 19th letter of the alphabet = S
- 21 is the 21st letter of the alphabet = U
- 14 is the 14th letter of the alphabet = N
Answer: SUN