Arithmetic & Geometric Sequences
Add the same amount every step and you get a straight line of dots; multiply by the same factor and you get a curve that explodes.
A function on the counting numbers
A sequence is a list of numbers in order: a1, a2, a3, … It is really a function — feed in a position n, get out a term an — except its domain is restricted to the positive integers 1, 2, 3, … That restriction makes a sequence discrete: there is no a2.5, so a sequence is always plotted as separate dots, never connected by a smooth line.
Two patterns of change show up constantly: adding the same amount each step, and multiplying by the same amount each step. They look similar at first glance but behave completely differently as n grows.
Explicit vs. recursive
The explicit formula computes any term directly from n, without needing any earlier term — useful for jumping straight to, say, a100. The recursive formula defines a term only in relation to the one before it, so it must always be paired with a starting value, the seed a1; without that seed, a recursive rule describes a pattern of change but not a single actual sequence.
- Use the explicit formula \( a_n = a_1 + (n-1)d \) with n = 8.
- Substitute: \( a_8 = 4 + (8-1)\times 3 = 4 + 7\times 3 \).
- Compute: \( 4 + 21 = 25 \).
- Explicit formula: \( a_n = a_1 \cdot r^{\,n-1} \), so \( a_6 = 5\times 2^{5} = 5\times 32 = 160 \).
- Since r = 2 ≠ 1, use \( S_n = \dfrac{a_1(1-r^n)}{1-r} \) with n = 6.
- \( S_6 = \dfrac{5(1-2^6)}{1-2} = \dfrac{5(1-64)}{-1} = \dfrac{5(-63)}{-1} \).
Two very different growth patterns
Because an arithmetic sequence adds the same amount repeatedly, its terms grow linearly — plot an against n and the dots line up on a straight line. A geometric sequence, multiplying repeatedly, grows (or shrinks) exponentially — the dots start out looking almost flat and then bend sharply upward, the same “knee” shape you saw with exponential growth models. That connection is not a coincidence: a geometric sequence is exactly the discrete, term-by-term version of continuous exponential growth.
Check your understanding
- A sequence is a discrete function defined only at positive-integer positions n — never join its terms with a smooth curve.
- Arithmetic: constant common difference d, explicit aₙ = a₁ + (n − 1)d, recursive aₙ = aₙ₋₁ + d seeded at a₁.
- Geometric: constant common ratio r, explicit aₙ = a₁·r^(n−1), recursive aₙ = r·aₙ₋₁ seeded at a₁.
- Arithmetic sequences grow linearly; geometric sequences grow exponentially — the same 'knee' shape seen in exponential growth.
- The explicit formula always uses (n − 1), not n; a geometric infinite sum exists only when |r| < 1.