An infinite sum that has a finite answer, and the tests that decide which sums do. The BC unit that carries the most marks.
By the end of this chapter you can
Distinguish a sequence from a series
Apply the nth-term test and say what it cannot do
Recognise and sum a geometric series
Choose an appropriate convergence test
Adding infinitely many numbers should give infinity. Sometimes it does not, and
that is the whole subject.
21+41+81+161+⋯=1
n=1∑∞2−n=1
n=0∑∞2−n=2
checked by the build
Both are verified, and the difference between them is only where the sum starts
— which is worth noticing early, because an off-by-one in the index is the most
common arithmetic slip in this unit.
Sequence against series
A sequence is a list: a1,a2,a3,…
A series is the sum of a sequence: ∑an.
They converge for different reasons, and confusing them is fatal. The sequence
n1 converges — to zero. The series ∑n1 diverges — to infinity.
Same numbers, opposite answers.
A series converges when its partial sumsSN=∑n=1Nan approach
a limit. The series is the limit of a sequence — the sequence of partial sums,
not the sequence of terms.
The nth-term test
If limn→∞an=0, the series diverges.
n→∞limn1=0
n→∞lim(n+1n)=1
checked by the build
∑n+1n diverges, because its terms head for 1 rather than 0 —
you are eventually adding roughly 1 forever.
n=1∑∞n21=6π2
checked by the build
That is the convergent one, and its value — Euler’s famous result — is verified
above. The harmonic series ∑n1 has no such value, because it has no
sum.
Geometric series
The one family with a closed form, and therefore the one worth knowing cold:
n=0∑∞arn=1−rawhen ∣r∣<1
and diverges when ∣r∣≥1.
n=0∑∞(31)n=23
n=0∑∞(21)n=2
n=1∑∞(31)n=21
checked by the build
Compare the first and third: same ratio, different starting index, and the
answers differ by exactly the n=0 term, which is 1. Starting index is not
a detail.
Why ∣r∣<1. The partial sum is a1−r1−rN, and rN→0
exactly when ∣r∣<1. Outside that, rN grows or oscillates and nothing
settles.
Choosing a test
The series looks like
Try
arn
geometric — and you get the exact sum
np1
p-series: converges exactly when p>1
terms not going to zero
nth-term test, done
alternating signs
alternating series test
a messy rational function
limit comparison with its dominant behaviour
factorials or $n$th powers
ratio test
n=1∑∞n41=90π4
n=1∑∞n31=ζ(3)
checked by the build
Both are p-series with p>1, so both converge — and the contrast between
them is the point. The fourth-power sum has the tidy closed form
90π4. The cube sum has none: the best anyone can write is
ζ(3), which is a name for the number rather than a formula for it. It
is called Apéry’s constant, and proving it is even irrational took until 1978.
Writing the second claim as a decimal is what I tried first, and the checker
refused it — correctly, because a truncated decimal is not equal to the sum. It
would not prove the claim false either, which is exactly the unproved verdict
doing its job.
So: knowing a series converges is a different question from knowing its
value, and the exam almost always asks the first.
{
"question": "A student writes: 'The terms of ∑ 1/n go to zero, so the series converges.' What is wrong?",
"options": [
{
"text": "The nth-term test can only prove divergence; terms going to zero proves nothing",
"correct": true,
"why": "It is the converse error. ∑1/n is the harmonic series and diverges, despite its terms tending to zero — so the reasoning is invalid and the conclusion is also false."
},
{
"text": "The terms of 1/n do not actually go to zero",
"correct": false,
"why": "They do — 1/n → 0 is verified in this chapter. The premise is fine; the inference from it is not."
},
{
"text": "Nothing is wrong; ∑1/n converges to a finite value",
"correct": false,
"why": "The harmonic series diverges. Its partial sums grow like ln N — slowly, without bound, which is what makes it such a persuasive counterexample."
},
{
"text": "The student should have used the ratio test, which is the only valid test here",
"correct": false,
"why": "The ratio test is inconclusive for 1/n — the limit of the ratio is exactly 1. The p-series rule settles it: p = 1 is not greater than 1, so it diverges."
}
]
}