Explicit and Recursive Sequences
Explicit and Recursive Sequences
Sequences are ordered lists of numbers that follow a pattern. In 11th Grade Maths, sequences are important because they help us describe repeated change, predict future values, and model real-life situations such as saving money, loan balances, and population growth.
There are two common ways to define a sequence:
- Explicit form: gives the value of a term directly from its position number.
- Recursive form: gives each term using one or more earlier terms.
Understanding both forms is useful because sometimes one form is easier for calculating a specific term, while the other is better for showing how the pattern grows step by step.
1. What is a sequence?
A sequence is a list of numbers written in a specific order. Each number is called a term. The position of a term is usually represented by the variable \(n\).
For example, in the sequence
$$2, 5, 8, 11, 14, \dots$$
the first term is \(2\), the second term is \(5\), and the third term is \(8\).
We often use notation like \(a_n\) to mean “the \(n\)th term of the sequence.” So \(a_1\) is the first term, \(a_2\) is the second term, and so on.
2. Explicit sequences
An explicit sequence gives a formula for the \(n\)th term directly. This means you can find any term without needing the earlier ones.
A general explicit rule looks like:
$$a_n = \text{formula involving } n$$
For example, consider the sequence
$$4, 7, 10, 13, 16, \dots$$
This sequence increases by \(3\) each time. Its explicit rule is
$$a_n = 4 + (n-1)3$$
This can also be simplified:
$$a_n = 3n + 1$$
Now you can find any term directly. For example, the 10th term is
$$a_{10} = 3(10) + 1 = 31$$
Why explicit rules are useful:
- They let you find a term quickly.
- You do not need to list all earlier terms.
- They are especially helpful for large term numbers, such as the 50th or 100th term.
3. Recursive sequences
A recursive sequence defines a term using one or more previous terms. Because of this, a recursive rule must include at least one starting value.
A recursive sequence often looks like this:
$$a_1 = \text{starting term}$$
$$a_n = \text{rule using } a_{n-1}$$
For the sequence
$$4, 7, 10, 13, 16, \dots$$
the recursive rule is
$$a_1 = 4$$
$$a_n = a_{n-1} + 3 \quad \text{for } n \ge 2$$
This means:
- Start at \(4\).
- To get each next term, add \(3\).
Why recursive rules are useful:
- They clearly show how the pattern changes from one term to the next.
- They are useful in real-life situations where each value depends on the one before it.
- They are common in financial mathematics, such as repeated deposits or interest growth.
4. Arithmetic sequences
An arithmetic sequence is a sequence where the difference between consecutive terms is constant.
Example:
$$6, 10, 14, 18, 22, \dots$$
The common difference is \(4\).
For an arithmetic sequence:
- Recursive form: add the common difference each time.
- Explicit form: use the first term and the common difference.
The explicit formula for an arithmetic sequence is
$$a_n = a_1 + (n-1)d$$
where:
- \(a_1\) is the first term
- \(d\) is the common difference
The recursive formula is
$$a_1 = \text{first term}$$
$$a_n = a_{n-1} + d \quad \text{for } n \ge 2$$
5. Geometric sequences
A geometric sequence is a sequence where each term is found by multiplying the previous term by the same constant ratio.
Example:
$$3, 6, 12, 24, 48, \dots$$
Each term is multiplied by \(2\), so the common ratio is \(2\).
For a geometric sequence:
- Recursive form: multiply by the common ratio each time.
- Explicit form: multiply the first term by the ratio raised to a power.
The explicit formula for a geometric sequence is
$$a_n = a_1 r^{n-1}$$
where:
- \(a_1\) is the first term
- \(r\) is the common ratio
The recursive formula is
$$a_1 = \text{first term}$$
$$a_n = r a_{n-1} \quad \text{for } n \ge 2$$
6. How to tell whether a sequence is explicit or recursive
You can identify the form by looking at what the rule uses.
- If the rule uses only \(n\), it is explicit.
- If the rule uses an earlier term like \(a_{n-1}\), it is recursive.
Examples:
- \(a_n = 5n - 2\) is explicit.
- \(a_1 = 3, \; a_n = a_{n-1} + 5\) is recursive.
- \(a_n = 7(2)^{n-1}\) is explicit.
- \(a_1 = 7, \; a_n = 2a_{n-1}\) is recursive.
7. Worked Example 1: Finding terms from an explicit rule
Suppose a sequence is defined by
$$a_n = 2n + 5$$
Find the first four terms.
Step 1: Substitute \(n = 1\).
$$a_1 = 2(1) + 5 = 7$$
Step 2: Substitute \(n = 2\).
$$a_2 = 2(2) + 5 = 9$$
Step 3: Substitute \(n = 3\).
$$a_3 = 2(3) + 5 = 11$$
Step 4: Substitute \(n = 4\).
$$a_4 = 2(4) + 5 = 13$$
So the sequence is
$$7, 9, 11, 13, \dots$$
This is an arithmetic sequence with common difference \(2\).
8. Worked Example 2: Finding terms from a recursive rule
Suppose a sequence is defined by
$$a_1 = 6$$
$$a_n = a_{n-1} + 4 \quad \text{for } n \ge 2$$
Find the first five terms.
Step 1: Start with the first term.
$$a_1 = 6$$
Step 2: Add \(4\) each time.
$$a_2 = a_1 + 4 = 6 + 4 = 10$$
$$a_3 = a_2 + 4 = 10 + 4 = 14$$
$$a_4 = a_3 + 4 = 14 + 4 = 18$$
$$a_5 = a_4 + 4 = 18 + 4 = 22$$
So the first five terms are
$$6, 10, 14, 18, 22$$
9. Worked Example 3: Writing both forms of a sequence
Consider the sequence
$$12, 9, 6, 3, 0, \dots$$
Write both the recursive rule and the explicit rule.
Step 1: Identify the pattern.
Each term decreases by \(3\), so this is an arithmetic sequence with common difference \(-3\).
Recursive form:
Start with the first term \(12\), then subtract \(3\) each time.
$$a_1 = 12$$
$$a_n = a_{n-1} - 3 \quad \text{for } n \ge 2$$
Explicit form:
Use the arithmetic formula:
$$a_n = a_1 + (n-1)d$$
Substitute \(a_1 = 12\) and \(d = -3\):
$$a_n = 12 + (n-1)(-3)$$
$$a_n = 12 - 3(n-1)$$
$$a_n = 15 - 3n$$
So the explicit rule is
$$a_n = 15 - 3n$$
10. Worked Example 4: Geometric sequence in a financial context
A savings amount starts at \(\$200\) and doubles each year. Let \(a_n\) be the amount after \(n\) years, with \(a_1 = 200\).
Find a recursive rule, an explicit rule, and the amount in year 5.
Step 1: Identify the pattern.
Doubling means multiplying by \(2\) each time. This is a geometric sequence.
Recursive rule:
$$a_1 = 200$$
$$a_n = 2a_{n-1} \quad \text{for } n \ge 2$$
Explicit rule:
Use the geometric formula:
$$a_n = a_1 r^{n-1}$$
Here, \(a_1 = 200\) and \(r = 2\), so
$$a_n = 200(2)^{n-1}$$
Step 2: Find the amount in year 5.
$$a_5 = 200(2)^{5-1}$$
$$a_5 = 200(2)^4$$
$$a_5 = 200(16) = 3200$$
So the amount in year 5 is \(\$3200\).
11. Converting between recursive and explicit forms
You should be able to move between the two forms, especially for arithmetic and geometric sequences.
For arithmetic sequences:
- Recursive: identify the amount added or subtracted each time.
- Explicit: use \(a_n = a_1 + (n-1)d\).
For geometric sequences:
- Recursive: identify the number multiplied each time.
- Explicit: use \(a_n = a_1 r^{n-1}\).
12. Common mistakes to avoid
- Forgetting the starting term in a recursive sequence. Without it, the sequence is not fully defined.
- Mixing up \(n\) and \(n-1\) in explicit formulas. The exponent or multiplier often involves \(n-1\), not just \(n\).
- Confusing arithmetic and geometric sequences. Arithmetic uses addition or subtraction. Geometric uses multiplication or division.
- Using the wrong sign for a common difference. If terms decrease, the difference is negative.
13. Quick comparison
- Explicit sequence: find a term directly from \(n\).
- Recursive sequence: find a term from earlier terms.
- Arithmetic sequence: constant difference.
- Geometric sequence: constant ratio.
14. Summary
Sequences can be written in explicit form or recursive form. An explicit rule tells you the value of the \(n\)th term directly, while a recursive rule tells you how to get each term from a previous term.
Arithmetic sequences change by a constant difference, and geometric sequences change by a constant ratio. For arithmetic sequences, use
$$a_n = a_1 + (n-1)d$$
and for geometric sequences, use
$$a_n = a_1r^{n-1}$$
When solving problems, first look for the pattern: are you adding the same number each time or multiplying by the same number each time? That will help you decide which kind of sequence you have and whether an explicit or recursive rule is most useful.
Put what you read to the test
You've worked through Explicit and Recursive Sequences. Try answering a few questions to see what stuck — and what might deserve a quick reread before you move on.