The sequence 10,\,15,\,20,\,25,\,30,\, \ldots is an arithmetic progression as the sequence recurs by a constant addition. It can be defined using the recursive rule: T_{n+1}=T_n+5,\,T_1=10 or T_n=T_{n-1}+5,\,T_1=10.
The sequence 2,\,6,\,18,\,54,\,162,\, \ldots is a geometric progression as the sequence recurs by a constant multiplication. It can be defined using the recursive rule: T_{n+1}=3T_n,T_1=2 or T_n=3T_{n-1},T_1=2.
Now consider the progression, 3,\,10,\,31,\,94,\,283,\,\ldots. This sequence recurs by multiplying the previous term by 3 and then adding 1 to the result.
The first order linear recurrence equation for the sequence mentioned above is T_{n+1}=3T_n+1 with T_1=3. This progression is neither geometric nor arithmetic, but a combination of both.
First order linear recurrence form: T_{n+1}=kT_n+d with T_1=a or alternatively T_n=kT_{n-1}+d with T_1=a.
For recurrence relations of the form t_{n+1}=kt_n+d, the long term behaviour of the sequence is dependent on the value of k. Let's consider two different sequences and use our calculator to observe the long term behaviour using a graph.
We say that a recurrence relation t_{n+1}=kt_n+d converges to a steady state when k is strictly between -1 and 1. Otherwise, we say the recurrence relation diverges.
Sequence 1: t_{n+1}=0.5t_n-2,\ t_1=12. In this example k is between -1 and 1.
Sequence 2: t_{n+1}=1.5t_n-2,\ t_1=12. In this example k is greater than 1.
A steady state is reached when T_{n+1}=T_n, that is successive terms are not changing. We can solve algebraically for the steady state by assuming the terms on both sides of the recurrence formula are equal to a constant value, say x, and then solve for x.
Consider the following sequence4,\,-28,\,224,\,-1372,\, \ldots
Is the sequence arithmetic, geometric or neither?
Consider the sequence defined by a_1=5 and a_n=-2a_{n-1}-3 for n\geq 2.
What is the first term of the sequence?
What is the second term of the sequence?
What is the third term of the sequence?
Consider the recurrence relation t_{n+1}=0.1t_n-9 where t_1=-3.
Which of the following best describes the long term behaviour of the sequence?
Which of the following statements about the steady-state is always true?
Find the steady state solution by setting both t_{n+1} and t_n to be x.
First order linear recurrence general term:
If -1 \lt k \lt 1: the sequence converges to a steady state.
If k \gt 1 \text{ or } k \lt -1: the sequence diverges.