Sequences and Factorial Notation
Sequences and Factorial Notation
In mathematics, a sequence is an ordered list of numbers. Each number in the list is called a term. Because order matters, the position of each term is important.
For example, in the sequence \(2, 4, 6, 8, 10, \dots\), the first term is \(2\), the second term is \(4\), and the third term is \(6\).
Sequences can be described in two main ways:
- with an explicit formula, which gives the value of the \(n\)th term directly,
- with a recursive formula, which tells how to get each term from the one before it.
This lesson also introduces factorial notation, written with an exclamation mark. Factorials appear often in sequences, counting problems, and combinatorics.
1. Understanding sequences
A sequence is usually written as \(a_1, a_2, a_3, \dots\), where \(a_n\) means the term in position \(n\).
For example, if a sequence begins \(5, 8, 11, 14, \dots\), then:
- \(a_1 = 5\)
- \(a_2 = 8\)
- \(a_3 = 11\)
- \(a_4 = 14\)
This sequence increases by \(3\) each time.
2. Explicit formulas
An explicit formula gives the value of a term directly from its position number \(n\). This means you do not need to know the term before it.
For the sequence \(5, 8, 11, 14, \dots\), an explicit formula is
$$a_n = 5 + 3(n-1)$$This works because the sequence starts at \(5\) and adds \(3\) for each new term.
We can simplify this formula:
$$a_n = 5 + 3n - 3 = 3n + 2$$So another explicit formula is
$$a_n = 3n + 2$$If you want the 10th term, substitute \(n=10\):
$$a_{10} = 3(10) + 2 = 32$$Explicit formulas are useful when you want to jump straight to a particular term.
3. Recursive formulas
A recursive formula defines a sequence using one or more earlier terms. To use a recursive rule, you must know the starting term.
For the sequence \(5, 8, 11, 14, \dots\), a recursive definition is:
$$a_1 = 5$$ $$a_n = a_{n-1} + 3 \quad \text{for } n \geq 2$$This says:
- start with \(5\),
- then add \(3\) each time to get the next term.
Recursive formulas are useful when a pattern is built step by step.
4. Explicit vs recursive definitions
Both forms describe the same sequence, but they do it differently.
- Explicit: good for finding any term quickly.
- Recursive: good for showing how the pattern grows from one term to the next.
For example, the sequence \(2, 4, 8, 16, 32, \dots\) can be written as:
Explicit form:
$$a_n = 2^n$$This works because:
- \(a_1 = 2^1 = 2\)
- \(a_2 = 2^2 = 4\)
- \(a_3 = 2^3 = 8\)
Recursive form:
$$a_1 = 2$$ $$a_n = 2a_{n-1} \quad \text{for } n \geq 2$$This says each term is twice the previous term.
5. Recognizing common sequence patterns
Two common types of sequences in Grade 12 mathematics are:
- Arithmetic sequences: add the same number each time.
- Geometric sequences: multiply by the same number each time.
Arithmetic example: \(7, 10, 13, 16, \dots\)
- common difference: \(3\)
- recursive form: \(a_1=7\), \(a_n=a_{n-1}+3\)
- explicit form: \(a_n=7+3(n-1)\)
Geometric example: \(3, 6, 12, 24, \dots\)
- common ratio: \(2\)
- recursive form: \(a_1=3\), \(a_n=2a_{n-1}\)
- explicit form: \(a_n=3(2^{n-1})\)
6. Factorial notation
A factorial is the product of all positive integers from \(1\) up to a given whole number.
It is written using an exclamation mark.
For a positive integer \(n\):
$$n! = n(n-1)(n-2)\cdots 3 \cdot 2 \cdot 1$$Examples:
- \(1! = 1\)
- \(2! = 2 \cdot 1 = 2\)
- \(3! = 3 \cdot 2 \cdot 1 = 6\)
- \(4! = 4 \cdot 3 \cdot 2 \cdot 1 = 24\)
- \(5! = 5 \cdot 4 \cdot 3 \cdot 2 \cdot 1 = 120\)
A special fact to remember is:
$$0! = 1$$This may seem unusual, but it is a standard definition in mathematics and is very useful in combinatorics and formulas.
7. Factorials as recursive definitions
Factorials can also be defined recursively. This connects factorial notation directly to recursive sequences.
$$1! = 1$$ $$n! = n(n-1)! \quad \text{for } n \geq 2$$This means each factorial is found by multiplying the number by the factorial before it.
For example:
$$5! = 5 \cdot 4! = 5 \cdot 24 = 120$$This is a recursive pattern because each new value depends on the previous one.
8. Sequences involving factorials
Some sequences use factorial notation in their formulas. For example:
$$a_n = n!$$This gives the sequence:
$$1, 2, 6, 24, 120, \dots$$because:
- \(a_1 = 1! = 1\)
- \(a_2 = 2! = 2\)
- \(a_3 = 3! = 6\)
- \(a_4 = 4! = 24\)
- \(a_5 = 5! = 120\)
This sequence grows very quickly.
9. Worked Examples
Example 1: Write an explicit and recursive formula
Consider the sequence \(4, 9, 14, 19, \dots\).
Step 1: Find the pattern.
Each term increases by \(5\).
Explicit formula:
$$a_n = 4 + 5(n-1)$$Simplify:
$$a_n = 4 + 5n - 5 = 5n - 1$$So the explicit formula is
$$a_n = 5n - 1$$Recursive formula:
$$a_1 = 4$$ $$a_n = a_{n-1} + 5 \quad \text{for } n \geq 2$$Example 2: Use an explicit formula to find a term
Suppose a sequence is defined by
$$a_n = 7 \cdot 2^{n-1}$$Find \(a_5\).
Substitute \(n=5\):
$$a_5 = 7 \cdot 2^{5-1} = 7 \cdot 2^4 = 7 \cdot 16 = 112$$So the 5th term is \(112\).
Example 3: Generate terms from a recursive formula
A sequence is defined by
$$a_1 = 3$$ $$a_n = a_{n-1} + 4 \quad \text{for } n \geq 2$$Find the first five terms.
Start with the first term:
- \(a_1 = 3\)
- \(a_2 = a_1 + 4 = 3 + 4 = 7\)
- \(a_3 = a_2 + 4 = 7 + 4 = 11\)
- \(a_4 = a_3 + 4 = 11 + 4 = 15\)
- \(a_5 = a_4 + 4 = 15 + 4 = 19\)
So the first five terms are:
$$3, 7, 11, 15, 19$$Example 4: Evaluate factorials and connect them to a sequence
Let \(a_n = (n+1)!\). Find \(a_1\), \(a_2\), \(a_3\), and \(a_4\).
Substitute each value of \(n\):
- \(a_1 = (1+1)! = 2! = 2\)
- \(a_2 = (2+1)! = 3! = 6\)
- \(a_3 = (3+1)! = 4! = 24\)
- \(a_4 = (4+1)! = 5! = 120\)
So the sequence begins:
$$2, 6, 24, 120, \dots$$10. Common mistakes to avoid
- Confusing term number with term value. For example, \(a_3\) means the 3rd term, not necessarily the number 3.
- Forgetting the starting term in a recursive formula. A recursive rule is incomplete without an initial value like \(a_1\).
- Using factorial incorrectly. Remember that \(5!\) means \(5 \cdot 4 \cdot 3 \cdot 2 \cdot 1\), not \(5\).
- Forgetting that \(0! = 1\).
- Mixing up arithmetic and geometric patterns. Arithmetic sequences add; geometric sequences multiply.
11. How to decide which formula to use
When you are given a sequence, ask these questions:
- Does the pattern add the same amount each time?
- Does the pattern multiply by the same amount each time?
- Do I need a direct formula for the \(n\)th term, or a step-by-step rule?
If you want to find a faraway term quickly, an explicit formula is usually best.
If the sequence is naturally built from previous terms, a recursive formula may be more useful.
Brief Summary
A sequence is an ordered list of numbers, and each term can be described by its position. An explicit formula gives the \(n\)th term directly, while a recursive formula defines each term using earlier terms and a starting value.
Factorial notation, written as \(n!\), means multiplying all positive integers from \(n\) down to \(1\). Factorials can also be written recursively, which connects them closely to recursive sequences. Understanding both types of sequence definitions helps you describe patterns clearly and solve problems in sequences, series, and combinatorics.
Put what you read to the test
You've worked through Sequences and Factorial Notation. Try answering a few questions to see what stuck — and what might deserve a quick reread before you move on.