Fixed Point Method || Undetermined Coefficients

一阶线性递推数列 的 不动点法和待定系数法

two most common algebraic techniques for solving first-order linear non-homogeneous recurrence relations of the form: an+1=pan+q(p1)

🔵 1. Fixed Point Method

Core Idea:
Find the equilibrium value (fixed point) x that the sequence would stay at forever if it ever reached it. By shifting the sequence relative to x, the constant term q disappears, leaving a pure geometric progression.

Steps:

  1. Solve for the fixed point: Set an+1=an=x in the recurrence: x=px+q  x=q1p
  2. Shift the recurrence: Subtract xx from both sides: an+1x=p(anx)
  3. Identify the geometric sequence: Let bn=anx. Then bn+1=pbn, so {bn} is geometric with ratio p.
  4. Write the closed form: bn=b1pn1=(a1x)pn1  an=x+(a1x)pn1

Intuition: The fixed point is the “steady state” of the recurrence. Translating the sequence by xx 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: an+1+λ=p(an+λ). Solve for the unknown constant λλ that makes this identity hold.

Steps:

  1. Assume the structure: an+1+λ=p(an+λ)
  2. Expand and match coefficients: an+1=pan+(p1)λ Compare with the original an+1=pan+q: (p1)λ=q  λ=qp1
  3. Substitute back: an+1+qp1=p(an+qp1)
  4. Define a new sequence: Let cn=an+qp1. Then cn+1=pcn, so {cn}is geometric.
  5. Recover an cn=c1pn1=(a1+qp1)pn1 an=(a1+qp1)pn1qp1​​

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

AspectFixed Point MethodUndetermined Coefficients
Starting pointSolve x=px+qAssume an+1+λ=p(an+λ)
Key parameterx=q1pλ=qp1=x
NatureGeometric / dynamical systems intuitionAlgebraic / structural matching
ResultIdentical closed formIdentical closed form
GeneralizationExtends naturally to nonlinear recurrences an+1=f(an)Extends to an+1=pan+f(n)by matching f(n)‘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 an+1=an+q, which is an arithmetic sequence: an=a1+(n1)q.
  • p=0: an+1=q. The sequence is constant from n2.
  • 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., an+1+αn+β=p(an+αn+β)for linear qn​), then solve for α,β.
  • Always verify: Plug n=1,2 into your closed form to check against the original recurrence.

📝 Quick Reference Formula

For an+1=pan+qa (p1): an=q1p+(a1q1p)pn1This 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 (an+2=pan+1+qan+r).

========

训练题

1

已知an+1=an+62,a1=10.a_{n+1}=\frac{a_n+6}{2},\quad a_1=10.an+1​=2an​+6​,a1​=10.

ana_nan​ 的通项公式。

2

已知an+1=3an+45,a1=1.a_{n+1}=\frac{3a_n+4}{5},\quad a_1=1.an+1​=53an​+4​,a1​=1.

求通项公式,并求 limnan\lim_{n\to\infty} a_nlimn→∞​an​。

3

已知an+1=2an3,a1=7.a_{n+1}=2a_n-3,\quad a_1=7.an+1​=2an​−3,a1​=7.

求通项公式。

4

已知an+1=an+93,a1=0.a_{n+1}=\frac{a_n+9}{3},\quad a_1=0.an+1​=3an​+9​,a1​=0.

求通项公式。

5

已知an+1=14an+5,a1=4.a_{n+1}=\frac{1}{4}a_n+5,\quad a_1=4.an+1​=41​an​+5,a1​=4.

求通项公式,并判断是否收敛。

6

已知an+1=1an,a1=2026.a_{n+1}=1-a_n,\quad a_1=2026.an+1​=1−an​,a1​=2026.

ana_nan​ 的通项公式。

7

已知an+1=2an13,a1=5.a_{n+1}=\frac{2a_n-1}{3},\quad a_1=5.an+1​=32an​−1​,a1​=5.

求通项公式。

8

已知an+1=5an+127,a1=2.a_{n+1}=\frac{5a_n+12}{7},\quad a_1=2.an+1​=75an​+12​,a1​=2.

求通项公式,并求极限。


提升题

9

已知an+1=an+22,a1=x.a_{n+1}=\frac{a_n+2}{2},\quad a_1=x.an+1​=2an​+2​,a1​=x.

xxx 表示 ana_nan​,并讨论当 nn\to\inftyn→∞ 时的极限。

10

已知an+1=ran+c,r1.a_{n+1}=ra_n+c,\quad r\neq 1.an+1​=ran​+c,r=1.

试写出通项公式,并说明为什么一定要先找“固定点”。


这类题的统一做法

先令不动点 LLL 满足L=rL+c,L=rL+c,L=rL+c,

然后设bn=anL.b_n=a_n-L.bn​=an​−L.

递推会变成bn+1=rbn,b_{n+1}=rb_n,bn+1​=rbn​,

于是bn=b1rn1,b_n=b_1r^{n-1},bn​=b1​rn−1,

最后还原:an=L+(a1L)rn1.a_n=L+(a_1-L)r^{n-1}.an​=L+(a1​−L)rn−1.


标准答案

1

  1. 求不动点(平衡值)
    x=x+62x=2x+6​,解得 x=6x=6。
  2. 构造等比数列
    将递推式改写为: an+16=an+626=an62an+1​−6=2an​+6​−6=2an​−6​ 即 {an6}{an​−6} 是公比为 1221​ 的等比数列。
  3. 求首项与通项
    首项:a16=106=4a1​−6=10−6=4
    故:an6=4×(12)n1=22×2(n1)=23nan​−6=4×(21​)n−1=22×2−(n−1)=23−n
  4. 最终通项公式
    an=6+23nan=6+42n1an​=6+23−n​或an​=6+2n−14​

2

L=413/5=10.L=\frac{4}{1-3/5}=10.L=1−3/54​=10.

所以an=10+(110)(35)n1=109(35)n1.a_n=10+(1-10)\left(\frac35\right)^{n-1} =10-9\left(\frac35\right)^{n-1}.an​=10+(1−10)(53​)n−1=10−9(53​)n−1.

极限是limnan=10.\lim_{n\to\infty}a_n=10.n→∞lim​an​=10.

3

L=2L3L=3.L=2L-3 \Rightarrow L=3.L=2L−3⇒L=3. an=3+(73)2n1=3+42n1.a_n=3+(7-3)\cdot 2^{n-1}=3+4\cdot 2^{n-1}.an​=3+(7−3)⋅2n−1=3+4⋅2n−1.

4

L=92.L=\frac{9}{2}.L=29​. an=92+(092)(13)n1=9292(13)n1.a_n=\frac92+\left(0-\frac92\right)\left(\frac13\right)^{n-1} =\frac92-\frac92\left(\frac13\right)^{n-1}.an​=29​+(0−29​)(31​)n−1=29​−29​(31​)n−1.

5

L=511/4=203.L=\frac{5}{1-1/4}=\frac{20}{3}.L=1−1/45​=320​. an=203+(4203)(14)n1=20383(14)n1.a_n=\frac{20}{3}+\left(4-\frac{20}{3}\right)\left(\frac14\right)^{n-1} =\frac{20}{3}-\frac{8}{3}\left(\frac14\right)^{n-1}.an​=320​+(4−320​)(41​)n−1=320​−38​(41​)n−1.

收敛,极限为 203\frac{20}{3}320​。

6

L=1LL=12.L=1-L \Rightarrow L=\frac12.L=1−L⇒L=21​. an=12+(202612)(1)n1.a_n=\frac12+\left(2026-\frac12\right)(-1)^{n-1}.an​=21​+(2026−21​)(−1)n−1.

它不收敛,因为在两个值之间来回跳。

7

L=2L133L=2L1L=1.L=\frac{2L-1}{3}\Rightarrow 3L=2L-1\Rightarrow L=-1.L=32L−1​⇒3L=2L−1⇒L=−1. an=1+(5+1)(23)n1=1+6(23)n1.a_n=-1+(5+1)\left(\frac23\right)^{n-1} =-1+6\left(\frac23\right)^{n-1}.an​=−1+(5+1)(32​)n−1=−1+6(32​)n−1.

8

L=5L+1277L=5L+12L=6.L=\frac{5L+12}{7}\Rightarrow 7L=5L+12\Rightarrow L=6.L=75L+12​⇒7L=5L+12⇒L=6. an=6+(26)(57)n1=64(57)n1.a_n=6+(2-6)\left(\frac57\right)^{n-1} =6-4\left(\frac57\right)^{n-1}.an​=6+(2−6)(75​)n−1=6−4(75​)n−1.

极限是 666。

9

这里L=211/2=4.L=\frac{2}{1-1/2}=4.L=1−1/22​=4.

所以an=4+(x4)(12)n1,a_n=4+(x-4)\left(\frac12\right)^{n-1},an​=4+(x−4)(21​)n−1,

极限是 444。

10

固定点L=rL+cL=c1r.L=rL+c \Rightarrow L=\frac{c}{1-r}.L=rL+c⇒L=1−rc​.

bn=anLb_n=a_n-Lbn​=an​−L,则bn+1=rbn,b_{n+1}=r b_n,bn+1​=rbn​,

所以an=L+(a1L)rn1.a_n=L+(a_1-L)r^{n-1}.an​=L+(a1​−L)rn−1.

评论

One response to “Fixed Point Method || Undetermined Coefficients”

  1. radmin Avatar

    数列题给出了一阶等式,居然卡在了不会求通项公式。总结两种方法恶补知识。

Leave a Reply