3.3 Arithmetic and Geometric Sequences and Series

Key Takeaways

  • The explicit formula for an arithmetic sequence is a_n = a_1 + (n - 1)d.
  • The explicit formula for a geometric sequence is a_n = a_1 × r^(n-1).
  • The sum of a finite arithmetic series is S_n = (n / 2) × (a_1 + a_n).
  • A constant second difference in a sequence's terms indicates a quadratic pattern (n²).
  • The ratio of consecutive Fibonacci numbers approaches the Golden Ratio (phi ≈ 1.618).
Last updated: July 2026

Introduction to Sequences

A sequence is an ordered list of numbers, often following a specific pattern. Each number in the sequence is called a term. The first term is typically denoted as a₁, the second as a₂, and the nth term as aₙ. In middle school math, the two primary types of sequences studied are arithmetic and geometric. Understanding how to model these sequences recursively and explicitly is a crucial skill for algebraic thinking.

Arithmetic Sequences

An arithmetic sequence is a sequence of numbers in which the difference between any two consecutive terms is constant. This constant difference is called the "common difference," denoted by the letter d.

For example, consider the sequence: 5, 9, 13, 17, 21... Here, the first term a₁ is 5. To get from 5 to 9, we add 4. From 9 to 13, we add 4. The common difference d is 4.

Formulas for Arithmetic Sequences:

  1. Recursive Formula: A recursive formula defines the next term based on the previous term. For an arithmetic sequence, the recursive formula is: aₙ = aₙ₋₁ + d This translates to: "The current term equals the previous term plus the common difference."
  2. Explicit Formula: An explicit formula allows you to find any term in the sequence directly, without needing to know the preceding terms. The explicit formula for an arithmetic sequence is: aₙ = a₁ + (n - 1)d This formula is highly logical: to get to the nth term, you start at the first term (a₁) and add the common difference (d) exactly (n - 1) times.

If we want to find the 50th term of our example sequence (5, 9, 13...), we use the explicit formula: a₅₀ = 5 + (50 - 1)4 = 5 + (49)(4) = 5 + 196 = 201.

Geometric Sequences

A geometric sequence is a sequence of numbers where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the "common ratio," denoted by r.

For example, consider the sequence: 3, 6, 12, 24, 48... Here, the first term a₁ is 3. To get from 3 to 6, we multiply by 2. From 6 to 12, we multiply by 2. The common ratio r is 2.

Formulas for Geometric Sequences:

  1. Recursive Formula: aₙ = aₙ₋₁ × r This translates to: "The current term equals the previous term multiplied by the common ratio."
  2. Explicit Formula: aₙ = a₁ × r^(n-1) This means to find the nth term, you start at the first term and multiply it by the common ratio (n - 1) times, which is equivalent to raising r to the power of (n - 1).

If we want to find the 8th term of our example sequence (3, 6, 12...), we use the explicit formula: a₈ = 3 × 2^(8-1) = 3 × 2^7 = 3 × 128 = 384.

Missing Terms and Means

Sometimes, a sequence is presented with missing terms, such as 4, __, __, 28, where the sequence is known to be arithmetic. To find the missing terms (the arithmetic means), you can use the explicit formula. We know a₁ = 4 and a₄ = 28. 28 = 4 + (4 - 1)d 24 = 3d d = 8 So, the sequence is 4, 12, 20, 28. For geometric means, the process is similar but uses exponentiation. Given 2, __, __, 54, where the sequence is geometric: 54 = 2 × r³ 27 = r³ r = 3 So, the sequence is 2, 6, 18, 54.

Finite Arithmetic Series Sums

A series is the sum of the terms of a sequence. To find the sum of a finite arithmetic sequence, there is an elegant formula. According to mathematical lore, the young Carl Friedrich Gauss discovered this method when his teacher asked the class to sum the integers from 1 to 100. Gauss realized that if he paired the first and last numbers (1 + 100 = 101), the second and second-to-last (2 + 99 = 101), they all summed to the same value. There were 50 such pairs, so 50 × 101 = 5050.

This generalizes to the arithmetic series sum formula: Sₙ = (n / 2) × (a₁ + aₙ) Where Sₙ is the sum of the first n terms, a₁ is the first term, and aₙ is the nth term.

Pattern Recognition in Visual Formats

Sequences frequently appear on middle school assessments as visual dot or tile patterns. Students must learn to translate the visual growth into numerical sequences.

Linear Patterns: If a shape grows by adding the exact same number of blocks to its perimeter each step (e.g., a cross adding one block to each of its four arms), the sequence of the total number of blocks will be arithmetic. The first differences (the differences between consecutive terms) will be constant. These patterns map to linear equations.

Quadratic Patterns: Consider a pattern of squares. Step 1 is a 1x1 square (1 block). Step 2 is a 2x2 square (4 blocks). Step 3 is a 3x3 square (9 blocks). The sequence is 1, 4, 9, 16. The first differences are 3, 5, 7, which are not constant. However, if we take the second differences (the differences between the first differences: 5-3=2, 7-5=2), they are constant. A constant second difference indicates a quadratic pattern, meaning the explicit formula will involve n².

Detailed Worked Examples and Teaching Scenarios

Worked Example 1: Finding the Sum of a Geometric Series

While middle school often focuses on arithmetic sums, introducing finite geometric sums is excellent for advanced students. The formula for the sum of the first n terms of a geometric series is: S_n = a_1 * (1 - r^n) / (1 - r), where r is not equal to 1. Consider the sequence: 2, 6, 18, 54, 162... Find the sum of the first 8 terms. Here, a_1 = 2, r = 3, and n = 8. S_8 = 2 * (1 - 3^8) / (1 - 3) First, calculate 3^8. 3^4 = 81, so 3^8 = 81 * 81 = 6561. S_8 = 2 * (1 - 6561) / (-2) S_8 = 2 * (-6560) / (-2) S_8 = -13120 / -2 = 6560. The sum of the first 8 terms is 6,560. This highlights exponential growth; sums of geometric series get very large very quickly compared to arithmetic series.

Worked Example 2: Word Problems Involving Sequences

"A theater has 20 seats in the first row, 23 seats in the second row, 26 seats in the third row, and so on, for 15 rows. How many total seats are in the theater?" This is an arithmetic series problem. We need the sum of the first 15 terms. a_1 = 20, d = 3, n = 15. First, find the number of seats in the 15th row (a_15) using the explicit formula: a_15 = a_1 + (n - 1)d a_15 = 20 + (15 - 1)3 = 20 + (14)(3) = 20 + 42 = 62. Now use the sum formula: S_n = (n / 2) * (a_1 + a_n) S_15 = (15 / 2) * (20 + 62) S_15 = 7.5 * 82 = 615. There are 615 seats in total.

Teaching Scenario: The "Bouncing Ball" Model

To teach geometric sequences conceptually, use a physical demonstration of a bouncing ball. Drop a tennis ball from a height of 100 cm next to a meter stick. Have students record the height of each successive bounce. Suppose the ball bounces back to 80% of its previous height. Bounce 0 (Drop): 100 cm Bounce 1: 80 cm Bounce 2: 64 cm Bounce 3: 51.2 cm This forms a geometric sequence where a_1 = 100 (if we consider the drop as the first term) and r = 0.8. Ask students to predict the height of the 10th bounce using the explicit formula: a_10 = 100 * (0.8)^(10-1) = 100 * (0.8)^9 (0.8)^9 is approximately 0.134. So, a_10 is roughly 13.4 cm. This scenario connects abstract formulas to observable physical phenomena, making the math relevant and concrete. It also naturally introduces fractional common ratios, showing that geometric sequences can decrease (decay) as well as increase (grow).

Deep Dive: Fibonacci Sequence and the Golden Ratio

No study of sequences in middle school is complete without mentioning the Fibonacci sequence: 1, 1, 2, 3, 5, 8, 13, 21... The recursive formula is slightly different here because it relies on the TWO previous terms: F_n = F_{n-1} + F_{n-2} (for n > 2). Have students explore the ratio of consecutive Fibonacci numbers (F_n / F_{n-1}): 1/1 = 1 2/1 = 2 3/2 = 1.5 5/3 = 1.666... 8/5 = 1.6 13/8 = 1.625 21/13 = 1.615... As n gets larger, this ratio approaches a specific irrational number called the Golden Ratio (phi, approximately 1.618). You can then have students research where the Fibonacci sequence and Golden Ratio appear in nature, such as in the spirals of pinecones, sunflowers, and the shells of nautiluses. This cross-curricular connection to biology and art is highly engaging and demonstrates the profound, hidden patterns in the universe described by mathematics.

Modeling with Functions

Finally, it is crucial to connect sequences to functions. An arithmetic sequence is essentially a linear function whose domain is restricted to the natural numbers (1, 2, 3...). The common difference 'd' is the slope of the line. A geometric sequence is an exponential function restricted to the natural numbers, where the common ratio 'r' is the base of the exponential expression. Making this explicit connection helps students synthesize their knowledge across different domains of mathematics, preparing them for high school algebra.

Test Your Knowledge

What is the 30th term of the arithmetic sequence that begins with 12, 19, 26, 33...?

A
B
C
D
Test Your Knowledge

Which of the following represents the explicit formula for the geometric sequence 5, 15, 45, 135...?

A
B
C
D
Test Your Knowledge

A student analyzes a pattern of tiles and writes down the total number of tiles used in each step. The sequence is 2, 6, 12, 20, 30. Which of the following best describes this sequence?

A
B
C
D