SSAT-UPPER-LEVEL-QUANTITATIVE • QUANTITATIVE

Identify patterns in numerical sequences.

Learn to decode the hidden rules that generate number sequences—an essential SSAT skill.

Historical Context & Motivation

Humans have been fascinated by number patterns for thousands of years. Ancient mathematicians noticed that certain arrangements of numbers followed predictable rules, and they used those rules to make calculations faster, predict astronomical events, and even design buildings. The study of numerical sequences—ordered lists of numbers generated by a specific rule—sits at the heart of algebra and forms the backbone of countless real-world applications, from computing loan payments to analyzing population growth.

~300 BCE
Euclid & Arithmetic Progressions
In Elements, the Greek mathematician Euclid studied sequences where each term increases by a constant amount, laying the groundwork for what we now call arithmetic sequences.
~628 CE
Brahmagupta's Summation Formulas
The Indian mathematician Brahmagupta developed formulas for summing arithmetic and geometric series, greatly accelerating calculations in astronomy and commerce.
1202
Fibonacci Publishes Liber Abaci
Leonardo of Pisa (Fibonacci) introduced the famous 1, 1, 2, 3, 5, 8, … sequence to Western Europe through a problem about rabbit populations, showing how sequences can model real-world growth.
1784
Gauss's Schoolboy Trick
The young Carl Friedrich Gauss reportedly summed the integers from 1 to 100 in seconds by recognizing a pattern: pairing 1 + 100, 2 + 99, and so on. This story illustrates the power of pattern recognition.
Modern Era
Sequences in Computing & Cryptography
Today, sequences underpin algorithms, data compression, encryption, and machine learning. Recognizing patterns quickly is a core skill tested on exams like the SSAT and SAT.

On the SSAT Upper Level, you will encounter problems that give you part of a sequence and ask you to find the next term, a missing term, or a general rule. The fundamental question is always the same: what operation, applied repeatedly, turns one term into the next? The sections that follow will give you a systematic toolkit for answering that question every time.

Core Principles & Definitions

Before diving into strategies, you need a clear vocabulary. A sequence is an ordered list of numbers, and each number in the list is called a term. We label terms with subscripts: a1 is the first term, a2 is the second, and an represents the general nth term. A pattern is the rule that connects consecutive terms—or connects any term's position number to its value.

1

Arithmetic Sequences

Each term is obtained by adding a constant (called the common difference, d) to the previous term. Example: 4, 7, 10, 13, … where d = 3.
2

Geometric Sequences

Each term is obtained by multiplying by a constant (called the common ratio, r). Example: 2, 6, 18, 54, … where r = 3.
3

Quadratic / Polynomial Sequences

The differences between terms are not constant, but the second differences (differences of differences) are constant. Example: 1, 4, 9, 16, … (perfect squares).
4

Fibonacci-Type Sequences

Each term is the sum of the two previous terms. Example: 1, 1, 2, 3, 5, 8, 13, …
5

Repeating (Cyclic) Sequences

A block of numbers repeats in a cycle. Example: 3, 7, 1, 3, 7, 1, 3, 7, 1, … (cycle length 3).
KEY TAKEAWAY
Think of a sequence like a playlist on shuffle that actually follows a secret rule. Your job is to be the detective who cracks the code. The difference table is your magnifying glass: subtract consecutive terms to see if the differences are constant (arithmetic), then check if the differences of the differences are constant (quadratic). If neither works, try dividing consecutive terms to spot a constant ratio (geometric).

Visual Explanation — The Difference Table

The difference table is the single most useful tool for identifying a sequence's pattern on the SSAT. You write out the terms, compute the first differences, and if those aren't constant, compute the second differences. The diagram below shows this technique applied to the sequence 2, 5, 10, 17, 26.

The cyan row shows the original terms. The violet row shows first differences (not constant, so it's not arithmetic). The pink row shows second differences, which are all 2—confirming a quadratic pattern.

Notice how the diagram works from top to bottom. If the first differences had all been equal, you would stop right there and declare the sequence arithmetic. Because they were not equal, you took another round of differences. When the second differences came out constant, you knew the pattern is quadratic. This layered approach works for higher-degree polynomial sequences, too—if the third differences are constant, the pattern is cubic, and so on.

Mathematical Framework

Once you've identified the type of sequence, you can write a formula for the nth term. Here are the key formulas you should know for the SSAT.

ARITHMETIC SEQUENCE — NTH TERM
aₙ = a₁ + (n − 1) × d
Where a₁ is the first term, d is the common difference, and n is the term number.
GEOMETRIC SEQUENCE — NTH TERM
aₙ = a₁ × r⁽ⁿ⁻¹⁾
Where a₁ is the first term and r is the common ratio (each term divided by the previous term).
QUADRATIC SEQUENCE — GENERAL FORM
aₙ = An² + Bn + C
If the second differences equal a constant k, then A = k/2. The values of B and C are found by substituting known terms (for example, a₁ and a₂) and solving the resulting system of equations.

On most SSAT problems you won't need to derive the full quadratic formula from scratch. Instead, you'll typically use the difference table to figure out the next first difference, add it to the last term, and that gives you the answer. The formulas above become more important when a problem asks for a term far down the sequence (like the 50th term), where adding one term at a time would be too slow.

💡 SSAT TIP
If you're stuck between arithmetic and geometric, try this quick check: subtract consecutive terms. If all results are the same, it's arithmetic. If not, divide consecutive terms. If all results are the same, it's geometric. If neither works, build the full difference table.

Detailed Breakdown — Sequence Types on the SSAT

Let's map out the major sequence types you'll encounter, with a decision flowchart to help you classify any sequence quickly. The SSAT favors arithmetic and geometric sequences, but quadratic, Fibonacci-type, and alternating sequences also appear. The visual below is your go-to reference.

Start at the top and follow the decision path. Check first differences first. If those aren't constant, check ratios. If ratios aren't constant either, check second differences. If none of these work, look for special patterns like Fibonacci or cyclic repetition.
Summary of major sequence types tested on the SSAT Upper Level.
Sequence TypeExampleKey IndicatorFormula / Rule
Arithmetic5, 11, 17, 23, 29, …Common difference d = 6aₙ = 5 + (n − 1) × 6
Geometric4, 12, 36, 108, …Common ratio r = 3aₙ = 4 × 3⁽ⁿ⁻¹⁾
Quadratic3, 8, 15, 24, 35, …2nd differences = 2aₙ = n² + 2n
Fibonacci-type2, 3, 5, 8, 13, 21, …Each term = sum of 2 before itaₙ = aₙ₋₁ + aₙ₋₂
Alternating1, −2, 4, −8, 16, …Ratio r = −2 (sign flips)aₙ = 1 × (−2)⁽ⁿ⁻¹⁾

Worked Example

Let's work through a complete problem from start to finish, using every technique from this lesson.

Find the 8th term of the sequence: 3, 7, 13, 21, 31, …
1
Step 1 — Compute First DifferencesSubtract each term from the next to get the first differences: 7 − 3 = 4, 13 − 7 = 6, 21 − 13 = 8, 31 − 21 = 10. The first differences are 4, 6, 8, 10—these are not constant, so the sequence is not arithmetic.
First differences: 4, 6, 8, 10 (not constant)
2
Step 2 — Compute Second DifferencesNow subtract consecutive first differences: 6 − 4 = 2, 8 − 6 = 2, 10 − 8 = 2. The second differences are all 2—constant! This tells us the sequence is quadratic.
Second differences: 2, 2, 2 → Quadratic pattern
3
Step 3 — Extend the Difference Table to Find the 6th, 7th, and 8th TermsSince the second difference is always 2, the next first difference is 10 + 2 = 12. So the 6th term is 31 + 12 = 43. Continuing: the next first difference is 12 + 2 = 14, so the 7th term is 43 + 14 = 57. Then the next first difference is 14 + 2 = 16, so the 8th term is 57 + 16 = 73.
6th term = 43, 7th term = 57, 8th term = 73
4
Step 4 — Verify with the Quadratic Formula (Optional Check)The general form is aₙ = An² + Bn + C. Since the second difference is 2, we know A = 2/2 = 1. Using a₁ = 3: 1(1)² + B(1) + C = 3, so B + C = 2. Using a₂ = 7: 1(4) + 2B + C = 7, so 2B + C = 3. Subtracting gives B = 1 and C = 1. Therefore aₙ = n² + n + 1. Checking: a₈ = 64 + 8 + 1 = 73. ✓ This confirms our answer.
aₙ = n² + n + 1 → a₈ = 73 ✓

Strategies, Strengths & Common Pitfalls

Different identification strategies work better for different sequence types. The table below compares three main approaches so you can choose the fastest one during the test.

Comparison of pattern-identification strategies
StrategyBest ForLimitation
Difference TableArithmetic, quadratic, and any polynomial sequence. Works on most SSAT problems.Does not directly reveal geometric or Fibonacci patterns.
Ratio CheckGeometric and alternating sequences where each term is a fixed multiple of the previous term.Fails when terms include zero or when the pattern is additive, not multiplicative.
Look-Back RuleFibonacci-type and recursive sequences where each term depends on earlier terms, not just the one before it.Requires trial and error; harder to write a closed-form formula.
⚠️ COMMON PITFALLS
The most common mistake is assuming every sequence is arithmetic just because it seems to increase steadily. Always compute the differences explicitly—your gut feeling can be tricked by sequences like 1, 2, 4, 7, 11, where the differences (1, 2, 3, 4) look almost constant but are actually increasing. Another trap: confusing the position number (n) with the term value (aₙ). If a problem says 'the 10th term,' make sure n = 10, not that the answer is 10.

Connection to Advanced Topics

Pattern recognition in sequences is not just a test-prep skill—it's the gateway to larger ideas in mathematics. The table below shows how the concepts you've learned connect to topics you'll see in Pre-Calculus, Calculus, and beyond.

How SSAT sequence concepts connect to advanced math
SSAT ConceptAdvanced Extension
Arithmetic sequence (constant difference)Linear functions — the graph of aₙ vs. n is a straight line with slope d
Geometric sequence (constant ratio)Exponential functions — models compound interest, population growth, radioactive decay
Quadratic sequence (constant 2nd differences)Quadratic functions and parabolas; connects to kinematics (distance = ½at²)
Summing sequences (series)Series and sigma notation in Pre-Calculus; leads to integral calculus
Fibonacci sequenceThe golden ratio (φ ≈ 1.618), recursive algorithms in computer science

When you eventually study calculus, you'll find that the difference table is a discrete version of taking a derivative. First differences correspond to the first derivative, second differences to the second derivative, and so on. Mastering these ideas now gives you a head start on some of the most powerful tools in higher mathematics.

Practice Problems

PROBLEM 1CONCEPTUAL
A sequence has first differences of 5, 5, 5, 5. What type of sequence is it, and what is the common difference?
PROBLEM 2BASIC CALCULATION
Find the 20th term of the arithmetic sequence: 8, 14, 20, 26, …
PROBLEM 3INTERMEDIATE
What is the next term in the sequence: 2, 6, 18, 54, …? Then find the 7th term.
PROBLEM 4APPLIED
A ball is dropped and bounces to heights of 80 cm, 56 cm, 39.2 cm, … on successive bounces. If this pattern continues, what height will it reach on the 5th bounce? Round to the nearest tenth.
PROBLEM 5CRITICAL THINKING
Consider the sequence: 0, 3, 8, 15, 24, 35, …. Determine the type of sequence, find the general formula for aₙ, and calculate the 12th term.

Lesson Summary

Identifying patterns in numerical sequences starts with a systematic approach. Given any sequence, your first move is to compute first differences. If they are constant, you have an arithmetic sequence with formula aₙ = a₁ + (n − 1)d. If not, check whether dividing consecutive terms yields a constant common ratio (indicating a geometric sequence with formula aₙ = a₁ × r⁽ⁿ⁻¹⁾). If the first differences are not constant, compute second differences; if those are constant, the pattern is quadratic (aₙ = An² + Bn + C).

For sequences that don't fit these categories, look for Fibonacci-type rules (each term = sum of two previous terms) or cyclic/alternating patterns. The difference table method is your most powerful general tool—it works on all polynomial sequences and quickly reveals the structure behind the numbers. With practice, you'll classify most SSAT sequences in under 30 seconds.

Varsity Tutors • ssat-upper-level-quantitative • Identify patterns in numerical sequences.