Introduction
In a Double / Alternate Letter Series, two (or more) alphabetic sub-sequences are interleaved. Each sub-sequence follows its own rule (for example: forward by +1, backward by -1, or jumps of +n), and the overall series alternates between them.
These questions test your ability to split the sequence into its component patterns and solve each independently before recombining the result.
Pattern: Double / Alternate Letter Series
Pattern
The key idea: split the sequence into two (or more) alternating sub-series and identify the progression in each.
Formula:
Treat letters as positions: A = 1, B = 2, …, Z = 26 and apply standard arithmetic progressions to each sub-series:
n-th term of sub-series = a1 + (k - 1) × d
where a1 is the first term of that sub-series, d is the common difference, and k counts positions inside the sub-series (not the full series).
Step-by-Step Example
Question
Find the next letter in the series: A, Z, B, Y, C, X, D, ?
Solution
-
Step 1: Split into sub-series
Odd-position letters (1st, 3rd, 5th, 7th): A, B, C, D.
Even-position letters (2nd, 4th, 6th, 8th): Z, Y, X, ?. -
Step 2: Identify the pattern in each sub-series
Odd sub-series: A(1) → B(2) → C(3) → D(4) → increases by +1 each step.
Even sub-series: Z(26) → Y(25) → X(24) → decreases by -1 each step. -
Step 3: Apply the rule to find the missing term
Next even-position letter after X(24) = 24 - 1 = 23 → Letter = W. -
Final Answer:
W -
Quick Check:
Odd positions: A, B, C, D (↑+1). Even positions: Z, Y, X, W (↓-1) ✅
Quick Variations
1. Forward / Forward but different gaps: A, C, B, D, C, E → two forward sequences with different step sizes.
2. Forward / Backward: A, Z, C, X, E, V → odd positions +2, even positions -2.
3. Letter-number alternation combined: A, 1, C, 3, E, 5 → letters follow +2, numbers follow +2.
4. More than two sub-series (three-way alternation): A, M, Z, B, N, Y, C, O, X → split into three sequences.
Trick to Always Use
- Step 1 → Convert letters to numeric positions (A=1 … Z=26).
- Step 2 → Separate odd and even positions (or however many interleaved sequences) into groups.
- Step 3 → Find the common difference for each group individually.
- Step 4 → Calculate the next term for the appropriate sub-series and convert back to a letter.
Summary
Summary
In Double / Alternate Letter Series problems:
- Always split the sequence into its alternating sub-series first.
- Work out the progression (common difference) inside each sub-series.
- Apply the correct sub-series rule to the missing position.
- Convert between letters and numeric positions where it simplifies arithmetic.
Example to remember: A, Z, B, Y, C, X, D, W → Odd: +1 (A→D), Even: -1 (Z→W)
