I want to show the limit of recurrence an+1=1/(1+an) exists with a1=0.5. I can find the limit, and I can see that sequence is oscillating. but proving it is being difficult to me. In general is there a method to prove the convergence of such non monotonic sequences, without bringing in matrices and Eigen vectors? So that I can apply it to other converging oscillating sequences.
Answer
One strategy to solve a recurrence relation is the "Guess and Verify" method.
Guess the answer, and then verify it is correct by whatever means.
For this problem, assume a limit λ exists, the recurrence
an+1=11+an tell us λ "should" satisfy
λ=11+λ⟺λ2+λ−1⟹λ=ϕ−1 or −ϕ
where ϕ=1+√52 is the golden ratio. It is clear start from any positive a1, all remaining an will be positive. So the desired limit, if exists, cannot be −ϕ. This make λ=ϕ−1 of our own candidate as the limit.
To verify ϕ−1 is indeed the limit. One most approach is compare the absolute difference between it and successive terms of the sequence and see what one can get. For any n≥1, we have
|an+1−ϕ−1|=|11+an−11+ϕ−1|=|an−ϕ−1(1+an)(1+ϕ−1)|≤|an−ϕ−11+ϕ−1|=ϕ−1|an−ϕ−1|
Repeating apply this inequality, we find for any n>1,
|an−ϕ−1|≤ϕ−1|an−1−ϕ−1|≤ϕ−2|an−2−ϕ−1|≤⋯≤ϕ1−n|a1−ϕ−1|
Since |ϕ−1|<1, limn→∞ϕ1−n=0 and verify our guess:
limn→∞an=ϕ−1=√5−12
Update
If one cannot figure out the limit, there are others approaches one can try.
For this particular problem, one can use contraction mapping theorem.
Given any function f:[a,b]→[a,b]. If for some K<1,
|f(x)−f(y)|≤K|x−y| for all x,y∈[a,b], then
- f(x) has a unique fixed point λ over [a,b].
- Start from any c∈[a,b], the sequence (cn)n≥1 obtained by repeat iteration of f(x) c1=c and cn=f(cn−1) for n>1
converges to this λ.
Take f(x)=11+x, it is easy to see f([12,1])=[12,13]. Notice for any x,y∈[12,1], we have
|f(x)−f(y)|=|11+x−11+y|=|x−y(1+x)(1+y)|≤49|x−y|
This f(x) is a contraction mapping over [12,1].
Start from any c∈[12,1], the sequence obtained by repeating iteration of f(x) converges to the unique fixed point of f(x). This includes the sequence an at hand which corresponds to c=12.
No comments:
Post a Comment