Games
Problems
Go Pro!

Recursive Sequences

Reference > Mathematics > Algebra > Sequences and Series
 

We've looked at both arithmetic sequences and geometric sequences; let's wrap things up by exploring recursive sequences.

Recursion is the process of starting with an element and performing a specific process to obtain the next term.

If we go with that definition of a recursive sequence, then both arithmetic sequences and geometric sequences are also recursive.

Why? In an arithmetic sequence, each term is obtained by adding a specific number to the previous term.

In a geometric sequence, each term is obtained by multiplying the previous term by a specific number.

If a sequence is recursive, we can write recursive equations for the sequence. Recursive equations usually come in pairs: the first equation tells us what the first term is, and the second equation tells us how to get the nth term in relation to the previous term (or terms).

Example 1: Write recursive equations for the sequence 5, 7, 9, 11,...

Solution: The first term of the sequence is 5, and each term is 2 more than the previous term, so our equations are:

a1 = 5
an = an-1 + 2, for n > 1

Notice that we had to specify n > 1, because if n = 1, there is no previous term!

Example 2: Write recursive equations for the sequence 2, 4, 8, 16,...

Solution: The first term is 2, and each term after that is twice the previous term, so the equations are:

a1 = 2
an = 2an-1, for n > 1

Example 3: Write recursive equations for the sequence 1, 1, 2, 3, 5, 8, 13, ...

Solution: This sequence is called the Fibonacci Sequence. Each term is the sum of the two previous terms. Since our recursion involves two previous terms, we need to specify the value of the first two terms:

a1 = 1
a2 = 1
an = an-1 + an-2, for n > 2

Example 4: Write recursive equations for the sequence 2, 3, 6, 18, 108, 1944, 209952,...

Solution The terms of this sequence are getting large very quickly, which suggests that we may be using either multiplication or exponents. It turns out that each term is the product of the two previous terms. Since our recursion uses the two previous terms, our recursive formulas must specify the first two terms.

a1 = 2
a2 = 3
an = (an-1)(an-2), for n > 2

Questions

1.
What is the 5th term of the recursive sequence defined as follows: a1 = 5, an = an-1*3?
2.
What is the 5th term of the recursive sequence defined as follows: a1 = 2, an = an-1*2+1?
3.
What is the 1st term of a recursive sequence in which an = an-1*4, if a4 = 192?
4.
Write recursive equations for the sequence 5, 11, 17, 23,...
5.
Write recursive equations for the sequence 3, 6, 12, 24, ...
6.
Write recursive equations for the sequence 2, 4, 16, 256, 65536,...
7.
Write recursive equations for the sequence 2, 6, 14, 30, 62,...
8.
Write recursive equations for the sequence 3, 4, 7, 11, 18, 29,...
9.
Write recursive equations for the sequence 6561, 81, 9, 3,...
10.
Write the first five terms of the sequence in which a1 = 1, and an = an-12 - 2
11.
Write the first five terms of the sequence in which a1 = 2 and an = 5an-1-5
12.
Write the first five terms of the sequence in which a1 = i and an = ian-1.
Assign this reference page
Click here to assign this reference page to your students.
Infinite Geometric SeriesInfinite Geometric Series
Unit IndexUnit Index
 

Blogs on This Site

Reviews and book lists - books we love!
The site administrator fields questions from visitors.
Like us on Facebook to get updates about new resources
Home
Pro Membership
About
Privacy