3.1 Sequences
- Syllabus
- 2017
- Topic
- 3.1
- Level
- Higher
A sequence is an ordered list. A term-to-term rule tells how to get from one term to the next; a position-to-term rule gives any term directly from its position n.
| Rule type | Example | How to generate |
|---|---|---|
| term-to-term | start at 3, then multiply by 2 | 3,6,12,24,… |
| position-to-term | un=n2 | 1,4,9,16,… |
| named pattern | odd numbers | 1,3,5,7,… |
| named pattern | powers of 2 | 1,2,4,8,… |
Identify the starting position, apply the stated rule exactly, and label the terms. For a position rule, substitute n=1,2,3,… rather than repeatedly changing the previous value.
Check that every generated term obeys the same definition. A list may look familiar but still follow a different rule after its displayed terms.
A finite list alone does not determine one unique sequence. Use the stated rule or context; do not invent a pattern only because it fits the first few terms.
To continue a sequence, compare consecutive terms and find an operation that is applied consistently. State both the operation and any starting information needed.
| Consecutive comparison | Likely rule |
|---|---|
| constant difference | add or subtract that value |
| constant ratio | multiply or divide by that value |
| alternating changes | repeat the change cycle |
| changing first differences | inspect second differences or another structure |
For 5,9,13,17,…, each difference is 4, so the next terms are 21,25 and the term-to-term rule is ‘add 4’.
For 1,2,4,8,…, each term is twice the previous term, so the next terms are 16,32 and the rule is ‘multiply by 2’.
Do not describe 1,2,4,8 as ‘add 1, add 2, add 4’ if the intended invariant is multiply by 2. Prefer the simplest consistent rule supported by the task.
An arithmetic sequence has a constant difference d. Its nth term is linear: un=dn+c, where c is chosen so that the formula reproduces the first term.
| Step | Action |
|---|---|
| difference | calculate d from consecutive terms |
| first draft | write dn |
| adjustment | compare d with the first term to find c=a−d |
| verify | substitute n=1,2,3 |
| use | substitute a position, or solve the formula for n |
For 7,11,15,19,…, d=4. The sequence 4n begins 4,8,12,16, so add 3: un=4n+3.
To test whether 83 is a term, solve 4n+3=83, giving n=20. Because 20 is a positive integer, 83 is a term.
The common difference is the coefficient of n, not usually the complete nth term. Always include the adjustment and verify at least the first term.
Every arithmetic term satisfies un=a+(n−1)d, where a is the first term and d is the common difference. Two independent term facts can determine both unknowns.
| Given fact | Equation |
|---|---|
| second term is 7 | a+d=7 |
| fifth term is 19 | a+4d=19 |
| terms up and uq known | subtract to get (q−p)d=uq−up |
If u2=7 and u5=19, subtract a+d=7 from a+4d=19: 3d=12, so d=4 and then a=3.
Rebuild the stated terms: u2=3+4=7 and u5=3+16=19. This catches an off-by-one error in the multiplier of d.
The nth term contains (n−1)d, not nd, because the first term is reached before any common-difference steps have been taken.
The formula un=a+(n−1)d gives any term of an arithmetic sequence directly from its first term a, common difference d, and position n.
| Goal | Set up |
|---|---|
| find a term | substitute its position for n |
| find a position | set a+(n−1)d equal to the given value |
| compare terms | use uq−up=(q−p)d |
| write linear form | expand to un=dn+(a−d) |
For a=4 and d=3, u50=4+49(3)=151. The multiplier is 49 because there are 49 steps from the first term to the 50th.
If 4+(n−1)3=100, then 3n+1=100 and n=33, so 100 is the 33rd term. A non-positive or non-integer result would mean it is not a term.
This formula applies to arithmetic sequences only. A constant ratio or changing difference requires a different model.
An arithmetic series is the sum of the terms of an arithmetic sequence. Pairing first and last terms gives Sn=2n(a+l)=2n[2a+(n−1)d].
| Information available | Efficient form |
|---|---|
| first term a and last term l | Sn=2n(a+l) |
| first term a and difference d | Sn=2n[2a+(n−1)d] |
| a range of terms | subtract cumulative sums or re-index carefully |
For 4+7+10+13+⋯ with 50 terms, a=4, d=3, so S50=250[2(4)+49(3)]=25(155)=3875.
The last term is l=a+(n−1)d. Writing the series forwards and backwards makes each pair total a+l; there are n such pairs across two copies of the series.
Do not substitute the last term as n. First determine how many terms are being summed, especially when the sum starts after the first term.