Series — Missing Numbers & Odd One Out

Module 01 — Lesson 0001 · In Depth · 55 min

Series is not guessing — it is hypothesis testing. Propose a rule (difference, ratio, power, prime, interleave), test it on the next gap, and the one that survives all gaps is the answer. Speed comes from checking in the right order.

1. Fundamental Patterns — Instant Recall

If you cannot instantly list squares to 20², cubes to 10³, and primes to 50, you will burn time before you even start. Memorize these first.

a) Arithmetic Progression (AP) — Constant Difference d

Add or subtract a fixed d.

Odd-one-out cue: AP gaps are identical. If one gap is off, that term is the odd one. E.g., 3,5,7,9,12 → 12 breaks +2.

b) Geometric Progression (GP) — Constant Ratio r

Cue: GP explodes fast. If numbers double or halve each step, test ratio first before differences.

c) Power Series — Squares and Cubes

n 1 2 3 4 5 6 7 8 9 10
1 4 9 16 25 36 49 64 81 100
1 8 27 64 125 216 343 512 729 1000

Variations are more common than pure powers:

If you see 27, 64, 125, 216 — cubes. 17, 26, 37 — n²+1. Spot the base, then the adjustment.

d) Primes and Factorials

Primes in order: 2,3,5,7,11,13,17,19,23,29,31,37,41,43,47…

2. Advanced Difference Patterns — When First Difference Fails

Difference ladder — Diff1 and Diff2 Sequence: 2 → 6 → 12 → 20 → 30 → ? 2 6 12 20 30 42 +4 +6 +8 +10 +12 +2 +2 +2 +2 Diff2 constant → quadratic (n²+n)
First differences (+4,+6,+8…) still vary — second differences (+2) lock the rule → next +12 → 42.

a) Two-Stage (Double) and Triple Difference

If first differences are irregular, take differences of differences.

Speed test: compute Diff1 in your head left to right; if it is arithmetic (adds 2 each time), you have the answer without writing Diff2.

b) Multiplication + Addition — prev × a + b (Most Common Advanced)

Each term = prev × x + y. x and y may be constant, or x itself may increase.

Constant: 3,7,15,31… → ×2+1 → 31×2+1=63.
Changing addend: 2,5,11,23,47… → ×2+1, ×2+1… actually constant too; try 4,6,13,27… → pattern ×2−2, ×2+1, ×2+1 — verify by solving: if 4→6, guess ×1+2? Test forward.
How to find x,y: assume T₂ = T₁·x + y and T₃ = T₂·x + y → two equations, solve for x,y. Example: 5,11,23 → 11=5x+y, 23=11x+y → subtract → 12=6x → x=2 → y=1. So rule ×2+1 confirmed. Apply to next: 23×2+1=47.

c) Increasing Multiplication

Multiplier itself forms a sequence: ×1, ×2, ×3, ×4…

Example: 2,2,4,12,48… → ×1, ×2, ×3, ×4 → next ×5 → 240.

Variant with addition: ×1+1, ×2+2, ×3+3… — check both × and + ladders.

3. Complex and Special Series

a) Fibonacci and Its Variants

Each term = sum of two preceding: 0,1,1,2,3,5,8,13…

b) Interleaved (Alternating) — Two or Three Series in One

Interleaved series — split into odd and even positions 10 pos1 2 pos2 12 pos3 4 pos4 14 pos5 6 pos6 16 pos7 → +2 each (A: 10,12,14…) +2 each (B: 2,4,6…)
Odd positions (blue) and even positions (amber) are two independent APs. Up-down oscillation is the giveaway.

Cue: numbers go up-down-up-down or small-large-small-large → split. For three interleaved series, check positions 1,4,7… / 2,5,8… / 3,6,9…

c) Digit Logic and Composite Tricks

d) Odd One Out vs Missing Number — Different Mindset

Missing number: find the single rule that fits all given terms, then extend it.
Odd one out: find the rule that fits most terms — the one that breaks it is the answer. You must test at least two hypotheses.
Example: 2, 4, 8, 16, 32, 48 → GP ×2 fits 2→32, 48 breaks it (should be 64) → 48 is odd one. But also check if alternative rule (×2, ×2, ×2, ×2, ×1.5) could justify 48 — rule simplicity matters; GP with one exception is preferred over irregular multipliers.

4. Strategies to Solve — Decision Order

Step What to check How Likely pattern
1 Rapid growth? Ratio >2, jumps like ×3,×5 or 1→8→27 GP, power, ×a+b with large ×
2 Slow & steady? Compute Diff1 AP or double diff
3 Irregular up/down? Plot mentally, split odds/evens Interleaved / alternating signs
4 Special numbers visible? 27,64,125,49,17,19 Cubes, squares, primes
5 Digit behavior? Sum/product of digits vs value Digit logic
Time-boxing: Spend ≤20s per step. If Diff1 not constant and Diff2 not constant within 20s, abandon differences and test ratio / interleaved. Most students waste time forcing differences on a GP series.
Series decision flow Look at gaps & growth Rapid? GP / Power / n×a+b Slow? Diff / Double-diff Irregular? Interleaved check 27,64,17,19 → cubes/primes Diff2 constant? → n²+n split odd/even
First diagnose growth, then pick the tool — don't force differences on a GP.

5. Summary & Common Traps

Pattern Signature Odd-one-out trap
AP Equal gaps One gap off by 1
GP Equal ratios One ratio breaks (48 vs 64)
Power 27,64,125 present n² vs n²+1 confusion
Double diff Diff2 constant Miscounting Diff1
n×a+b Moderate exponential Assuming x,y constant when y changes
Interleaved Up-down or small-large oscillation Forgetting to split, forcing single rule

2,4,6,8,? — next?

3,6,12,24,? — next?

2,6,12,20,30,? — next?

3,7,15,31,? (×2+1) — next?

2,2,4,12,48,? (×1,×2,×3,×4) — next?

0,1,1,2,3,5,8,? (Fibonacci) — next?

10,2,12,4,14,6 — interleaved, next?

Fast growth 2,18,162 → likely?

1,4,9,16,25,? — next?

2,3,5,7,11,? — next?

2,4,8,16,32,48 — odd one out?

1,2,6,24,120,? — next?

Notes

Fundamental :-

AP ⇒ +d constant ; GP ⇒ ×r constant ; Powers ⇒ n²/n³ (and n²±1, n³±1) ; Primes ⇒ 2,3,5,7,11… ; Factorial ⇒ n! ; 2ⁿ ⇒ 1,2,4,8…

Advanced Diff :-

Double diff ⇒ Diff1 irregular → Diff2 constant (eg 2,6,12,20,30→Diff2 +2→42) ; Triple → cubic

n×a+b ⇒ prev×x+y — solve via two equations to find x,y (eg 5,11,23→×2+1→47)

Increasing × ⇒ ×1,×2,×3 (eg 2,2,4,12,48→240)

Special :-

Fibonacci ⇒ sum of 2 prev (0,1,1,2,3,5,8→13) ; Tribonacci ⇒ 3 prev

Interleaved ⇒ odd/even are two series (10,2,12,4…→10,12,14 & 2,4,6) ; 3-way also exists

Digit logic ⇒ sum/product of digits / spelling / reverse

Odd one out ⇒ rule fits most, one breaks it — test both hypotheses, pick simplest rule

Strategy :-

1) Fast growth → ×/power ; 2) Slow → diff ; 3) Irregular → alternate ; 4) See 27/64→cubes, 17/19→primes ; 5) Digit logic last

Time-box 20s per check ; test rule on last gap before deciding

Traps :-

Forcing diff on GP ; mis-splitting interleaved ; assuming x,y constant when y changes ; odd-one where exception is actually second series start

Primary source: none pinned yet — drop your preferred video/book resource into RESOURCES.md and it will be linked here. Ask me anything that's unclear.

Next: Data Sufficiency →

Questions? Ask your agent — you can follow up on any concept, quiz answer, or get extra practice problems tuned to this module.