Sequences and Series
A sequence is simply an ordered list of numbers that follows a rule, and a series is what you get when you add those numbers up. That sounds modest, but this one idea underlies compound interest, computer algorithms, the way a bouncing ball eventually comes to rest, and even the number . Once you can spot the pattern in a list and turn it into a formula, you stop adding numbers one painful term at a time and start reasoning about infinitely many of them at once.
This page will teach you to recognize the two most important families — arithmetic and geometric — to write sums compactly with sigma notation, to compute partial sums with formulas instead of a calculator, and to understand the beautiful, counterintuitive fact that an infinite list of positive numbers can add up to a finite total.
Learning Objectives
- Distinguish a sequence from a series, and a term from a sum.
- Identify arithmetic sequences (constant difference) and geometric sequences (constant ratio) and write their th-term formulas.
- Read and write sums using sigma () notation.
- Compute partial sums of arithmetic and geometric series with closed-form formulas.
- Determine when an infinite geometric series converges, and find its sum.
- Apply these tools to real problems in finance, physics, and computing.
Quick Answer
A sequence lists terms; a series adds them. An arithmetic sequence adds a fixed number each step, so its th term is . A geometric sequence multiplies by a fixed ratio each step, so . The sum of the first terms is for arithmetic series and for geometric series. An infinite geometric series converges only when , and then its sum is . Sigma notation, written , is just shorthand for "add these terms up."
Where It Came From
People needed to add long, patterned lists long before they had formulas, and the history of this topic is really the history of clever shortcuts.
The most famous story belongs to Carl Friedrich Gauss. As a schoolboy around 1785, he was reportedly told (as busywork) to add every whole number from 1 to 100. Within moments he wrote the answer: 5050. He had noticed that if you pair the first and last terms (), the second and second-to-last (), and so on, you get 50 pairs each summing to 101, giving . That single insight — pairing terms from the ends inward — is the arithmetic series formula, and it works for any arithmetic list, not just 1 to 100. The need it answered was ancient and practical: surveyors, accountants, and astronomers constantly faced sums of evenly spaced quantities.
Infinite series carry an even older and more philosophical origin: the paradoxes of Zeno of Elea (around 450 BCE). Zeno argued that motion is impossible. To walk across a room you must first cover half the distance, then half of what remains, then half of that, forever — infinitely many steps, so (he claimed) you can never arrive. The resolution, made rigorous only two thousand years later, is that the infinite sum adds up to exactly 1. Infinitely many pieces can have a finite total. Mathematicians from Archimedes (who summed geometric series to find areas) through the calculus of Newton, Leibniz, and finally the rigorous limit definitions of Cauchy in the 1820s turned Zeno's puzzle into the modern theory of convergence.
Arithmetic Sequences and Series
An arithmetic sequence changes by the same amount, the common difference , at every step: has . Because each term is the first term plus some number of steps of size :
To sum the first terms, use Gauss's pairing trick. Writing the sum forwards and backwards and adding gives , so:
Worked example. Find the 20th term and the sum of the first 20 terms of
Here and . The 20th term is
The sum is
Check Gauss's own case with this formula: , , so . It matches.
Geometric Sequences and Series
A geometric sequence multiplies by the same common ratio at each step: has . The th term is
For the sum, there is an elegant trick. Write , multiply the whole thing by , and subtract. Almost every term cancels, leaving:
Worked example. Sum the first 6 terms of
Here , , :
Verify by hand: . Exactly right.
Notice how geometric growth explodes: six terms already exceed 700, while an arithmetic sequence with the same start would still be small. This gap is why geometric reasoning governs compound interest, population growth, and viral spread.
Sigma Notation
Writing out long sums is tedious and error-prone, so mathematicians use the capital Greek letter sigma, , as a compact instruction to add:
The letter is the index, it starts at the number below the sigma and increases by 1 up to the number on top. For example:
Here each term is generated by plugging into the rule . This is an arithmetic series with , , so the formula confirms .
Two facts make sigma notation powerful: you can pull constants out, , and split sums, . These let you rewrite messy sums into standard forms you already know how to compute.
Infinite Geometric Series and Convergence
What happens if a geometric series never stops? Look again at in the sum formula. If , then shrinks toward 0 as grows without bound. Dropping that vanishing term leaves a finite total:
If the terms do not shrink, the partial sums grow forever, and the series diverges (no finite sum).
Worked example — Zeno resolved. The distances form a geometric series with and . Since :
The infinitely many steps add to exactly 1 — you do cross the room. Zeno's paradox dissolves the moment you accept that an unending sum can converge.
Worked example — repeating decimals. The decimal equals , a geometric series with and :
So — a satisfying proof that repeating decimals are always fractions.
Real-World Applications
- Compound interest and savings. Depositing a fixed amount each year that then earns interest produces a geometric series; the "future value of an annuity" formula is exactly in disguise.
- Loan and mortgage payments. Amortization schedules sum geometric series to figure out the level monthly payment that pays off a balance.
- Physics of damped motion. A bouncing ball that rebounds to a fixed fraction of its previous height travels a total distance found by an infinite geometric series.
- Computer science. Analyzing algorithms (like the cost of doubling an array, or a binary search's halving) relies on geometric-series sums; so does estimating the total work in recursive processes.
- Medicine. Drug dosing at regular intervals reaches a steady-state concentration modeled by a convergent geometric series.
Common Mistakes
-
Confusing a sequence with a series. A sequence is the list (); a series is the sum (). Why it matters: the questions "what is the 10th term?" and "what is the sum of 10 terms?" have completely different answers. Correction: decide first whether you are locating a term () or totaling terms ().
-
Applying the infinite-sum formula when . Students plug into even for, say, , getting a negative "sum" for a series of growing positive terms. Why it's wrong: the series diverges, so no finite sum exists; the formula is meaningless there. Correction: always check before using .
-
Off-by-one errors in . People multiply by instead of . Why it's wrong: the first term needs zero steps of , the th term needs steps. Correction: test on term 1 — the formula must return , which it does only with .
Comparison and Connections
Arithmetic and geometric progressions are the two building blocks; the key contrast is addition versus multiplication.
| Feature | Arithmetic | Geometric |
|---|---|---|
| Step rule | add | multiply by |
| th term | ||
| Partial sum | ||
| Infinite sum | never converges (unless all terms 0) | converges to if |
| Growth shape | straight line | exponential curve |
Arithmetic sequences are the discrete cousins of linear functions; geometric sequences are the discrete cousins of exponential functions. Infinite series are the gateway to calculus, where limits, Taylor series, and integrals all rest on summing infinitely many pieces.
Practice Questions
Recall
State the th-term formula for an arithmetic sequence and for a geometric sequence. Answer: Arithmetic: . Geometric: .
Understanding
Explain why the infinite series has no finite sum, while does. Guidance: The first has so ; terms grow and partial sums increase without bound (diverges). The second has so ; terms shrink to 0 and the sum converges to .
Application
A theater has 18 seats in the front row and 3 more in each successive row, for 25 rows. How many seats total? Answer: Arithmetic with , , . Then , and seats.
Analysis
A ball is dropped from 10 m and each bounce reaches 60% of the previous height. Find the total vertical distance it travels before coming to rest. Guidance: It falls 10 m, then each bounce goes up and back down. Up-distances form a geometric series with , , summing to ; the down-distances after the first drop equal the same 15. Total m.
FAQ
Is zero a valid common ratio? No — if every term after the first is 0, which is trivial, and the formulas assume (and for the partial-sum formula, since that would divide by zero).
Can a common difference or ratio be negative? Yes. A negative gives a decreasing arithmetic sequence (). A negative gives an alternating geometric sequence (); it still converges if , e.g. .
What's the difference between and ? is a partial sum — the total of the first terms (always finite). (no subscript) is the infinite sum, the limit of as , which only exists for convergent series.
Why does the index letter not matter? In the is a "dummy variable" — using or instead gives the identical sum. It's just a counter that disappears once the addition is done.
How is this connected to calculus? Calculus is built on infinite sums. Integrals are limits of sums of infinitely many thin slices, and functions like and are defined by infinite series. Mastering convergence here is direct preparation.
Quick Revision
- Sequence = ordered list; series = sum of the list.
- Arithmetic: constant difference ; ; .
- Geometric: constant ratio ; ; .
- Infinite geometric sum: , only if ; otherwise it diverges.
- Sigma notation: means add terms from to .
- Gauss's trick: pair ends inward. Zeno's series .
Related Topics
Prerequisites
Related Topics
- Exponential and logarithmic functions (geometric growth in continuous form)
- Linear functions (the continuous analog of arithmetic sequences)
Next Topics
- Limits and convergence in Calculus
- Compound interest in Financial Mathematics