Borui Academy

Chapter 2

Series Basics, Geometric & p-Series

Partial sums, geometric formula, p-series, n-th term, telescoping

Chapter 2 — Series Basics, Geometric Series, p-Series

By the end of this chapter you will:

  1. Define series convergence rigorously via partial sums
  2. Decide convergence of a geometric series and find its sum
  3. Decide convergence of a p-series
  4. Use the n-th term test as a one-look diverge-detector
  5. Handle telescoping series

2.1 What is a Series? — The Partial-Sum Idea

Picture this: you are slicing an apple. First slice takes half (12\frac{1}{2}), second takes half of what's left (14\frac{1}{4}), third takes half again (18\frac{1}{8})…

Adding all the slices:
S=12+14+18+116+S = \frac{1}{2} + \frac{1}{4} + \frac{1}{8} + \frac{1}{16} + \cdots

You sense the total approaches 11 (because eventually the entire apple is sliced). That is what we mean by convergence of an infinite series.

Formal definition (the partial-sum approach):

The series n=1an converges    the partial sums SN=n=1Nan converge\text{The series } \sum_{n=1}^{\infty} a_n \text{ converges} \iff \text{the partial sums } S_N = \sum_{n=1}^{N} a_n \text{ converge}

So:

  1. Form the partial sum SN=a1+a2++aNS_N = a_1 + a_2 + \cdots + a_N (this is a sequence).
  2. Check whether limNSN\lim_{N\to\infty} S_N exists.

🔑 Key insight: a series is just the limit of a sequence of partial sums. Every tool from Chapter 1 carries over.

🎵 Audio 1 — Partial sums explainedaudio/ch2_01_partial_sum.mp3


2.2 Geometric Series — A BC Must-Memorize

Form:
n=0arn=a+ar+ar2+ar3+\sum_{n=0}^{\infty} a r^n = a + ar + ar^2 + ar^3 + \cdots

Here aa is the first term and rr is the common ratio.

Convergence test

Condition Conclusion
r<1\lvert r\rvert < 1 Converges to a1r\dfrac{a}{1-r}
r1\lvert r\rvert \ge 1 Diverges

Derivation (you should know this)

SN=a+ar+ar2++arN1S_N = a + ar + ar^2 + \cdots + ar^{N-1}

Multiply both sides by rr:
rSN=ar+ar2++arNrS_N = ar + ar^2 + \cdots + ar^{N}

Subtract:
SNrSN=aarNSN=a(1rN)1rS_N - rS_N = a - ar^N \Rightarrow S_N = \frac{a(1 - r^N)}{1 - r}

When r<1\lvert r\rvert < 1, rN0r^N \to 0, so SNa1rS_N \to \dfrac{a}{1-r}.

Geometric series convergence — segments halving toward S = 2

🎵 Audio 2 — Geometric series formula and derivationaudio/ch2_02_geometric.mp3

Examples — Recognize and Sum

Example 1: n=032n\displaystyle\sum_{n=0}^{\infty} \frac{3}{2^n}.

Recognize: a=3a = 3, r=12r = \frac{1}{2}. Since r<1\lvert r\rvert < 1, converges. Sum =311/2=6= \dfrac{3}{1 - 1/2} = 6.

Example 2: n=12n3n1\displaystyle\sum_{n=1}^{\infty} \frac{2^n}{3^{n-1}}.

Rewrite to align indices:
=n=122n13n1=n=12(23)n1= \sum_{n=1}^{\infty} 2 \cdot \frac{2^{n-1}}{3^{n-1}} = \sum_{n=1}^{\infty} 2 \left(\frac{2}{3}\right)^{n-1}

First term (n=1n=1) =2= 2, r=23r = \frac{2}{3}. Sum =212/3=6= \dfrac{2}{1 - 2/3} = 6.

🔑 Strategy: when rr is hidden, factor out coefficients and shift indices to match n=0n=0 or n=1n=1.

⚠️ Trap: the starting index changes the first term aa. The same general term 12n\frac{1}{2^n} has a=1a=1 when starting from n=0n=0 but a=12a=\frac{1}{2} when starting from n=1n=1 — sums differ by a factor of 2.


2.3 p-Series — The Second Must-Memorize

Form:
n=11np\sum_{n=1}^{\infty} \frac{1}{n^p}

Convergence test

Condition Conclusion
p>1p > 1 Converges
p1p \le 1 Diverges

Three classics (memorize)

Series pp Conv/Div Note
1n\sum \frac{1}{n} 1 Diverges The "harmonic series" — counterintuitive
1n2\sum \frac{1}{n^2} 2 Converges Sum =π26= \frac{\pi^2}{6} (Basel problem)
1n\sum \frac{1}{\sqrt{n}} 0.5 Diverges p=1/21p = 1/2 \le 1

🔑 Counterintuitive point: the harmonic series has terms going to 0, yet the sum diverges to infinity. So "terms tend to 0" does not guarantee convergence. The n-th term test only detects divergence — never convergence.

🎵 Audio 3 — p-series and the harmonic surpriseaudio/ch2_03_pseries.mp3

Sketch of why

Compare the series with the integral 1xpdx\int_1^\infty x^{-p}\,dx. The integral converges precisely when p>1p > 1, and the integral test (Chapter 3) makes this rigorous.


2.4 The n-th Term Test — One-Way Divergence Detector

Theorem: if limnan0\lim_{n\to\infty} a_n \ne 0 (including non-existent), then an\sum a_n diverges.

Intuition: to add infinitely many numbers and stop somewhere finite, the terms eventually have to shrink to 0. Otherwise you keep adding nonzero pieces, and the total flies off.

How to use it (notice the asymmetry!)

🔑 One-way theorem:

  • liman0\lim a_n \ne 0 \Rightarrow series diverges ✅ (usable)
  • liman=0\lim a_n = 0 \Rightarrow series may or may not converge ❌ (no conclusion)

The harmonic series is the canonical reminder: terms 0\to 0 yet diverges.

Examples

Example 1: n=1n2n+1\displaystyle\sum_{n=1}^{\infty} \frac{n}{2n+1}.

Term limit 120\to \frac{1}{2} \ne 0, so diverges. ✅

Example 2: n=1(1)n\displaystyle\sum_{n=1}^{\infty} (-1)^n.

(1)n(-1)^n oscillates between ±1\pm 1, no limit, so diverges. ✅

🎵 Audio 4 — One-way nature of the n-th term testaudio/ch2_04_nthterm.mp3


2.5 Telescoping Series

A telescoping series is one whose general term splits as an=bnbn+1a_n = b_n - b_{n+1} (or some other adjacent-cancellation form).

Signature: when you write the partial sum, almost every term cancels with the next, leaving just a head and tail.

Example

Find n=11n(n+1)\displaystyle\sum_{n=1}^{\infty} \frac{1}{n(n+1)}.

Step 1 — Partial fraction split:
1n(n+1)=1n1n+1\frac{1}{n(n+1)} = \frac{1}{n} - \frac{1}{n+1}

Step 2 — Write the partial sum:
SN=(1112)+(1213)++(1N1N+1)S_N = \left(\frac{1}{1} - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \cdots + \left(\frac{1}{N} - \frac{1}{N+1}\right)

Almost everything cancels:
SN=11N+1S_N = 1 - \frac{1}{N+1}

Step 3 — Take the limit:
limNSN=10=1\lim_{N\to\infty} S_N = 1 - 0 = 1

So the series converges to 1. ✅

Telescoping cancellation — fractions striking out in adjacent pairs

🎵 Audio 5 — Telescoping patternaudio/ch2_05_telescoping.mp3

🔑 Recognition cues: terms involving 1n(n+k)\frac{1}{n(n+k)}, lnnn+1\ln\frac{n}{n+1}, or n+1n\sqrt{n+1}-\sqrt{n} — try splitting.


2.6 Mixed Examples (AP-Style)

Decide convergence; find the sum if it converges.

(a) n=0(25)n\displaystyle\sum_{n=0}^{\infty} \left(\frac{2}{5}\right)^n

(b) n=11n3/2\displaystyle\sum_{n=1}^{\infty} \frac{1}{n^{3/2}}

(c) n=12n2+13n2n\displaystyle\sum_{n=1}^{\infty} \frac{2n^2 + 1}{3n^2 - n}

(d) n=11n(n+2)\displaystyle\sum_{n=1}^{\infty} \frac{1}{n(n+2)}

Solutions:

(a) Geometric with r=2/5<1r = 2/5 < 1, converges. Sum =112/5=53= \dfrac{1}{1-2/5} = \dfrac{5}{3}.

(b) p-series with p=3/2>1p = 3/2 > 1, converges. (AP usually only asks for the verdict.)

(c) Term limit =230= \dfrac{2}{3} \ne 0, n-th term test → diverges.

(d) Telescoping: 1n(n+2)=12(1n1n+2)\dfrac{1}{n(n+2)} = \dfrac{1}{2}\left(\dfrac{1}{n} - \dfrac{1}{n+2}\right).

Partial sum:
SN=12[(113)+(1214)+(1315)+]S_N = \frac{1}{2}\left[\left(1 - \frac{1}{3}\right) + \left(\frac{1}{2} - \frac{1}{4}\right) + \left(\frac{1}{3} - \frac{1}{5}\right) + \cdots\right]

Surviving terms: 12(1+121N+11N+2)1232=34\dfrac{1}{2}\left(1 + \dfrac{1}{2} - \dfrac{1}{N+1} - \dfrac{1}{N+2}\right) \to \dfrac{1}{2}\cdot\dfrac{3}{2} = \dfrac{3}{4}. ✅

🎵 Audio 6 — Walkthrough of (a)–(d)audio/ch2_06_examples.mp3


2.7 Trap Alerts ⚠️

  1. The n-th term test only detects divergence — never convergence. When an0a_n \to 0 you must move on to other tests.
  2. A geometric series's first term depends on the starting index. n=0rn=11r\sum_{n=0}^\infty r^n = \frac{1}{1-r} vs. n=1rn=r1r\sum_{n=1}^\infty r^n = \frac{r}{1-r}.
  3. 1n\sum \frac{1}{n} diverges. This is one of the most-tested counterintuitive facts in BC.
  4. Don't mis-cancel a telescoping sum. Always expand the first few terms and the last few terms before jumping to the limit.
  5. r=1\lvert r\rvert = 1 in a geometric series → diverges, regardless of sign.

2.8 Mnemonic

"Geometric → check r\lvert r\rvert; p-series → compare with 1; term limit → divergence (one way); telescoping → split and cancel."


Media Inventory

File Purpose
audio/ch2_01_partial_sum.mp3 Partial sum definition
audio/ch2_02_geometric.mp3 Geometric series + derivation
audio/ch2_03_pseries.mp3 p-series + harmonic surprise
audio/ch2_04_nthterm.mp3 n-th term test (one-way)
audio/ch2_05_telescoping.mp3 Telescoping pattern
audio/ch2_06_examples.mp3 Mixed examples
audio/ch2_07_recap.mp3 Recap + mnemonic
images/ch2_geometric.png Geometric series visualization
images/ch2_telescoping.png Telescoping cancellation
images/ch2_pseries.png p-series convergence vs. divergence

🎵 Audio 7 — Chapter recapaudio/ch2_07_recap.mp3


End of chapter. Next: the full toolkit of convergence tests.