03 Sequences
03 Sequences
Introduction
A sequence is an enumerated collection of things (usually numbers) in which order matters
and may have repeated values. It is an ordered set of numbers formed according to some pattern
or rule. Each number in the sequence is called a term (also called element or member). The terms
of a sequence could be generated by applying the rule to previous terms of the sequence.
The formula 𝑎𝑛 = 2𝑛 is called an explicit formula for the sequence. By plugging any integer n
into the explicit formula for the sequence, 𝑛𝑡ℎ term can be found.
Examples 1:
Write the first four terms of a sequence described by the general term 𝑎𝑛 = 3𝑛 + 2.
𝑎𝑛 = 3𝑛 + 2
𝑎1 = 3(1) + 2 = 5
𝑎2 = 3(2) + 2 = 8
𝑎3 = 3(3) + 2 = 11
𝑎4 = 3(4) + 2 = 14
Therefore, the first four terms are 5, 8, 11, 14.
Example 2:
𝑎𝑛 = 2(3𝑛−1 )
𝑎1 = 2(31−1 ) = 2(30 ) = 2
𝑎2 = 2(32−1 ) = 2(31 ) = 6
𝑎3 = 2(33−1 ) = 2(32 ) = 18
𝑎4 = 2(34−1 ) = 2(33 ) = 54
Hence, the first four terms are 2, 6, 18, 54.
Examples:
{0, 2, 4, 6, 8} is the sequence of the first five even numbers and is a finite sequence.
Where:
𝑎𝑛 = the term that you want to find
𝑎1 = first term in the sequence
𝑑 = common difference
The following video gives various examples of such sequences, defined explicitly and
recursively.
3, 5, 7, 9, ⋯
+2 +2 +2
2. The sequence {1.6, 2.2, 2.8, 3.4, ⋯} is arithmetic as well because the difference between
consecutive terms is always minus 0.6.
3. The sequence 3, 5, 9, 15, 23, ... is not arithmetic because the difference between
consecutive terms is not the same.
3, 5, 9, 15, 23, ⋯
+2 +4 +6 +8
1. What is the common difference in the following sequence? {3, 11, 19, 27, 35, ⋯}
To find it, simply subtract the first term from the second term, or the second from
the third, or so on …
11 − 3 = 8
19 − 11 = 8
27 − 19 = 8
See how each time we are adding 8 to get to the next term? This means our common
difference is 8.
2. What is the common difference in the sequence {10, 21, 32, 43, ⋯}?
3. What is the common difference in the sequence {–2, –5, –8, –11 ...}?
-3 -3 -3
-2, -5, -8, -11, ⋯
Therefore, the common difference of –2, –5, –8, –11 ... is negative three.
3 1 1
4. What is the common difference in the following sequence? {− 4, − 4, 4, ...}
The common difference in this set is the linear amount spaced between each number
in the set. Subtract the first number from the second number.
1 3 1 3 2 1
− − (− ) = − + = =
4 4 4 4 4 2
Check this number by subtracting the second number from the third number.
1 1 1 1 2 1
− (− ) = + = =
4 4 4 4 8 2
1
Thus, the common difference is 2.
5. What is the next term of the arithmetic sequence? {10, 13, 16, ⋯}
In any arithmetic sequence, each term is equal to the previous term plus the common
difference. Thus, the second term is equal to the first term plus the common difference. In this
sequence, the second term, 13, is 3 more than the first term, 10. Therefore, the common
difference is 3. The fourth term in the sequence is equal to the third term plus the common
difference, or 16 + 3 = 19.
Watch: https://youtu.be/EU0c6qrrevA
In order to find the fifth term, extend the sequence term by term:
𝑎(𝑛) = 𝑎(𝑛 − 1) + 2
𝑎(1) =3
In the formula, n is any term number and a(n) is the nth term. This means a(1) is the first
term, and a(n-1) is the term before the nth term.
Just as we used a(n) to represent the nth term of the sequence {3, 5, 7, ⋯}, we can use other
letters to represent other sequences. For example, we can use b(n), c(n) or d(n).
Example 1:
Find b(4) in the sequence given by
{𝑏(1) = −5 𝑏(𝑛) = 𝑏(𝑛 − 1) + 9
Solution:
What this formula means can be verbalized as follows:
The first term is -5 and any other term is the term before it plus 9. In order to
find b(4), we need to extend the sequence term by term,
𝑏(𝑛) = 𝑏(𝑛 − 1) + 9
𝑏(1) = −5
𝑏(2) = 𝑏(1) + 9 = −5 + 9 =4
𝑏(3) = 𝑏(2) + 9 = 4+9 = 13
𝑏(4) = 𝑏(3) + 9 = 13 + 9 = 22
Therefore, b(4) = 22.
Example 2:
Suppose we wanted to write the recursive formula of the arithmetic sequence {5, 8, 11, ⋯}
Solution:
The two parts of the formula should give the following information:
1. The first term (which is 5)
2. The rule to get any term from its previous term (which is to add 3)
Therefore, the recursive formula should look as follows:
{𝑐(1) = 5 𝑐(𝑛) = 𝑐(𝑛 − 1) + 3
Example 3:
What is the recursive formula of the sequence 19, 11, 3, ...?
Solution:
The two parts of the formula should give the following information:
1. The first term which is 19
2. The rule to get any term from its previous term (which is to subtract
8)
{𝑑(1) = 19 𝑑(𝑛) = 𝑑(𝑛 − 1) − 8
The table shows that we can get the nth term (where n is any term number) by taking the
first term 5 and adding the common difference 3 repeatedly for (n-1) times. This can be written
algebraically as 5 + 3(n – 1).
In general, this is the standard explicit formula of an arithmetic sequence whose first term is A and
the common difference is B:
𝐴 + 𝐵(𝑛 − 1)
Example:
The terms alternate between positive and negative. We can use (−1)𝑛 to make
the terms alternate. The numerator can be represented by 𝑛 + 1. The denominator
can be represented by 2𝑛 + 9.
(−1)𝑛 (𝑛 + 1)
𝑎𝑛 =
2𝑛 + 9
b. {𝑒 4 , 𝑒 5 , 𝑒 6 , 𝑒 7 , 𝑒 8 … }
The terms are powers of e. For 𝑛 = 1, the first term is 𝑒 4 so the exponent must
be 𝑛 + 3.
𝑎𝑛 = 𝑒 𝑛+3
The following video explains the conversion of recursive and explicit forms of arithmetic
sequence. Link: https://youtu.be/GA_yxxeFYBU
Example:
Recursive to Explicit formula
An arithmetic sequence has the following recursive formula.
{𝑎(1) = 3 𝑎(𝑛) = 𝑎(𝑛 − 1) + 2
Recall that this formula gives us the following two pieces of information:
o The first term is 3.
o To get any term from its previous term, add 2. In other words, the common
difference is 2.
The first term is 3 while the common difference is 2. Therefore, an explicit formula
of the sequence is
𝑎(𝑛) = 3 + 2(𝑛 − 1).
Explicit to Recursive formula
We are given the following explicit formula of an arithmetic sequence.
𝑑(𝑛) = 5 + 16(𝑛 − 1)
This formula is given in the standard explicit form A+B(n-1) where A is the first
term and B is the common difference. Therefore,
o The first term of the sequence is 5, and
o The common difference is 16.
Recall that the recursive formula gives us two pieces of information:
1. The first term (which we know is 5)
The pattern rule to get any term from the term that comes before it (which we know
is “add 16”).
GEOMETRIC SEQUENCE
A geometric sequence is a sequence in which each term is found by multiplying the
preceding term by the same value. Its general term is 𝑎𝑛 = 𝑎1 (𝑟 𝑛−1 ), where the value of r is called
common ratio. It is found by takin any term in the sequence and dividing it by its preceding term
Example 1:
Find the common ratio in each of the following geometric sequences. Then express each
sequence in the form is 𝑎𝑛 = 𝑎1 (𝑟 𝑛−1 ), and find the eighth term of the sequence.
a. 1, 3, 9, 27, …
Solution:
𝑎2 3
Since 𝑟 = = =3
𝑎1 1
Then 𝑎𝑛 = 1(3𝑛−1 )
Therefore, the eight term of the sequence is
𝑎8 = 1(38−1 )
= 1(37 )
𝑎8 = 2187
b. 16, 24, 36, 54, …
Solution:
𝑎2 24 3
Since 𝑟 = = =
𝑎1 16 2
3 𝑛−1
Then 𝑎𝑛 = 16 (2)
A recursive formula allows us to find any term of a geometric sequence by using the
previous term. Each term is the product of the common ratio and the previous term. For example,
suppose the common ratio is 9. Then each term is nine times the previous term. As with any
recursive formula, the initial term must be given.
The recursive formula for a geometric sequence with common ratio r and first term a1 is
{𝑎1 𝑎𝑛 = 𝑟 ∙ 𝑎𝑛−1 , 𝑛 ≥ 2
Because a geometric sequence is an exponential function whose domain is the set of
positive integers, and the common ratio is the base of the function, we can write explicit formulas
that allow us to find particular terms.
𝑎𝑛 = 𝑎1 ⋅ 𝑟 𝑛−1
Example 1:
Complete the recursive formula of the geometric sequence {-1.5, 6, -24, 96, ⋯}
Solution:
𝑑1 = −1.5
𝑑2 𝑑3 𝑑4
𝑟= = = = −4
𝑑1 𝑑2 𝑑3
Therefore:
Find an explicit formula for the geometric sequence {2, 6, 18, 54, ⋯}
Solution:
In a geometric sequence, the ratio between successive terms is constant. This means
that we can move from any term to the next one by multiplying by a constant value. Let us
calculate this ratio over the first few terms:
6 18 54
𝑟= = = =3
2 6 18
We can find any term by starting with the first term and multiplying by 3 repeatedly
until we get to the desired term. Look at this below:
𝑛 1 2 3 4
𝑓(𝑛) 2 ⋅ 30 2 ⋅ 31 2 ⋅ 32 2 ⋅ 33
Therefore:
𝑏𝑛 = 2 ⋅ 3𝑛−1
Example 1:
Solution:
The sequence can be written in terms of the initial term and the common ratio r.
3,3𝑟, 3𝑟 2 , 3𝑟 3 , …
Find the common ratio using the given fourth term.
𝑎𝑛 = 𝑎1 𝑟 𝑛−1
24 = 3𝑟 3 Substitute 24 for 𝑎4
8 = 𝑟3 Divide
Find the second term by multiplying the first term by the common ratio.
𝑎2 = 2𝑎1
= 2(3)
𝑎2 = 6
Example 2:
Find the 5th term in the geometric sequence whose explicit formula is
1 (𝑖−1)
𝑥𝑖 = 3 (− ) .
4
What is the a5, the fifth term of the sequence?
1 (5−1) 3
𝑥5 = 3 (− ) =
4 256
Example 2:
1
{𝑎(1) = − 𝑎(𝑖) = 2𝑎(𝑖 − 1)
8
Solution:
𝑎(𝑖) = 2𝑎(𝑖 − 1)
1
𝑎(1) =−
8
1 1
𝑎(2) = 2𝑎(1) = 2 (− ) =−
8 4
1 1
𝑎(3) = 2𝑎(2) = 2 (− ) =−
4 2
1
𝑎(4) = 2𝑎(3) = 2 (− ) = −1
2
Source: Khan Academy (Geometric Sequence, Recursive Formula, and Explicit Formula)
The conversion between recursive and explicit formula is pretty much straightforward.
{𝑎1 𝑎𝑛
𝑎𝑛 = 𝑎1 ⋅ 𝑟 𝑛−1
= 𝑟 ∙ 𝑎𝑛−1 , 𝑛 ≥ 2
Example 1:
The explicit formula of a geometric sequence is 𝑔(𝑥) = 9 ∙ (8)𝑥−1 . Find the recursive
formula of the sequence.
Solution:
𝑔(1) = 22
𝑟=5
Therefore,
14 𝑛−1
𝑓(𝑛) = 45 ⋅ ( )
4
Solution:
14 1−1
𝑓(1) = 45 ⋅ ( ) = 45
4
14
𝑟=
4
Therefore,
14
{𝑓(1) = 45 𝑓(𝑛) = ⋅ 𝑓(𝑛 − 1)
4
Example 3:
Solution:
𝑓(1) = 37
𝑟 = 0.6
Therefore,
𝑓(𝑛) = 37 ⋅ 0.6𝑛−1
Example 4:
Solution:
𝑓(1) = −1.8
𝑟=9
Therefore,
The video presented in the link contains word problems about modeling real-world situations with
arithmetic and geometric sequences. Link: https://youtu.be/yYGf7xn7TyM
The video presented in the next link shows how to evaluate a sequence that is defined with a recursive
formula. This definition gives the base case and then defines how to find the subsequent terms using the
base case. Video: https://youtu.be/Kjli0Gunkds