This is a beta course, so its structure, chapters, and examples may continue to change.
The Type aₙ₊₁ = aₙ + f(n)
This type of recurrence relation is solved by the accumulation method (the summation method), making it a flexible type.
The Recurrence Relation
Characteristic: each time a function f(n) of n is added.
Solution Method: The Accumulation Method
Starting from the recurrence relation, write out several equations:
a2−a1a3−a2a4−a3an−an−1=f(1)=f(2)=f(3)⋮=f(n−1)
Add all the equations together (adding the left sides and the right sides):
(a2−a1)+(a3−a2)+⋯+(an−an−1)=f(1)+f(2)+⋯+f(n−1)
Most terms on the left side cancel out, leaving only:
an−a1=∑k=1n−1f(k)
Core idea: eliminate the intermediate terms through accumulation, turning the recurrence relation into a summation problem.
Worked Examples
Example 1: f(n)=n
The sequence {an} satisfies a1=1 and an+1=an+n. Find the general term formula.
Solution:
an=a1+k=1∑n−1k=1+2(n−1)n=1+2n2−n=2n2−n+2
Example 2: f(n)=2n
The sequence {an} satisfies a1=1 and an+1=an+2n. Find the general term formula.
Solution:
an=a1+k=1∑n−12k=1+2−12(2n−1−1)=1+2n−2=2n−1
Example 3: f(n)=n(n+1)1
The sequence {an} satisfies a1=0 and an+1=an+n(n+1)1. Find the general term formula.
Solution:
Use partial fraction decomposition: n(n+1)1=n1−n+11
an=0+k=1∑n−1k(k+1)1=k=1∑n−1(k1−k+11)=(11−21)+(21−31)+⋯+(n−11−n1)=1−n1=nn−1
Practice Problems
Exercise 1
The sequence {an} satisfies a1=2 and an+1=an+2n. Find the general term formula.
Reference Answer(2 个标签)
recurrence relationlinear recurrence
Solution:
an=a1+k=1∑n−12k=2+2k=1∑n−1k=2+2⋅2(n−1)n=2+n(n−1)=n2−n+2Answer: an=n2−n+2
Exercise 2
The sequence {an} satisfies a1=1 and an+1=an+3n. Find a5.
Reference Answer(2 个标签)
recurrence relationlinear recurrence
Solution:
a5=a1+k=1∑43k=1+(3+9+27+81)=1+120=121Or use the geometric sequence summation formula:
a5=1+3−13(34−1)=1+23×80=121
Answer: a5=121
Exercise 3
The sequence {an} satisfies a1=1 and an+1=an+(n+1)n1. Find the general term formula.
Reference Answer(2 个标签)
recurrence relationlinear recurrence
Solution:
Note that (n+1)n1=n1−n+11
an=1+k=1∑n−1(k+1)k1=1+k=1∑n−1(k1−k+11)=1+(1−n1)=2−n1=n2n−1Answer: an=n2n−1
Summary
Symbols Used in This Article
| 符号 | 类型 | 读音/说明 | 在本文中的含义 |
|---|
| an,an+1 | 数学符号 | a-sub-n / a-sub-n-plus-one | The nth and (n+1)th terms of the sequence |
| a1 | 数学符号 | a-sub-one | The first term of the sequence |
| f(n) | 数学符号 | f of n | A function varying with n |
| k | 数学符号 | k | The summation variable |
| ∑k=1n−1f(k) | 数学符号 | sum of f of k | The sum from 1 to n−1 |
| ⋮ | 数学符号 | vertical ellipsis | Vertical ellipsis |
中英对照
| 中文术语 | 英文术语 | 音标 | 说明 |
|---|
| 累加法 | telescoping sum | /ˈtelɪskəʊpɪŋ sʌm/ | The method of solving recurrence relations by accumulation |
| 叠加法 | summation method | /sʌˈmeɪʃən ˈmeθəd/ | Another name for the accumulation method |
| 裂项 | partial fraction decomposition | /ˈpɑːʃəl ˈfrækʃən ˌdiːkɒmpəˈzɪʃən/ | Splitting a fraction into the difference of two terms |
| 通项公式 | general term formula | /ˈdʒenərəl tɜːm ˈfɔːmjələ/ | A formula expressing the nth term directly in terms of n |