9.6 Number, Letter, and Alphanumeric Series
Key Takeaways
- Attack every series in the same diagnostic order: constant difference, constant ratio, constant second difference, interleaved positions, index-based operations, then digit operations.
- Constant second differences mean the series is quadratic, so 2, 5, 11, 20, 32 has second differences of +3 throughout and continues with 47.
- Convert every letter series to numbers before hunting for a pattern, anchoring on A=1, E=5, J=10, O=15, T=20, Y=25 and Z=26.
- Reverse-alphabet complements always sum to 27, which pairs A with Z, B with Y, and M with N.
- In word-to-code items, isolate a word by finding the single English word two sentences share and the single code word those same two sentences share.
9.6 Number, Letter, and Alphanumeric Series
Series items reward a procedure, not inspiration. Strong candidates do not stare at 4, 9, 19, 39 hoping for a flash of insight; they run the same checklist every time and stop as soon as one check succeeds. The checklist below is ordered by how often each pattern appears and by how cheap it is to test.
The diagnostic ladder
- Constant difference? Subtract each term from the next. Equal gaps mean an arithmetic series.
- Constant ratio? Divide each term by the previous one. Equal ratios mean a geometric series.
- Constant second difference? Take the differences of the differences. A constant here means the series is quadratic.
- Interleaved? If the gaps swing wildly or alternate in sign, split the series into odd-numbered and even-numbered positions and test each half separately.
- Operation tied to the position number? Check whether term $n$ involves $n$, $n^2$, $n^3$ or $n!$.
- Digit operations? Check the sum of the digits, the reverse of the digits, or the previous term with its digits added on.
- Sum of the two previous terms? That is the Fibonacci-style family.
- Cycling operations? Some series alternate between adding and multiplying, or step the added amount up each cycle.
Work the ladder in order. If step 1 fails, do not abandon subtraction — step 3 is built on the differences you already computed.
Tiers 1 and 2: arithmetic and geometric
An arithmetic progression adds a fixed common difference $d$, so $T_n = a + (n-1)d$. The series 7, 12, 17, 22, 27 has $a = 7$ and $d = 5$. A geometric progression multiplies by a fixed common ratio $r$, so $T_n = ar^{n-1}$. The series 4, 12, 36, 108 has $a = 4$ and $r = 3$. Beware the short-run coincidence: 2, 4, 8 fits both 'add double the last gap' and 'multiply by 2'. Never commit on three terms when four are available.
Tier 3: multi-tier difference analysis
When the gaps are unequal but move regularly, build a difference table. Consider 2, 5, 11, 20, 32, and find the next term.
| Row | $T_1$ | $T_2$ | $T_3$ | $T_4$ | $T_5$ | $T_6$ |
|---|---|---|---|---|---|---|
| Terms | 2 | 5 | 11 | 20 | 32 | 47 |
| First differences | — | +3 | +6 | +9 | +12 | +15 |
| Second differences | — | — | +3 | +3 | +3 | +3 |
The second differences are constant at +3, so the pattern is settled. Extend the first-difference row by adding 3 to get +15, then add that to the last term: $32 + 15 = 47$. A constant second difference always signals a quadratic rule, and here the closed form is
which returns 2, 5, 11, 20, 32, 47 for $n = 1$ to $6$. You will rarely need the closed form under time pressure — extending the difference table is faster — but knowing it exists tells you when to stop digging.
Tier 4: interleaved series
Two independent series can be woven together, one on the odd positions and one on the even positions. Take 7, 2, 10, 6, 13, 18, 16, ?
- Odd positions (1st, 3rd, 5th, 7th): 7, 10, 13, 16 — a constant difference of +3.
- Even positions (2nd, 4th, 6th): 2, 6, 18 — a constant ratio of 3.
The missing 8th term belongs to the even strand, so it is $18 \times 3 = 54$. The tell for an interleaved series is a gap sequence that lurches: here the raw gaps are −5, +8, −4, +7, +5, −2, which looks like noise until you split the strands.
Tier 5: series built on the position number
Commit these families to memory. Recognising the first four terms is usually enough.
| Family | Rule | First terms | Signature |
|---|---|---|---|
| Squares | $n^2$ | 1, 4, 9, 16, 25, 36, 49, 64, 81, 100 | gaps are the odd numbers 3, 5, 7, 9 |
| Cubes | $n^3$ | 1, 8, 27, 64, 125, 216, 343 | gaps 7, 19, 37, 61 |
| Primes | no divisor but 1 and itself | 2, 3, 5, 7, 11, 13, 17, 19, 23, 29 | 2 is the only even prime |
| Factorials | $n!$ | 1, 2, 6, 24, 120, 720 | ratios are 2, 3, 4, 5, 6 |
| Triangular | $\frac{n(n+1)}{2}$ | 1, 3, 6, 10, 15, 21, 28, 36 | gaps 2, 3, 4, 5, 6 |
| Shifted squares | $n^2 + 1$ | 2, 5, 10, 17, 26, 37 | one more than a square |
| Shifted squares | $n^2 - 1$ | 0, 3, 8, 15, 24, 35 | one less than a square |
Fibonacci-style series add the two previous terms: 5, 6, 11, 17, 28, 45, 73. The give-away is that each gap equals the term two places back.
Tier 8: cycling operations
Sometimes the operation itself changes on a schedule. Take 3, 5, 10, 14, 28, 34, ?
| Step | 3 → 5 | 5 → 10 | 10 → 14 | 14 → 28 | 28 → 34 | 34 → ? |
|---|---|---|---|---|---|---|
| Operation | +2 | ×2 | +4 | ×2 | +6 | ×2 |
Additions and doublings alternate, and the added amount climbs by 2 each cycle. The next operation is a doubling, so the answer is $34 \times 2 = 68$.
Missing terms in the middle
When the blank sits inside the series, work inward from both ends. For 6, 11, ?, 27, 38, the visible gaps are +5 at the start and +11 at the end. If the second differences are constant at +2, the gaps must read 5, 7, 9, 11, so the missing term is $11 + 7 = 18$. Verify forward as well: $18 + 9 = 27$ and $27 + 11 = 38$. A middle-blank answer that only checks in one direction is a wrong answer.
Letter series
Convert letters to numbers immediately. Nothing else in this topic causes more errors than miscounting the alphabet by one.
| Letter | A | B | C | D | E | F | G | H | I | J | K | L | M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Position | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| Letter | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |
| Position | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
Memorise seven anchors — A=1, E=5, J=10, O=15, T=20, Y=25, Z=26 — and you are never more than two steps from a known landmark.
- Fixed skip: B, E, H, K, N is 2, 5, 8, 11, 14, a constant +3.
- Increasing skip: C, F, J, O is 3, 6, 10, 15, with gaps +3, +4, +5, so the next gap is +6 and the next letter is position 21, U.
- Reverse-alphabet complement: a letter and its mirror always sum to 27, so A pairs with Z, B with Y, and M with N. Applying the complement to BOARD gives 27−2=25 (Y), 27−15=12 (L), 27−1=26 (Z), 27−18=9 (I), 27−4=23 (W), producing YLZIW.
- Mirrored series: A, Z, B, Y, C, X, D continues with W, since the odd positions climb from A and the even positions descend from Z.
Alphanumeric and mixed series
Split the letter strand from the number strand and solve them separately. In A1, C4, E9, G16, ? the letters run A, C, E, G at positions 1, 3, 5, 7 (a constant +2, so the next is position 9, I) while the numbers 1, 4, 9, 16 are the squares (so the next is 25). The answer is I25. In 2A, 5D, 10I, 17P, ? the numbers are $n^2 + 1$ giving 26, and the letters sit at positions 1, 4, 9, 16 — the squares again — so the next is position 25, Y, giving 26Y.
Coding and decoding
Three mechanisms cover almost every item.
- Shift cipher. Each letter moves a fixed number of places. If MANILA is coded as OCPKNC, every letter has moved two places forward (M→O, A→C, N→P, I→K, L→N, A→C). Applying the same rule, BAGUIO becomes DCIWKQ.
- Position substitution. Each letter becomes its alphabet number, so ADAMSON is 1-4-1-13-19-15-14. Variants add a constant or reverse the direction, so always test the first two letters before trusting the rule.
- Word-to-code mapping. Whole words are swapped for arbitrary code words with no letter-level relationship. Compare sentences in pairs. Given 'pina dor lek' means 'red jeepney fare', 'dor mek sul' means 'fare increase soon', and 'lek sul bara' means 'jeepney soon arrives': sentences one and two share only the English word fare and only the code word dor, so dor = fare. Sentences one and three share only jeepney and only lek, so lek = jeepney. Sentences two and three share only soon and only sul, so sul = soon. Everything else falls out: pina = red, mek = increase, bara = arrives.
A quick structural clue tells you which mechanism is in play. If the code has the same number of characters as the original word, it is almost certainly letter-for-letter. If it has the same number of words as the sentence, it is word-for-word.
Common traps
- Committing after two gaps. Three equal gaps is the minimum evidence for an arithmetic series, and four is safer.
- Missing an interleaved pattern because the raw gaps look random. Alternating signs are the signal to split the strands.
- Reading letters as a fixed skip when the skip is growing. Always write the position numbers.
- Assuming a mirrored letter pair without checking the sum of 27.
- Answering a middle-blank item after checking only the left side.
- Treating 1 as a prime number. The prime series begins 2, 3, 5, 7.
What number continues the series 5, 6, 11, 17, 28, 45, ___ ?
Which letter continues the series D, H, M, S, ___ ?
What number completes the series 9, 4, 13, 8, 17, 16, 21, 32, 25, ___ ?
In a certain code, MANILA is written as OCPKNC. How is BAGUIO written in the same code?