a n = 3 3 − a n − 1 , a 1 = 0
A sequence of real numbers { a n } follows the recursive formula above.
What is n → ∞ lim a n ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
You haven't proven convergence in all of them (although the last one is perhaps the easiest to extend to prove for convergence).
Log in to reply
I wrote this solution with audience of lvl 1-3 in mind so I didn't think a formal proof of convergence was necessary. Besides, I think that since the limit in the last part exists and is finite, it proves that the sequence converges.
Log in to reply
Yes, in the last part, you only need to prove that ( − 1 / 3 ) n − 1 converges as n → ∞ , which is easy enough that it's probably okay to skip. That's why I said it's the easiest to extend for convergence.
Also, even with audience of level 1-3, I still attach proofs of convergence to my solutions anyway.
Log in to reply
@Ivan Koswara – You are right, I should attach proofs of convergence regardless of the audience. I have edited the solution accordingly.
Let us rewrite this recurrence relation in a more suitable way.
From the original equation, we have: a n = 1 − 3 a n − 1 → a n + 3 a n − 1 = 1 , which is true for all n ≥ 2 . Therefore, we can write: a n + 3 a n − 1 = a n − 1 + 3 a n − 2 , which in turn leads to a n − 3 2 ∗ a n − 1 − 3 a n − 2 = 0 .
The characteristic polynomial of this recurrence relation is q 2 − 3 2 q − 3 1 = 0 , that when solved yields the roots 1 and − 3 1 . Therefore, the general solution of the recurrence relation is a n = K 1 ∗ 1 n + K 2 ∗ ( − 3 1 ) n = K 1 + K 2 ∗ ( − 3 1 ) n .
Now, we must derive the unique solution which satisfies the problem. Although this is a second-order recurrence relation, we are only given one of its terms - a 1 = 0 . This is not a problem - we can compute any other term we wish by using the original formula - for example, a 2 = 3 3 − a 1 = 3 3 − 0 = 3 3 = 1 , and now we can solve the puzzle:
a 1 = K 1 − K 2 ∗ 3 1 = 0
a 2 = K 1 + K 2 ∗ 9 1 = 1
This yields K 1 = 4 3 and K 2 = 4 9 , and therefore the general term for a n is:
a n = 4 3 + 4 9 ∗ ( − 3 1 ) n .
As n goes to infinity, ( − 3 1 ) n gets smaller and smaller, as close to 0 as it can get, which means a n converges to 4 3 .
There is no need to do the substitution to get a second-order linear recurrence.
Observe that a n = 1 − 3 a n − 1 can be rewritten as ( a n − 4 3 ) = − 3 1 ( a n − 1 − 4 3 ) .
This shows why lim a n = 4 3 , without requiring to solve the recurrence.
Problem Loading...
Note Loading...
Set Loading...
There are multiple ways to approach this problem. One way is to use a calculator and finding the first few terms. The first few terms of this sequence are:
We see that the sequence quickly becomes very close to 0.75. Hence we can say that the limit of the sequence is 0 . 7 5
Using a calculator is very easy, but the method is not very rigorous and we are not able to tell whether the limit is exactly 4 3 . We will now calculate the limit using a more formal approach.
Let A = n → ∞ lim a n . We need to find the value of A . Note that n → ∞ lim a n = n → ∞ lim a n − 1 . Therefore A = n → ∞ lim a n = n → ∞ lim a n − 1 . We will substitute these values in the given expression in the problem.
A = 3 3 − A
Solving this gives A = 4 3 = 0 . 7 5 .
Another method to find the limit is to first find the explicit form of the sequence, and then finding out the limit.
We can rewrite the recurrence relation like this:
a n = − 3 1 a n − 1 + 1 = ( − 3 1 ) 2 a n − 2 + 1 − 3 1 = ( − 3 1 ) 3 a n − 3 + 1 − 3 1 + 9 1 = ⋮ = ( − 3 1 ) n − 1 a 1 + 1 − 3 1 + 9 1 + ⋯ + ( − 3 1 ) n − 2
We are given a 1 = 0 , so we will substitute that in the equation. We can also use the formula for sum of geometric series. a n = 0 + 1 − ( − 3 1 ) 1 − ( − 3 1 ) n − 1 = 3 4 1 − ( − 3 1 ) n − 1 = 4 3 ( 1 − ( − 3 1 ) n − 1 ) = 4 3 ( 1 − ( − 3 1 ) n − 1 ) = 4 3 − 4 3 × ( − 3 1 ) n − 1 = 4 3 + 4 9 × ( − 3 1 ) n = 4 3 + 4 9 × ( − 1 ) n × ( 3 ) − n
Now that we have obtained the explicit formula for a n , we can apply the limit. As n → ∞ , the term ( − 1 ) n oscillates between 1 and -1 whereas 3 − n becomes very small approaches zero. Therefore the product approaches 0. Hence,
n → ∞ lim a n = 4 3 □