一阶线性递推数列 的 不动点法和待定系数法
two most common algebraic techniques for solving first-order linear non-homogeneous recurrence relations of the form:
🔵 1. Fixed Point Method
Core Idea:
Find the equilibrium value (fixed point) that the sequence would stay at forever if it ever reached it. By shifting the sequence relative to , the constant term disappears, leaving a pure geometric progression.
Steps:
- Solve for the fixed point: Set in the recurrence:
- Shift the recurrence: Subtract x from both sides:
- Identify the geometric sequence: Let . Then , so is geometric with ratio .
- Write the closed form:
Intuition: The fixed point is the “steady state” of the recurrence. Translating the sequence by x centers it at zero, turning the affine map into a linear (scaling) map.
🔴 2. Method of Undetermined Coefficients
Core Idea:
Assume the recurrence can be algebraically rewritten as a scaled shift: . Solve for the unknown constant λ that makes this identity hold.
Steps:
- Assume the structure:
- Expand and match coefficients: Compare with the original :
- Substitute back:
- Define a new sequence: Let . Then , so is geometric.
- Recover an
Intuition: This is a purely algebraic “guess-and-check” strategy. We postulate a form that eliminates the constant term, then solve for the parameter that makes the postulate valid.
🔗 3. Relationship & Comparison
| Aspect | Fixed Point Method | Undetermined Coefficients |
|---|---|---|
| Starting point | Solve | Assume |
| Key parameter | | |
| Nature | Geometric / dynamical systems intuition | Algebraic / structural matching |
| Result | Identical closed form | Identical closed form |
| Generalization | Extends naturally to nonlinear recurrences | Extends to by matching ‘s form |
✅ Bottom line: Both methods are algebraically equivalent. The fixed point method emphasizes why the shift works; the undetermined coefficients method emphasizes how to systematically find the shift.
⚠️ 4. Edge Cases & Practical Tips
- p=1 Both methods fail (division by zero). The recurrence becomes , which is an arithmetic sequence: .
- p=0: . The sequence is constant from .
- Non-constant qq (e.g., qn=kn,rn,n2): Use the extended undetermined coefficients method. Assume a shift of the same functional form (e.g., for linear ), then solve for .
- Always verify: Plug into your closed form to check against the original recurrence.
📝 Quick Reference Formula
For a (): This compact form directly combines the steady-state value and the transient geometric decay/growth.
Let me know if you’d like a worked example in English, or an extension to second-order recurrences ().
========
训练题
1
已知an+1=2an+6,a1=10.
求 an 的通项公式。
2
已知an+1=53an+4,a1=1.
求通项公式,并求 limn→∞an。
3
已知an+1=2an−3,a1=7.
求通项公式。
4
已知an+1=3an+9,a1=0.
求通项公式。
5
已知an+1=41an+5,a1=4.
求通项公式,并判断是否收敛。
6
已知an+1=1−an,a1=2026.
求 an 的通项公式。
7
已知an+1=32an−1,a1=5.
求通项公式。
8
已知an+1=75an+12,a1=2.
求通项公式,并求极限。
提升题
9
已知an+1=2an+2,a1=x.
用 x 表示 an,并讨论当 n→∞ 时的极限。
10
已知an+1=ran+c,r=1.
试写出通项公式,并说明为什么一定要先找“固定点”。
这类题的统一做法
先令不动点 L 满足L=rL+c,
然后设bn=an−L.
递推会变成bn+1=rbn,
于是bn=b1rn−1,
最后还原:an=L+(a1−L)rn−1.
标准答案
1
- 求不动点(平衡值)
令 x=2x+6,解得 x=6。 - 构造等比数列
将递推式改写为: an+1−6=2an+6−6=2an−6 即 {an−6} 是公比为 21 的等比数列。 - 求首项与通项
首项:a1−6=10−6=4
故:an−6=4×(21)n−1=22×2−(n−1)=23−n - 最终通项公式
an=6+23−n或an=6+2n−14
2
L=1−3/54=10.
所以an=10+(1−10)(53)n−1=10−9(53)n−1.
极限是n→∞liman=10.
3
L=2L−3⇒L=3. an=3+(7−3)⋅2n−1=3+4⋅2n−1.
4
L=29. an=29+(0−29)(31)n−1=29−29(31)n−1.
5
L=1−1/45=320. an=320+(4−320)(41)n−1=320−38(41)n−1.
收敛,极限为 320。
6
L=1−L⇒L=21. an=21+(2026−21)(−1)n−1.
它不收敛,因为在两个值之间来回跳。
7
L=32L−1⇒3L=2L−1⇒L=−1. an=−1+(5+1)(32)n−1=−1+6(32)n−1.
8
L=75L+12⇒7L=5L+12⇒L=6. an=6+(2−6)(75)n−1=6−4(75)n−1.
极限是 6。
9
这里L=1−1/22=4.
所以an=4+(x−4)(21)n−1,
极限是 4。
10
固定点L=rL+c⇒L=1−rc.
设 bn=an−L,则bn+1=rbn,
所以an=L+(a1−L)rn−1.
Leave a Reply
You must be logged in to post a comment.