Logo
Published on

Recursive sequence and limiting value

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

Let (xn)(x_n) be defined by

x1=16,xn+1=2+1xn(n1).x_1=16,\qquad x_{n+1}=2+\frac{1}{x_n}\quad (n\ge 1).
  • Find exact values of x2,x3,x4x_2,x_3,x_4.
  • Assuming xnL>0x_n\to L>0, show that L=1+2L=1+\sqrt{2}.
  • Prove that
xn+1L=xnLLxn,|x_{n+1}-L|=\frac{|x_n-L|}{Lx_n},

and deduce that for n2n\ge 2,

xn+1L<14xnL.|x_{n+1}-L|<\frac14|x_n-L|.
  • Hence show xn1+2x_n\to 1+\sqrt{2}.

Solutions

(i)

x2=2+116=3316,x3=2+1633=8233,x4=2+3382=19782.x_2=2+\frac1{16}=\frac{33}{16},\quad x_3=2+\frac{16}{33}=\frac{82}{33},\quad x_4=2+\frac{33}{82}=\frac{197}{82}.

For n2n\ge 2, we have xn>2x_n>2 because each term is 2+1xn12+\frac{1}{x_{n-1}} with positive second part.

(ii) If xnLx_n\to L, then taking limits in the recurrence gives

L=2+1L    L22L1=0.L=2+\frac1L \implies L^2-2L-1=0.

So L=1±2L=1\pm\sqrt2. Since terms are positive and >2>2 from n2n\ge2, we take

L=1+2.L=1+\sqrt2.

(iii)

xn+1L=(2+1xn)(2+1L)=LxnLxn,x_{n+1}-L=\left(2+\frac1{x_n}\right)-\left(2+\frac1L\right) =\frac{L-x_n}{Lx_n},

thus

xn+1L=xnLLxn.|x_{n+1}-L|=\frac{|x_n-L|}{Lx_n}.

Now L=1+2>2L=1+\sqrt2>2 and xn>2x_n>2 for n2n\ge2, so Lxn>4Lx_n>4. Hence

xn+1L<14xnL,n2.|x_{n+1}-L|<\frac14|x_n-L|,\quad n\ge2.

(iv) Repeatedly applying the inequality gives geometric decay of the error:

xnL(14)n2x2L0.|x_{n}-L|\le \left(\frac14\right)^{n-2}|x_2-L|\to 0.

Therefore xnL=1+2x_n\to L=1+\sqrt2.


Takeaways

  • For recursive limits, first solve the fixed-point equation.
  • A contraction inequality gives a rigorous convergence proof.
  • The same method works for many rational recursions.
  • The sequence xnx_n is related to the continued fraction of 1+21+\sqrt{2}. It can be expressed as

xn+1=2+1xn=2+12+1xn1==2+12+12++1x1x_{n+1} = 2 + \frac{1}{x_n} = 2 + \frac{1}{2 + \frac{1}{x_{n-1}}} = \dots = 2 + \frac{1}{2 + \frac{1}{2 + \dots + \frac{1}{x_1}}}


Further Readings


Connect with me