7.4 Advanced Summation Techniques and Sequence Applications

Key Takeaways

  • Telescoping cancellation (裂项相消法) decomposes general terms into c_n = f(n+1) - f(n), causing all intermediate terms to collapse.
  • Multiply-and-subtract method (错位相减法) computes sums of arithmetico-geometric sequences c_n = (an+b)q^{n-1}, requiring careful exponent tracking.
  • Grouping summation (分组求和法) separates hybrid general terms into distinct arithmetic and geometric components.
  • Reverse pairing summation (倒序相加法) exploits functional symmetry f(x) + f(1-x) = C or sequence term pairing.
  • Sequence applications in Gaokao involve financial mathematics (compound interest, annuities) and sequence inequality proofs using telescoping bounds.
Last updated: July 2026

7.4 Advanced Summation Techniques and Sequence Applications

Summation of non-standard sequences is one of the highest-frequency question types in the Gaokao Mathematics comprehensive exam. This section details four core summation methods and their applications in mathematical modeling and inequality proofs.

1. Telescoping Cancellation Method (裂项相消法)

Fundamental Concept

If the general term $c_n$ can be decomposed into the difference of consecutive values of an auxiliary sequence $f(n)$:

cn=f(n+1)f(n)orcn=f(n)f(n+1)c_n = f(n+1) - f(n) \quad \text{or} \quad c_n = f(n) - f(n+1)

then the partial sum $S_n = \sum_{k=1}^n c_n$ collapses all interior terms:

Sn=(f(2)f(1))+(f(3)f(2))++(f(n+1)f(n))=f(n+1)f(1)S_n = (f(2) - f(1)) + (f(3) - f(2)) + \dots + (f(n+1) - f(n)) = f(n+1) - f(1)

Classic Telescoping Decomposition Archetypes

  1. Standard Rational Fraction: 1n(n+1)=1n1n+1\frac{1}{n(n+1)} = \frac{1}{n} - \frac{1}{n+1}
  2. General Linear Product Fraction: 1(an+b)(an+b+d)=1d(1an+b1an+b+d)\frac{1}{(an+b)(an+b+d)} = \frac{1}{d} \left( \frac{1}{an+b} - \frac{1}{an+b+d} \right)
  3. Radical Denominator Rationalization: 1n+1+n=n+1n(n+1+n)(n+1n)=n+1n\frac{1}{\sqrt{n+1} + \sqrt{n}} = \frac{\sqrt{n+1} - \sqrt{n}}{(\sqrt{n+1} + \sqrt{n})(\sqrt{n+1} - \sqrt{n})} = \sqrt{n+1} - \sqrt{n}
  4. Factorial Product Fraction: n(n+1)!=(n+1)1(n+1)!=1n!1(n+1)!\frac{n}{(n+1)!} = \frac{(n+1)-1}{(n+1)!} = \frac{1}{n!} - \frac{1}{(n+1)!}

2. Multiply-and-Subtract Method (错位相减法)

Applicable Type

Summation of an arithmetico-geometric sequence $T_n = \sum_{k=1}^n c_k$, where $c_k = a_k \cdot b_k$, with $(a_k)$ being an arithmetic sequence $a_k = a_1 + (k-1)d$ and $(b_k)$ a geometric sequence $b_k = b_1 q^{k-1}$ ($q \neq 0, 1$).

Rigorous Step-by-Step Derivation

Write out $T_n$ explicitly:

Tn=a1b1+a2(b1q)+a3(b1q2)++an(b1qn1)T_n = a_1 b_1 + a_2 (b_1 q) + a_3 (b_1 q^2) + \dots + a_n (b_1 q^{n-1})

Multiply the entire expression by the common ratio $q$ and shift terms by one position to align equal powers of $q$:

qTn=a1(b1q)+a2(b1q2)++an1(b1qn1)+an(b1qn)q T_n = \quad \quad a_1 (b_1 q) + a_2 (b_1 q^2) + \dots + a_{n-1} (b_1 q^{n-1}) + a_n (b_1 q^n)

Subtract $q T_n$ from $T_n$:

(1q)Tn=a1b1+(a2a1)b1q+(a3a2)b1q2++(anan1)b1qn1anb1qn(1-q) T_n = a_1 b_1 + (a_2 - a_1) b_1 q + (a_3 - a_2) b_1 q^2 + \dots + (a_n - a_{n-1}) b_1 q^{n-1} - a_n b_1 q^n

Since $a_k - a_{k-1} = d$ for all middle terms, the intermediate terms form a pure geometric series of $n-1$ terms:

(1q)Tn=a1b1+db1q(1qn11q)anb1qn(1-q) T_n = a_1 b_1 + d b_1 q \left( \frac{1 - q^{n-1}}{1 - q} \right) - a_n b_1 q^n

Finally, divide by $1-q$ to isolate $T_n$.

Gaokao Pitfall Alert: When performing multiply-and-subtract:

  1. Do not forget to multiply the final term $a_n b_1 q^{n-1}$ by $q$, obtaining $- a_n b_1 q^n$.
  2. Note that the middle geometric series contains $n-1$ terms, not $n$ terms.
  3. Remember to divide the final expression by $(1-q)$.

3. Grouping and Reverse Pairing Summation Methods

Grouping Summation Method (分组求和法)

When the general term $c_n$ is a linear combination of simpler terms $c_n = a_n \pm b_n$, where $a_n$ and $b_n$ are standard arithmetic or geometric terms, compute sums separately:

Sn=k=1nak±k=1nbkS_n = \sum_{k=1}^n a_k \pm \sum_{k=1}^n b_k

Reverse Pairing Method (倒序相加法)

When sequence terms exhibit symmetric structural properties relative to $n$, such as $c_k + c_{n+1-k} = C$ (constant), write $S_n$ forwards and backwards and add:

2Sn=k=1n(ck+cn+1k)=nC    Sn=nC22 S_n = \sum_{k=1}^n (c_k + c_{n+1-k}) = n \cdot C \implies S_n = \frac{n C}{2}

4. Sequence Applications & Inequality Proofs

Sequence concepts are widely applied in financial mathematics (annuities, compound interest growth $A_n = P(1+r)^n$, loan amortization) and sequence inequality proofs.

Common Bounding Strategies for Sequence Inequalities:

  1. Telescoping Bounding (裂项放缩): To prove $S_n < M$, bound $a_k < f(k) - f(k+1)$ and telescope.
    • Example: $\frac{1}{n^2} < \frac{1}{n(n-1)} = \frac{1}{n-1} - \frac{1}{n}$ for $n \ge 2$.
  2. Geometric Series Bounding (等比放缩): Bound terms by a geometric sequence $a_k \le C q^k$ with $|q| < 1$.
Loading diagram...
Summation Method Decision Tree

Worked Gaokao Exam Examples

Example 1 (Multiply-and-Subtract Method)

Problem: Given an arithmetic sequence $(a_n)$ with $a_1 = 1$ and $d = 2$, so $a_n = 2n-1$. Let $b_n = 2^n$. Find the partial sum $T_n = \sum_{k=1}^n a_k b_k$.

Solution:

  1. Write $T_n$ explicitly: Tn=121+322+523++(2n1)2nT_n = 1 \cdot 2^1 + 3 \cdot 2^2 + 5 \cdot 2^3 + \dots + (2n-1) \cdot 2^n
  2. Multiply $T_n$ by the common ratio $q = 2$: 2Tn=122+323++(2n3)2n+(2n1)2n+12 T_n = 1 \cdot 2^2 + 3 \cdot 2^3 + \dots + (2n-3) \cdot 2^n + (2n-1) \cdot 2^{n+1}
  3. Subtract $2 T_n$ from $T_n$: Tn=121+[222+223++22n](2n1)2n+1-T_n = 1 \cdot 2^1 + \left[ 2 \cdot 2^2 + 2 \cdot 2^3 + \dots + 2 \cdot 2^n \right] - (2n-1) \cdot 2^{n+1}
  4. Simplify the middle terms (a geometric sum of $n-1$ terms with $a=8, q=2$): 222+223++22n=2(22+23++2n)=24(2n11)21=8(2n11)=2n+282 \cdot 2^2 + 2 \cdot 2^3 + \dots + 2 \cdot 2^n = 2(2^2 + 2^3 + \dots + 2^n) = 2 \cdot \frac{4(2^{n-1} - 1)}{2 - 1} = 8(2^{n-1} - 1) = 2^{n+2} - 8 Substituting back: Tn=2+2n+28(2n1)2n+1=2n+26(2n1)2n+1-T_n = 2 + 2^{n+2} - 8 - (2n-1) \cdot 2^{n+1} = 2^{n+2} - 6 - (2n-1) \cdot 2^{n+1} Rewrite $2^{n+2} = 2 \cdot 2^{n+1}$: Tn=[2(2n1)]2n+16=(32n)2n+16-T_n = [2 - (2n-1)] \cdot 2^{n+1} - 6 = (3 - 2n) \cdot 2^{n+1} - 6
  5. Multiply by $-1$: Tn=(2n3)2n+1+6T_n = (2n - 3) \cdot 2^{n+1} + 6

Example 2 (Telescoping Summation and Inequality Proof)

Problem: Let sequence $(a_n)$ have general term $a_n = \frac{1}{n(n+1)}$ for $n \ge 1$.

  1. Find the sum $S_n = \sum_{k=1}^n a_k$.
  2. Prove that $S_n < 1$ for all $n \in \mathbb{N}^*$.

Solution:

  1. Decompose the general term using partial fraction decomposition: an=1n(n+1)=1n1n+1a_n = \frac{1}{n(n+1)} = \frac{1}{n} - \frac{1}{n+1} Write out the partial sum $S_n$: Sn=(112)+(1213)++(1n1n+1)S_n = \left(1 - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \dots + \left(\frac{1}{n} - \frac{1}{n+1}\right) All intermediate terms cancel telescopically: Sn=11n+1=nn+1S_n = 1 - \frac{1}{n+1} = \frac{n}{n+1}

  2. For any positive integer $n \in \mathbb{N}^$, $n+1 > n > 0$, so $\frac{1}{n+1} > 0$. Therefore: Sn=11n+1<1S_n = 1 - \frac{1}{n+1} < 1 This completes the proof that $S_n < 1$ for all $n \in \mathbb{N}^$.

Test Your Knowledge

What is the sum S_n = Sum_{k=1}^n 1 / [(2k-1)(2k+1)]?

A
B
C
D
Test Your Knowledge

When applying the multiply-and-subtract method (错位相减法) to calculate T_n = Sum_{k=1}^n k * 2^k, what is the expression for (1 - 2)T_n = -T_n before dividing by -1?

A
B
C
D
Test Your Knowledge

To prove S_n = Sum_{k=1}^n 1 / k^2 < 2, which telescoping inequality bound is standard for k >= 2?

A
B
C
D