We’ve seen sequences defined explicitly, such as . Another common way to generate a sequence is by giving a rule for how to generate the next term from the previous term. For example, where . Such sequences are called recursively defined sequences.
Although both types of sequences use an equation to find , the recursive sequence also needs to define the first few terms. If we change the initial terms, we get a different sequence. The formula used to generate the recursive sequence is called a recurrence relation, while the first term (or terms) is called the initial condition(s).
An advantage of an explicitly defined sequence is that it is easy to find any particular term. For example, it would be easy to calculate in Example 5.5.1. In order to find in Example 5.5.2, we would need to know , and all the terms before that. So we would need to have generated the sequence up to that point to calculate a specific term.
Recursive sequences have the advantage that they can be faster (or computationally simpler) to calculate, especially if you need to generate many terms of the sequence. Computers are good at generating recursive sequences. It also may be the case that we can easily define a recursive sequence in which it is difficult, or even impossible, to express with an explicit formula.
The Fibonacci sequence is a good example of a recursively defined sequence where it is difficult to find an explicit formula. An explicit formula for the Fibonacci sequence does exist, we will see it in the next section and in Exercise 5.5.7, but it requires much more sophisticated mathematics to find it than anything we will see in this course. If you are interested, though, this is the sort of thing you would see if you take a combinatorics course. When we do see the formula, it should be clear that it is computationally much harder to work with than the recursive definiton (which is why you rarely see it when working with the Fibonacci sequence).
We want to be able to show the relationship between the recursive definition and the explicit definition for a sequence. In this section we will look at proving an explicit sequence satisfies a given recurrence relation. Since, in general, explict formulas contain more information than a recurrence relation, we can use simpler proof techniques to show an explicit sequence satisfies a recurrence relation.
To show an explicitly defined sequence satisfies a recurrence relationship always assume the explicit formula and show the recursive one. This can almost always be done with a direct proof.
Pick whichever side of the equation looks easier to start with. Do some algebra and, where appropriate, use the recursive definition for . If you get stuck, try working with the other side of the equation.