Overview
These notes cover sequences defined by an nth-term formula, how to find terms, how to decide if a number is in a sequence, and how to find the nth-term rule from given terms, including special sequences (Fibonacci and geometric).
Using an nth-term rule to find terms
- The nth-term (position-to-term rule) gives the value of the term at position n in the sequence.
- To find specific terms, substitute n = 1, 2, 3, β¦ into the nth-term expression.
Example: nth-term 5n + 1
- First term: n = 1 β 5(1) + 1 = 6
- Second term: n = 2 β 5(2) + 1 = 11
- Third term: n = 3 β 5(3) + 1 = 16
- 100th term: n = 100 β 5(100) + 1 = 501
Example: nth-term 9n β 3
- First term: n = 1 β 9(1) β 3 = 6
- Second term: n = 2 β 9(2) β 3 = 15
- Third term: n = 3 β 9(3) β 3 = 24
Example: nth-term 9n β 2 (first five terms)
- Tβ: n = 1 β 9(1) β 2 = 7
- Tβ: n = 2 β 9(2) β 2 = 16
- Tβ: n = 3 β 9(3) β 2 = 25
- Tβ: add 9 β 25 + 9 = 34
- Tβ
: add 9 β 34 + 9 = 43 (check: 9(5) β 2 = 43)
Summary table: evaluating nth-term rules
| Nth-term rule | n | Term value |
|---|
| 5n + 1 | 1 | 6 |
| 2 | 11 |
| 3 | 16 |
| 9n β 3 | 1 | 6 |
| 2 | 15 |
| 3 | 24 |
| 9n β 2 | 1 | 7 |
| 2 | 16 |
| 3 | 25 |
| 4 | 34 |
| 5 | 43 |
Testing whether a number is in a sequence
- Idea: If a number T is a term, there exists a whole number n such that nth-term expression = T.
- Solve the equation and check whether n is a whole number (positive integer).
Example: nth-term 3n β 5; is 95 in the sequence?
- Solve 3n β 5 = 95
- Add 5: 3n = 100
- Divide by 3: n = 100/3 = 33.\overline{3}
- n is not a whole number, so 95 is not in the sequence.
- Check nearby terms:
- 33rd term: 3(33) β 5 = 99 β 5 = 94
- 34th term: 3(34) β 5 = 102 β 5 = 97
- 95 lies between 94 and 97, so it is not a term.
Example: nth-term 4n + 1; is 37 in the sequence?
- Solve 4n + 1 = 37
- Subtract 1: 4n = 36
- Divide by 4: n = 9
- n is a whole number, so 37 is a term; it is the 9th term.
Example: nth-term 9n β 2; is 80 in the sequence?
- Solve 9n β 2 = 80
- Add 2: 9n = 82
- Divide by 9: n = 82/9
- 82 is not in the 9 times table; n is not a whole number.
- 9 Γ 9 = 81, so 82/9 = 9 and 1/9.
- 80 is not in the sequence; it lies between the 9th and 10th terms.
Summary table: checking membership
| Nth-term rule | Target value | Equation | n | In sequence? | Notes |
|---|
| 3n β 5 | 95 | 3n β 5 = 95 | 100/3 | No | Between 33rd (94) and 34th (97) |
| 4n + 1 | 37 | 4n + 1 = 37 | 9 | Yes | 9th term |
| 9n β 2 | 80 | 9n β 2 = 80 | 82/9 | No | Between 9th and 10th terms |
Finding an nth-term rule from a sequence
General method for linear sequences (constant difference):
- Find the term-to-term difference (d).
- Write dn as the basic part (d times table).
- Compare dn with the given sequence to find the constant adjustment (add or subtract a fixed number).
- Write nth-term as dn Β± constant.
Example: 7, 11, 15, 19, 23
- Differences: +4 each time β starts with 4n (4 times table).
- 4 times table: 4, 8, 12, 16, 20.
- Compare: sequence = times table + 3 each time.
- nth-term: 4n + 3.
Example: 4, 10, 16, 22, 28
- Differences: +6 each time β starts with 6n (6 times table).
- 6 times table: 6, 12, 18, 24, 30.
- Sequence is always 2 less than 6n.
- nth-term: 6n β 2.
Example: decreasing sequence with difference β5
- Sequence goes down by 5 each time β use β5n (negative 5 times table).
- β5 times table: β5, β10, β15, β¦
- To match the given sequence, we must add 29 to β5n.
- nth-term: β5n + 29 (or 29 β 5n).
Example: decreasing sequence with difference β3
- Sequence goes down by 3 each time β use β3n (negative 3 times table).
- β3 times table: β3, β6, β9, β12, β15.
- We must add 35 to β3n to get the given terms.
- nth-term: β3n + 35.
Example: 5, 12, 19, 26, 33
- Differences: +7 each time β start with 7n.
- 7 times table: 7, 14, 21, 28, 35.
- Sequence is 2 less than 7n each time.
- nth-term: 7n β 2.
Summary table: forming nth-term rules
| Sequence | Difference | Base table | Adjustment | Nth-term rule |
|---|
| 7, 11, 15, 19, 23 | +4 | 4n | +3 | 4n + 3 |
| 4, 10, 16, 22, 28 | +6 | 6n | β2 | 6n β 2 |
| (down by 5 each term) | β5 | β5n | +29 | β5n + 29 |
| (down by 3 each term) | β3 | β3n | +35 | β3n + 35 |
| 5, 12, 19, 26, 33 | +7 | 7n | β2 | 7n β 2 |
Special sequences: Fibonacci and geometric
Fibonacci sequence
- Rule: each term (from the third onwards) is the sum of the previous two terms.
- Example given (first six terms shown; starts 1, 2, 3, 5, 8, 13 pattern implied by explanation):
- 1st + 2nd β 3rd
- 2nd + 3rd β 4th
- 3rd + 4th β 5th
- 4th + 5th β 6th
- Finding next terms:
- 5th term = 3, 6th term = 5 β 7th term = 3 + 5 = 8
- 8th term = 5 + 8 = 13
- Could continue: next would be 8 + 13 = 21, then 13 + 21, etc.
Geometric sequence (multiplicative pattern)
- Rule: multiply by the same number each time to get the next term.
- Example: doubling sequence
- Each term is 2 Γ previous term.
- Next term after 48: 2 Γ 48 = 96
- Next term after 96: 2 Γ 96 = 192
Summary table: special sequences
| Type | Rule | Example step | Next terms shown |
|---|
| Fibonacci | Next term = sum of previous two terms | 3, 5 β 8; 5, 8 β 13 | 8, 13 (then 21, β¦) |
| Geometric | Next term = previous term Γ constant multiplier | Multiply by 2: 48 β 96 β β¦ | 96, 192 |
Key Terms & Definitions
- nth-term: An expression that gives the term at position n in a sequence.
- Position-to-term rule: Another name for the nth-term rule.
- Term-to-term rule: The rule that describes how to get from one term to the next (e.g. βadd 4β, βmultiply by 2β).
- Linear sequence: A sequence with a constant difference between terms (e.g. +4 each time).
- Geometric sequence: A sequence where each term is obtained by multiplying the previous term by a fixed number.
- Fibonacci sequence: A sequence where each term is the sum of the previous two terms.
- Whole number (for n): Positive integer index (1, 2, 3, β¦); required for a value to be a valid term position.
Action Items / Next Steps
- Practise finding first several terms for given nth-term formulas by substitution.
- Practise testing whether a given number is in a sequence by solving an equation for n.
- Practise deriving nth-term rules: find the difference, form dn, then determine and apply the constant adjustment.
- Learn to recognise Fibonacci and geometric sequences from their defining patterns.