🧮 Algebra
🚀Sequences and Series
Arithmetic walks at a constant pace, geometric doubles as it runs, and Gauss summed 1 to 100 with one pairing trick — numbers in a queue follow rules too.
Numbers lined up in order form a sequence: 1, 3, 5, 7, … each number is a term. Number Patterns asked you to guess where such queues head; here we take the two most common squads all the way — arithmetic and geometric — and meet the big umbrella for adding: Σ.
Arithmetic sequences: steady steps
When every term exceeds the previous one by the same number, the line is an arithmetic sequence, and that number is the common difference d. Watch 3, 7, 11, 15, …:
- Recursion view: next term = current term + 4;
- Explicit view: the n-th term is , so the 10th term is .
Recursion is the drill command "stay glued to the person ahead"; the explicit formula is a roster — call a number, find the person directly, no counting from the front.
Gauss's pairing shortcut
What is 1 + 2 + … + 100? Legend says young Gauss answered 5050 before the teacher finished reading. His trick: pair the ends.
100 numbers make 50 pairs, each pair summing to 101. In general, the arithmetic series sums to
Check it on a small squad
The arithmetic sequence 3, 7, 11, …, 39 has 10 terms. Formula: . Honest pairing: 3+39=42, 7+35=42, all five pairs are 42, . Two roads, one answer.
Geometric sequences: faster and faster
When every term is multiplied by the same number, the line is a geometric sequence, and that number is the common ratio r. For 1, 2, 4, 8, … the explicit form is , and the 20th term already reaches . The ever-growing curve of compound interest is exactly geometric growth.
Folding a sheet 42 times
A sheet 0.1 mm thick doubles in thickness with every fold: after 42 folds it is mm — about mm, some 440000 km, beyond the 380000 km to the Moon. No sheet can actually survive 42 folds, but the numbers truly dare to grow.
Reading the summation sign Σ
The capital Greek letter Σ (sigma) is shorthand for "add them all up":
Read it as "let k run from 1 to 100 and add each one". k is the summation index: the subscript is the start, the superscript the finish. One more read: . And some sums never quite arrive: keeps approaching 2 yet always falls a little short — the story of infinite series continues in Limits.
Check yourself
Quick quiz
1. What is the 20th term of the arithmetic sequence 5, 9, 13, …?
2. What is 1 + 2 + 3 + … + 100?
3. What is the rule of the sequence 2, 6, 18, 54, …?