Sequences
| English | Chinese | Pinyin |
|---|---|---|
| sequence | 数列 | shù liè |
| term-to-term rule | 递推规则 | dì tuī guī zé |
| common difference | 公差 | gōng chāi |
| nth term | 通项 | tōng xiàng |
| quadratic sequence | 二次数列 | èr cì shù liè |
| geometric sequence | 等比数列 | děng bǐ shù liè |
| common ratio | 公比 | gōng bǐ |
Predicting the future
- A sunflower adds a ring of petals following the Fibonacci pattern: 1, 1, 2, 3, 5, 8, 13, …
- Sequences 数列 are patterns in numbers. Once you know the rule, you can predict any term — even the millionth.
Term-to-term rule 递推规则
- The simplest sequences add (or subtract) a fixed amount each time: $2, 5, 8, 11, \dots$ goes up by $3$.
- This is the term-to-term rule (the common difference 公差).

Romanesco broccoli: self-similar spirals form a natural number pattern
Sequences
uₙ = a + (n − 1)d
An arithmetic sequence adds the same step each time; the sum grows steadily.
The nth term 通项 (position-to-term rule)
- For a linear sequence (constant difference $d$), the nth term is $dn + c$.
- $2, 5, 8, 11, \dots$: difference $d = 3$, first term $= 2$, so $3n - 1$.
- Check: $n=1 \Rightarrow 3(1)-1 = 2$ ✓; $\;n=4 \Rightarrow 3(4)-1 = 11$ ✓.
Finding c. The sequence starts at $2$ when $n=1$: $3(1) + c = 2 \Rightarrow c = -1$. So the nth term is $3n - 1$.
The nth term of 2, 5, 8, 11, … is 3n − 1. What is the 10th term?
3 × 10 − 1 = 30 − 1 = 29.
For a linear sequence going up by 3 each time, the nth term contains:
A constant difference of 3 means the nth term is 3n adjusted by a constant.
The nth term of 4, 7, 10, 13, … is 3n + ______.
3(1) + c = 4 → c = 1. The nth term is 3n + 1.
Quadratic sequences 二次数列 (Extended)
- When the first differences change but the second differences are constant, it's a quadratic sequence.
- $2, 5, 10, 17, \dots$: first differences $3, 5, 7$; second differences $2, 2$.
- The $n^2$ coefficient is half the second difference: $\dfrac{2}{2} = 1$, so the $n^2$ term is $n^2$.
- Adjust: $n^2 + 1$ gives $2, 5, 10, 17$. ✓

Number lines show patterns too: in a quadratic sequence, the gaps between terms grow steadily.
Half the second difference. The $n^2$ coefficient is $\dfrac{\text{second difference}}{2}$, not the second difference itself. For $2, 5, 10, 17$ the second difference is $2$, giving $n^2$ (not $2n^2$).
The nth term of 2, 5, 10, 17, … is n² + 1. What is the 5th term?
5² + 1 = 25 + 1 = 26.
In a quadratic sequence, the second differences are constant.
The first differences change steadily, but the second differences (differences of differences) are constant.
Geometric sequences 等比数列
- Each term is multiplied by a fixed ratio: $3, 6, 12, 24, \dots$ (multiply by 2 each time).
- The nth term is $a \times r^{n-1}$, where $a$ is the first term and $r$ is the common ratio 公比.
- $3 \times 2^{n-1}$: $\;n=1 \Rightarrow 3$, $\;n=4 \Rightarrow 3 \times 8 = 24$. ✓
The nth term of 3, 6, 12, 24, … is 3 × 2^(n−1). What is the 6th term?
3 × 2⁵ = 3 × 32 = 96.
You've got it
- linear sequence: nth term $= dn + c$ (constant difference $d$) → $2,5,8,11 \to 3n-1$
- quadratic (Extended): second difference $= 2 \times$ the $n^2$ coefficient → $2,5,10,17 \to n^2 + 1$
- geometric: nth term $= a \times r^{n-1}$ (constant ratio $r$) → $3,6,12,24 \to 3 \times 2^{n-1}$