数列 · arithmetic · geometric · recursive · sum techniques
Unit 5 · Sequences 数列
By the end of this chapter you can:
Find the general term and partial sum of arithmetic and geometric sequences using standard formulas
Decode a recurrence relation and compute terms by substitution or pattern recognition
Apply 错位相减 (shift-and-subtract) and 裂项相消 (partial-fraction telescoping) to sum non-standard sequences
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 d called the common difference (公差).
an+1−an=dfor all n≥1
Core formulas
Formula
Expression
Notes
General term 通项公式
an=a1+(n−1)d
linear in n
Partial sum 前n项和
Sn=2n(a1+an)
"first plus last times n over 2"
Alternative sum
Sn=na1+2n(n−1)d
useful when an is unknown
🔑 Sn is quadratic in n. If a problem gives you Sn and asks for an, use an=Sn−Sn−1 (for n≥2) and check a1=S1 separately.
Identifying an AP from Sn: If Sn=An2+Bn (no constant term), then {an} is arithmetic with a1=A+B and d=2A.
⚠️ Trap: If Sn=An2+Bn+C with C=0, then {an} is not arithmetic (check with a1=S1 vs an=Sn−Sn−1).
Worked Example 5.1.A
In an arithmetic sequence, a3=7 and a8=22. Find the general term an and the sum of the first 20 terms, S20.
Solution.
Step 1 — find d. Using an=a1+(n−1)d:
a8−a3=(8−1)d−(3−1)d=5d=22−7=15⟹d=3.
Step 2 — find a1.a1=a3−2d=7−6=1.
Step 3 — write an.
an=1+(n−1)⋅3=3n−2.
Step 4 — compute S20.
S20=220(a1+a20)=220(1+58)=10×59=590.
🔑 Shortcut for am−ak: the difference of terms m−k steps apart equals (m−k)⋅d. Here 8−3=5 steps, so a8−a3=5d. This saves setting up two separate equations.
5.2 Geometric Sequences 等比数列
A geometric sequence (等比数列) has consecutive terms related by a fixed common ratio (公比) q=0:
anan+1=qfor all n≥1.
Core formulas
Formula
Expression
Condition
General term 通项公式
an=a1⋅qn−1
q=0
Partial sum (standard)
Sn=1−qa1(1−qn)
q=1
Partial sum (trivial)
Sn=na1
q=1
⚠️ Never forget to check q=1 separately. Exam questions sometimes embed q=1 as one of the answer choices to catch students who blindly apply the q=1 formula.
Equivalent sum formula:Sn=1−qa1−anq (for q=1) — useful when you know the last term but not n.
Worked Example 5.2.A
A geometric sequence has a1=3 and a4=24. Find q, the general term, and S5.
Solution.
Step 1 — find q.a4=a1q3=3q3=24⟹q3=8⟹q=2.
Step 2 — write an.
an=3⋅2n−1.
Step 3 — compute S5.
S5=1−23(1−25)=−13(1−32)=−13(−31)=93.
🔑 Symmetric-product property:am⋅an=ap⋅aq whenever m+n=p+q. In particular, ak2=ak−j⋅ak+j (the middle term squared equals the product of symmetric neighbours). This mirrors the AP property 2ak=ak−j+ak+j.
⚠️ Sign of q matters for alternating sequences. If q<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+c
If c=0: the sequence is geometric with ratio p.
If c=0: introduce the fixed pointL satisfying L=pL+c, giving L=1−pc. Then bn=an−L is geometric with ratio p.
an=pn−1(a1−L)+Lwhere L=1−pc.
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=1 and an+1=2an+3, find a closed-form expression for an.
Solution.
Find fixed point:L=pL+c⇒L=2L+3⇒L=−3.
Set bn=an−(−3)=an+3. Then:
bn+1=an+1+3=(2an+3)+3=2(an+3)=2bn.
So {bn} is geometric with ratio 2 and b1=a1+3=4.
bn=4⋅2n−1=2n+1⟹an=bn−3=2n+1−3.
an=2n+1−3
Check:a1=4−3=1 ✓; a2=2(1)+3=5=8−3 ✓.
⚠️ Trap: When p=1, the recurrence an+1=an+c is arithmetic (common difference c), not geometric. The fixed-point method requires p=1.
🔑 Pattern-spotting: if a recurrence looks like an+2=an+1+an (Fibonacci-type), just list the first several terms. CSCA problems of this type always ask for a5 or a6, so 6 terms suffice.
5.4 Sum Techniques 数列求和方法
Standard AP and GP formulas don't cover products like n⋅2n or terms like n(n+1)1. Two classic methods handle these.
Method 1 — 错位相减法 (Shift-and-Subtract)
Used for sums of the form ∑(polynomial in n)⋅qn where q=1.
Idea: write Sn, then multiply by q to get qSn, subtract, and most terms cancel when you shift the second series by one index.
Write Sn, then write q⋅Sn shifted right by one term.
Subtract. The "coefficient differences" in the middle all equal 1, leaving a pure GP.
Sum the GP, then solve for Sn.
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:
n(n+1)1=n1−n+11,n(n+k)1=k1(n1−n+k1).
Worked Example 5.4.B — 裂项相消
Find Sn=k=1∑nk(k+1)1.
Solution.
Split each term:
k(k+1)1=k1−k+11.
Write out the telescoping sum:
Sn=(1−21)+(21−31)+(31−41)+⋯+(n1−n+11).
All interior fractions cancel in adjacent pairs. Only the very first and very last survive:
Sn=1−n+11=n+1n.
🔑 Telescoping diagnostic: if the general term is a rational function of n whose denominator factors into two linear terms differing by a constant k, apply the k1(n1−n+k1) identity immediately.
⚠️ Three-factor denominators:n(n+1)(n+2)1=21(n(n+1)1−(n+1)(n+2)1). One more layer of telescoping, same idea.
5.5 Arithmetic and Geometric Means 等差中项与等比中项
Arithmetic mean 等差中项
If a, M, b are three consecutive terms of an AP, then M is the arithmetic mean (等差中项) of a and b:
2M=a+b⟹M=2a+b.
Equivalently, M−a=b−M (equal common difference on both sides).
Geometric mean 等比中项
If a, G, b are three consecutive terms of a GP, then G is the geometric mean (等比中项) of a and b:
G2=ab⟹G=±ab.
⚠️ Key constraint:ab>0 is required for real G (the two numbers must have the same sign). When the problem specifies G>0, take only the positive square root.
⚠️ Do not confuse the two means. A common CSCA trap: the exam gives a+b and ab and asks which of a, b 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: 2a+b≥ab, with equality iff a=b.
Worked Example 5.5.A
Three positive numbers a, G, b satisfy both the AP condition and the GP condition simultaneously. What can you conclude?
Solution.
AP condition: 2G=a+b.
GP condition: G2=ab.
Treating a and b as unknowns with known sum s=2G and product p=G2, they are roots of:
t2−2Gt+G2=(t−G)2=0.
The only solution is a=b=G.
a=b=G — 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=11 and a12=32. Find a1 and d.
Q2. A GP has a2=6 and a5=48. Find q and S6.
Q3. Given a1=2 and an+1=3an−4, find a closed-form expression for an.
Q4. Use 裂项相消 to evaluate k=1∑10k(k+2)1.
Q5. Two positive numbers have arithmetic mean 5 and geometric mean 4. Find the two numbers.
Answers & explanations
Terms 12 and 5 are 12−5=7 steps apart, so 7d=32−11=21⇒d=3. Then a1=a5−4d=11−12=−1.
a5=a2⋅q3⇒48=6q3⇒q3=8⇒q=2. So a1=a2/q=3. S6=2−13(26−1)=3×63=189.
Fixed point: L=3L−4⇒L=2. Set bn=an−2; then bn+1=3bn, geometric ratio 3. b1=2−2=0... so bn=0 for all n? Check: a1=2 gives b1=0, and bn=0⋅3n−1=0 for all n, i.e. an=2 (constant). Verify: an+1=3(2)−4=2=an ✓. So an=2 for all n. (This is the edge case where a1 equals the fixed point — the sequence is constant!)
Use k(k+2)1=21(k1−k+21). Split into odd and even k: the odd-index partial sum telescopes to 21(1−111)=115, and the even-index partial sum to 21(21−121)=245. Total: 21(115+245)⋅11... more carefully: k=1∑10=21[(1−31)+(21−41)+⋯+(91−111)+(101−121)]=21(1+21−111−121)=21⋅132175=264175.
a+b=10 and ab=16. Roots of t2−10t+16=0: (t−2)(t−8)=0. The two numbers are 2 and 8.
📌 Chapter summary
Topic
Key formulas / methods
Arithmetic sequences 等差数列
an=a1+(n−1)d; Sn=2n(a1+an); Sn is quadratic in n