Borui Academy

Chapter 5

Sequences

数列 · arithmetic · geometric · recursive · sum techniques

Unit 5 · Sequences 数列

By the end of this chapter you can:

  1. Find the general term and partial sum of arithmetic and geometric sequences using standard formulas
  2. Decode a recurrence relation and compute terms by substitution or pattern recognition
  3. Apply 错位相减 (shift-and-subtract) and 裂项相消 (partial-fraction telescoping) to sum non-standard sequences
  4. Identify and compute arithmetic and geometric means between two numbers

Exam weight on past CSCA papers: ~10% (4–5 of 48 MCQs).


5.1 Arithmetic Sequences 等差数列

An arithmetic sequence (等差数列) is one where consecutive terms differ by a fixed constant dd called the common difference (公差).

an+1an=dfor all n1a_{n+1} - a_n = d \quad \text{for all } n \ge 1

Core formulas

Formula Expression Notes
General term 通项公式 an=a1+(n1)da_n = a_1 + (n-1)d linear in nn
Partial sum 前nn项和 Sn=n(a1+an)2S_n = \dfrac{n(a_1 + a_n)}{2} "first plus last times nn over 2"
Alternative sum Sn=na1+n(n1)2dS_n = na_1 + \dfrac{n(n-1)}{2}d useful when ana_n is unknown

🔑 SnS_n is quadratic in nn. If a problem gives you SnS_n and asks for ana_n, use an=SnSn1a_n = S_n - S_{n-1} (for n2n \ge 2) and check a1=S1a_1 = S_1 separately.

Identifying an AP from SnS_n: If Sn=An2+BnS_n = An^2 + Bn (no constant term), then {an}\{a_n\} is arithmetic with a1=A+Ba_1 = A + B and d=2Ad = 2A.

⚠️ Trap: If Sn=An2+Bn+CS_n = An^2 + Bn + C with C0C \ne 0, then {an}\{a_n\} is not arithmetic (check with a1=S1a_1 = S_1 vs an=SnSn1a_n = S_n - S_{n-1}).

Worked Example 5.1.A

In an arithmetic sequence, a3=7a_3 = 7 and a8=22a_8 = 22. Find the general term ana_n and the sum of the first 20 terms, S20S_{20}.

Solution.

Step 1 — find dd. Using an=a1+(n1)da_n = a_1 + (n-1)d:

a8a3=(81)d(31)d=5d=227=15    d=3.a_8 - a_3 = (8-1)d - (3-1)d = 5d = 22 - 7 = 15 \implies d = 3.

Step 2 — find a1a_1. a1=a32d=76=1a_1 = a_3 - 2d = 7 - 6 = 1.

Step 3 — write ana_n.

an=1+(n1)3=3n2.a_n = 1 + (n-1) \cdot 3 = 3n - 2.

Step 4 — compute S20S_{20}.

S20=20(a1+a20)2=20(1+58)2=10×59=590.S_{20} = \frac{20(a_1 + a_{20})}{2} = \frac{20(1 + 58)}{2} = 10 \times 59 = \boxed{590}.

🔑 Shortcut for amaka_m - a_k: the difference of terms mkm - k steps apart equals (mk)d(m-k) \cdot d. Here 83=58 - 3 = 5 steps, so a8a3=5da_8 - a_3 = 5d. This saves setting up two separate equations.


5.2 Geometric Sequences 等比数列

A geometric sequence (等比数列) has consecutive terms related by a fixed common ratio (公比) q0q \ne 0:

an+1an=qfor all n1.\frac{a_{n+1}}{a_n} = q \quad \text{for all } n \ge 1.

Core formulas

Formula Expression Condition
General term 通项公式 an=a1qn1a_n = a_1 \cdot q^{n-1} q0q \ne 0
Partial sum (standard) Sn=a1(1qn)1qS_n = \dfrac{a_1(1 - q^n)}{1 - q} q1q \ne 1
Partial sum (trivial) Sn=na1S_n = n a_1 q=1q = 1

⚠️ Never forget to check q=1q = 1 separately. Exam questions sometimes embed q=1q = 1 as one of the answer choices to catch students who blindly apply the q1q \ne 1 formula.

Equivalent sum formula: Sn=a1anq1qS_n = \dfrac{a_1 - a_n q}{1 - q} (for q1q \ne 1) — useful when you know the last term but not nn.

Worked Example 5.2.A

A geometric sequence has a1=3a_1 = 3 and a4=24a_4 = 24. Find qq, the general term, and S5S_5.

Solution.

Step 1 — find qq. a4=a1q3=3q3=24    q3=8    q=2.a_4 = a_1 q^{3} = 3q^3 = 24 \implies q^3 = 8 \implies q = 2.

Step 2 — write ana_n.

an=32n1.a_n = 3 \cdot 2^{n-1}.

Step 3 — compute S5S_5.

S5=3(125)12=3(132)1=3(31)1=93.S_5 = \frac{3(1 - 2^5)}{1 - 2} = \frac{3(1 - 32)}{-1} = \frac{3(-31)}{-1} = \boxed{93}.

🔑 Symmetric-product property: aman=apaqa_m \cdot a_n = a_p \cdot a_q whenever m+n=p+qm + n = p + q. In particular, ak2=akjak+ja_k^2 = a_{k-j} \cdot a_{k+j} (the middle term squared equals the product of symmetric neighbours). This mirrors the AP property 2ak=akj+ak+j2a_k = a_{k-j} + a_{k+j}.

⚠️ Sign of qq matters for alternating sequences. If q<0q < 0, terms alternate in sign. CSCA questions may ask which term is first negative or first exceeds a value — track sign carefully.


5.3 Recursive Sequences 递推数列

A recurrence relation (递推关系) defines each term from one or more previous terms. CSCA typically tests two types.

Type 1 — Linear first-order: an+1=pan+ca_{n+1} = p\,a_n + c

If c=0c = 0: the sequence is geometric with ratio pp.

If c0c \ne 0: introduce the fixed point LL satisfying L=pL+cL = pL + c, giving L=c1pL = \dfrac{c}{1-p}. Then bn=anLb_n = a_n - L is geometric with ratio pp.

an=pn1(a1L)+Lwhere L=c1p.a_n = p^{n-1}(a_1 - L) + L \qquad \text{where } L = \frac{c}{1-p}.

Type 2 — Read-pattern recurrences

Some recurrences are best solved by computing the first few terms and spotting a pattern (periodicity, AP, GP).

Worked Example 5.3.A

Given a1=1a_1 = 1 and an+1=2an+3a_{n+1} = 2a_n + 3, find a closed-form expression for ana_n.

Solution.

Find fixed point: L=pL+cL=2L+3L=3L = pL + c \Rightarrow L = 2L + 3 \Rightarrow L = -3.

Set bn=an(3)=an+3b_n = a_n - (-3) = a_n + 3. Then:

bn+1=an+1+3=(2an+3)+3=2(an+3)=2bn.b_{n+1} = a_{n+1} + 3 = (2a_n + 3) + 3 = 2(a_n + 3) = 2b_n.

So {bn}\{b_n\} is geometric with ratio 22 and b1=a1+3=4b_1 = a_1 + 3 = 4.

bn=42n1=2n+1    an=bn3=2n+13.b_n = 4 \cdot 2^{n-1} = 2^{n+1} \implies a_n = b_n - 3 = 2^{n+1} - 3.

an=2n+13\boxed{a_n = 2^{n+1} - 3}

Check: a1=43=1a_1 = 4 - 3 = 1 ✓; a2=2(1)+3=5=83a_2 = 2(1) + 3 = 5 = 8 - 3 ✓.

⚠️ Trap: When p=1p = 1, the recurrence an+1=an+ca_{n+1} = a_n + c is arithmetic (common difference cc), not geometric. The fixed-point method requires p1p \ne 1.

🔑 Pattern-spotting: if a recurrence looks like an+2=an+1+ana_{n+2} = a_{n+1} + a_n (Fibonacci-type), just list the first several terms. CSCA problems of this type always ask for a5a_5 or a6a_6, so 6 terms suffice.


5.4 Sum Techniques 数列求和方法

Standard AP and GP formulas don't cover products like n2nn \cdot 2^n or terms like 1n(n+1)\dfrac{1}{n(n+1)}. Two classic methods handle these.

Method 1 — 错位相减法 (Shift-and-Subtract)

Used for sums of the form (polynomial in n)qn\displaystyle\sum (\text{polynomial in } n) \cdot q^n where q1q \ne 1.

Idea: write SnS_n, then multiply by qq to get qSnqS_n, subtract, and most terms cancel when you shift the second series by one index.

Worked Example 5.4.A — 错位相减

Find Sn=k=1nk2k=12+24+38++n2nS_n = \displaystyle\sum_{k=1}^{n} k \cdot 2^k = 1\cdot2 + 2\cdot4 + 3\cdot8 + \cdots + n\cdot 2^n.

Solution.

Write the two shifted rows:

Sn=121+222+323++(n1)2n1+n2n(1)S_n = 1\cdot2^1 + 2\cdot2^2 + 3\cdot2^3 + \cdots + (n-1)\cdot 2^{n-1} + n\cdot 2^n \tag{1}

2Sn=121+122+223++(n2)2n1+(n1)2n+n2n+1(2)2S_n = \phantom{1\cdot2^1 +{}} 1\cdot2^2 + 2\cdot2^3 + \cdots + (n-2)\cdot 2^{n-1} + (n-1)\cdot 2^n + n\cdot 2^{n+1} \tag{2}

Subtract (1)(2)(1) - (2):

Sn=121+(21)22+(32)23++(n(n1))2nn2n+1-S_n = 1\cdot2^1 + (2-1)\cdot2^2 + (3-2)\cdot2^3 + \cdots + \bigl(n-(n-1)\bigr)\cdot 2^n - n\cdot 2^{n+1}

Sn=(2+22+23++2n)n2n+1-S_n = (2 + 2^2 + 2^3 + \cdots + 2^n) - n\cdot 2^{n+1}

The parenthesised sum is a GP with first term 2, ratio 2, nn terms:

2+22++2n=2(2n1)21=2n+12.2 + 2^2 + \cdots + 2^n = \frac{2(2^n - 1)}{2 - 1} = 2^{n+1} - 2.

Therefore:

Sn=(2n+12)n2n+1=(1n)2n+12.-S_n = (2^{n+1} - 2) - n\cdot 2^{n+1} = (1-n)\cdot 2^{n+1} - 2.

Sn=(n1)2n+1+2\boxed{S_n = (n-1)\cdot 2^{n+1} + 2}

Check n=1n=1: (0)4+2=2=121(0)\cdot4 + 2 = 2 = 1\cdot2^1 ✓. Check n=2n=2: (1)8+2=10=2+8(1)\cdot8 + 2 = 10 = 2 + 8 ✓.

🔑 错位相减 recipe in 3 steps:

  1. Write SnS_n, then write qSnq \cdot S_n shifted right by one term.
  2. Subtract. The "coefficient differences" in the middle all equal 1, leaving a pure GP.
  3. Sum the GP, then solve for SnS_n.

Method 2 — 裂项相消法 (Partial-Fraction Telescoping)

Used when each general term can be split into a difference of two simpler fractions whose successive pieces cancel.

Key identities to recognise:

1n(n+1)=1n1n+1,1n(n+k)=1k(1n1n+k).\frac{1}{n(n+1)} = \frac{1}{n} - \frac{1}{n+1}, \qquad \frac{1}{n(n+k)} = \frac{1}{k}\left(\frac{1}{n} - \frac{1}{n+k}\right).

Worked Example 5.4.B — 裂项相消

Find Sn=k=1n1k(k+1)S_n = \displaystyle\sum_{k=1}^{n} \dfrac{1}{k(k+1)}.

Solution.

Split each term:

1k(k+1)=1k1k+1.\frac{1}{k(k+1)} = \frac{1}{k} - \frac{1}{k+1}.

Write out the telescoping sum:

Sn=(112)+(1213)+(1314)++(1n1n+1).S_n = \left(1 - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \left(\frac{1}{3} - \frac{1}{4}\right) + \cdots + \left(\frac{1}{n} - \frac{1}{n+1}\right).

All interior fractions cancel in adjacent pairs. Only the very first and very last survive:

Sn=11n+1=nn+1.S_n = 1 - \frac{1}{n+1} = \boxed{\dfrac{n}{n+1}}.

🔑 Telescoping diagnostic: if the general term is a rational function of nn whose denominator factors into two linear terms differing by a constant kk, apply the 1k ⁣(1n1n+k)\dfrac{1}{k}\!\left(\dfrac{1}{n}-\dfrac{1}{n+k}\right) identity immediately.

⚠️ Three-factor denominators: 1n(n+1)(n+2)=12 ⁣(1n(n+1)1(n+1)(n+2))\dfrac{1}{n(n+1)(n+2)} = \dfrac{1}{2}\!\left(\dfrac{1}{n(n+1)} - \dfrac{1}{(n+1)(n+2)}\right). One more layer of telescoping, same idea.


5.5 Arithmetic and Geometric Means 等差中项与等比中项

Arithmetic mean 等差中项

If aa, MM, bb are three consecutive terms of an AP, then MM is the arithmetic mean (等差中项) of aa and bb:

2M=a+b    M=a+b2.2M = a + b \implies M = \frac{a+b}{2}.

Equivalently, Ma=bMM - a = b - M (equal common difference on both sides).

Geometric mean 等比中项

If aa, GG, bb are three consecutive terms of a GP, then GG is the geometric mean (等比中项) of aa and bb:

G2=ab    G=±ab.G^2 = ab \implies G = \pm\sqrt{ab}.

⚠️ Key constraint: ab>0ab > 0 is required for real GG (the two numbers must have the same sign). When the problem specifies G>0G > 0, take only the positive square root.

⚠️ Do not confuse the two means. A common CSCA trap: the exam gives a+ba + b and abab and asks which of aa, bb is the arithmetic vs geometric mean of two other numbers. Write both conditions and test each option.

AM–GM inequality (bonus fact for "compare" questions)

For positive numbers: a+b2ab\dfrac{a + b}{2} \ge \sqrt{ab}, with equality iff a=ba = b.

Worked Example 5.5.A

Three positive numbers aa, GG, bb satisfy both the AP condition and the GP condition simultaneously. What can you conclude?

Solution.

AP condition: 2G=a+b2G = a + b.

GP condition: G2=abG^2 = ab.

Treating aa and bb as unknowns with known sum s=2Gs = 2G and product p=G2p = G^2, they are roots of:

t22Gt+G2=(tG)2=0.t^2 - 2G\,t + G^2 = (t - G)^2 = 0.

The only solution is a=b=Ga = b = G.

a=b=G — all three numbers are equal.\boxed{a = b = G \text{ — all three numbers are equal.}}

🔑 Shortcut rule: a sequence that is simultaneously arithmetic and geometric must be constant.


Try it! 自测练习

Q1. An AP has a5=11a_5 = 11 and a12=32a_{12} = 32. Find a1a_1 and dd.

Q2. A GP has a2=6a_2 = 6 and a5=48a_5 = 48. Find qq and S6S_6.

Q3. Given a1=2a_1 = 2 and an+1=3an4a_{n+1} = 3a_n - 4, find a closed-form expression for ana_n.

Q4. Use 裂项相消 to evaluate k=1101k(k+2)\displaystyle\sum_{k=1}^{10} \frac{1}{k(k+2)}.

Q5. Two positive numbers have arithmetic mean 55 and geometric mean 44. Find the two numbers.

Answers & explanations
  1. Terms 12 and 5 are 125=712 - 5 = 7 steps apart, so 7d=3211=21d=37d = 32 - 11 = 21 \Rightarrow d = 3. Then a1=a54d=1112=1a_1 = a_5 - 4d = 11 - 12 = -1.

  2. a5=a2q348=6q3q3=8q=2a_5 = a_2 \cdot q^{3} \Rightarrow 48 = 6q^3 \Rightarrow q^3 = 8 \Rightarrow q = 2. So a1=a2/q=3a_1 = a_2/q = 3.
    S6=3(261)21=3×63=189S_6 = \dfrac{3(2^6 - 1)}{2 - 1} = 3 \times 63 = 189.

  3. Fixed point: L=3L4L=2L = 3L - 4 \Rightarrow L = 2. Set bn=an2b_n = a_n - 2; then bn+1=3bnb_{n+1} = 3b_n, geometric ratio 3.
    b1=22=0b_1 = 2 - 2 = 0... so bn=0b_n = 0 for all nn? Check: a1=2a_1 = 2 gives b1=0b_1 = 0, and bn=03n1=0b_n = 0 \cdot 3^{n-1} = 0 for all nn, i.e. an=2a_n = 2 (constant). Verify: an+1=3(2)4=2=ana_{n+1} = 3(2) - 4 = 2 = a_n ✓. So an=2a_n = 2 for all nn.
    (This is the edge case where a1a_1 equals the fixed point — the sequence is constant!)

  4. Use 1k(k+2)=12 ⁣(1k1k+2)\dfrac{1}{k(k+2)} = \dfrac{1}{2}\!\left(\dfrac{1}{k} - \dfrac{1}{k+2}\right).
    Split into odd and even kk: the odd-index partial sum telescopes to 12 ⁣(1111)=511\dfrac{1}{2}\!\left(1 - \dfrac{1}{11}\right) = \dfrac{5}{11}, and the even-index partial sum to 12 ⁣(12112)=524\dfrac{1}{2}\!\left(\dfrac{1}{2} - \dfrac{1}{12}\right) = \dfrac{5}{24}.
    Total: 12 ⁣(511+524)11\dfrac{1}{2}\!\left(\dfrac{5}{11} + \dfrac{5}{24}\right) \cdot \dfrac{1}{1}... more carefully:
    k=110=12[(113)+(1214)++(19111)+(110112)]=12 ⁣(1+12111112)=12175132=175264\displaystyle\sum_{k=1}^{10} = \dfrac{1}{2}\left[\left(1 - \dfrac{1}{3}\right) + \left(\dfrac{1}{2} - \dfrac{1}{4}\right) + \cdots + \left(\dfrac{1}{9} - \dfrac{1}{11}\right) + \left(\dfrac{1}{10} - \dfrac{1}{12}\right)\right] = \dfrac{1}{2}\!\left(1 + \dfrac{1}{2} - \dfrac{1}{11} - \dfrac{1}{12}\right) = \dfrac{1}{2}\cdot\dfrac{175}{132} = \dfrac{175}{264}.

  5. a+b=10a + b = 10 and ab=16ab = 16. Roots of t210t+16=0t^2 - 10t + 16 = 0: (t2)(t8)=0(t-2)(t-8) = 0. The two numbers are 2\mathbf{2} and 8\mathbf{8}.


📌 Chapter summary

Topic Key formulas / methods
Arithmetic sequences 等差数列 an=a1+(n1)da_n = a_1 + (n-1)d; Sn=n(a1+an)2S_n = \tfrac{n(a_1+a_n)}{2}; SnS_n is quadratic in nn
Geometric sequences 等比数列 an=a1qn1a_n = a_1 q^{n-1}; Sn=a1(1qn)1qS_n = \tfrac{a_1(1-q^n)}{1-q} (q1q\ne1); check q=1q=1 separately
Recursive sequences 递推数列 an+1=pan+ca_{n+1} = pa_n + c: find fixed point L=c/(1p)L = c/(1-p), reduce to GP; p=1p = 1 gives AP
错位相减 (shift-subtract) SnS_n with (poly)qn(\text{poly})\cdot q^n: write SnS_n and qSnqS_n, subtract, sum the remaining GP
裂项相消 (telescoping) 1n(n+k)=1k ⁣(1n1n+k)\tfrac{1}{n(n+k)} = \tfrac{1}{k}\!\left(\tfrac{1}{n}-\tfrac{1}{n+k}\right); write all terms, cancel pairs
Arithmetic mean 等差中项 M=a+b2M = \tfrac{a+b}{2}; equivalently 2M=a+b2M = a+b
Geometric mean 等比中项 G=±abG = \pm\sqrt{ab} (ab>0ab > 0); equivalently G2=abG^2 = ab

What's next → Unit 6 introduces plane vectors, where the dot-product formula ab=abcosθ\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos\theta echoes the GM identity in a geometric setting.