Arithmetic Progressions • Topic 3 of 5

General Form and nth Term of an AP

General form of an AP. Building on the first term $a$ and common difference $d$, every AP can be written as $a,\ a + d,\ a + 2d,\ a + 3d,\ a + 4d,\ \dots$ The key observation is that the number of $d$'s added is always one less than the position: position 1 has zero $d$'s, position 2 has one $d$, position 3 has two $d$'s, and so on.

The $n$th-term formula. Generalising that pattern gives the most-used result of the chapter: $a_n = a + (n - 1)d$. Here $a_n$ is the term in position $n$. This formula is a shortcut — it lets you find, say, the 50th term instantly without writing the first 49.

Why $(n - 1)$ and not $n$? Because no $d$ has been added yet at the very first term. Plug in $n = 1$: $a_1 = a + (1 - 1)d = a$, exactly the first term. The "$n - 1$" guarantees this. Writing $a + nd$ by mistake shifts every term by one place — the classic off-by-one slip in this topic.

Finding which term equals a given value. To check whether a number $N$ appears in an AP, set $N = a + (n - 1)d$ and solve for $n$. If $n$ turns out to be a positive integer, then $N$ is the $n$th term. If $n$ is a fraction, zero, or negative, $N$ is not a term of that AP. This is the standard "is 78 a term?" question.

Finding the last term and the number of terms. For a finite AP ending at $l$, the same formula reads $l = a + (n - 1)d$, which you can solve for $n$ to count the terms, or for $l$ if $n$ is known.

Finding $a$ and $d$ from two terms. If two terms are given (say $a_p$ and $a_q$), write each using the formula to get two equations and subtract: $a_q - a_p = (q - p)d$ gives $d$ directly. Then substitute back to find $a$, and you can reconstruct the whole AP.

The arithmetic-mean (middle-term) property. If three numbers $x, y, z$ are in AP, the middle one is the average of its neighbours: $y = \dfrac{x + z}{2}$, equivalently $2y = x + z$. This is the quickest way to fill in a missing middle term or to test three numbers for being in AP.

Terms counted from the end. A neat consequence: the $n$th term of a finite AP from the end is $l - (n - 1)d$. So the "3rd term from the end" of an AP ending at $l$ with common difference $d$ is $l - 2d$ — no need to know how many terms there are in total.

$a_n$ as a linear expression in $n$. Expanding the formula gives $a_n = dn + (a - d)$, which is a straight-line (linear) expression in $n$: the coefficient of $n$ is the common difference $d$, and the constant part is $a - d$. So if a sequence has $n$th term like $a_n = 3n + 1$, you can read off $d = 3$ at a glance, and recover $a$ from $a_1$. This also explains why plotting the terms of an AP against their position gives equally spaced points lying on a straight line.

Equally spaced terms stay in AP. Picking terms at regular gaps from an AP — say every 3rd term — again gives an AP, just with a larger common difference. This idea underlies many "the $p$th, $q$th, $r$th terms are in AP" style problems and is worth keeping in mind.

Common mistakes to avoid. (1) Using $a + nd$ instead of $a + (n - 1)d$. (2) Accepting a non-integer $n$ as a valid term position. (3) Sign errors when $d$ is negative — keep $(n - 1)d$ together and substitute carefully, e.g. $(n-1)(-3)$, not $-(n-1)3$ done loosely.

General form of an AP across positions 1 to n showing a, a plus d, a plus 2d up to a plus n minus one dGeneral form: nth term = a + (n − 1)dPosition 1234naa + da + 2da + 3da+(n−1)d+d+d+dNumber of d’s added = position − 1, so a + (n − 1)dUse (n − 1), never n — the classic off-by-one slipArithmetic mean property: the middle of three terms in AP equals the average of its two neighboursArithmetic mean: middle = average of neighbours4122012 = (4 + 20) ÷ 2If x, y, z are in AP then 2y = x + z
1
Worked Example
Find the 15th term of the AP 7, 13, 19, 25, ...
Solution
  1. $a = 7$, $d = 13 - 7 = 6$.
  2. $a_n = a + (n - 1)d$.
  3. $a_{15} = 7 + (15 - 1) \times 6 = 7 + 14 \times 6$.
  4. $= 7 + 84 = 91$.

Answer: The 15th term is 91.

2
Worked Example
Which term of the AP 100, 97, 94, 91, ... is 76?
Solution
  1. $a = 100$, $d = 97 - 100 = -3$.
  2. Set $a_n = 76$: $100 + (n - 1)(-3) = 76$.
  3. $-3(n - 1) = 76 - 100 = -24$.
  4. $n - 1 = 8 \Rightarrow n = 9$.

Answer: 76 is the 9th term.

3
Worked Example
The 8th term of an AP is 37 and the 12th term is 57. Find the AP.
Solution
  1. $a_8 = a + 7d = 37$ ... (1)
  2. $a_{12} = a + 11d = 57$ ... (2)
  3. Subtract (1) from (2): $4d = 20 \Rightarrow d = 5$.
  4. From (1): $a + 35 = 37 \Rightarrow a = 2$.
  5. AP: 2, 7, 12, 17, 22, ...

Answer: The AP is 2, 7, 12, 17, 22, ...

4
Worked Example
Is 301 a term of the AP 5, 11, 17, 23, ...?
Solution
  1. $a = 5$, $d = 6$.
  2. Set $5 + (n - 1)6 = 301 \Rightarrow (n - 1)6 = 296$.
  3. $n - 1 = \dfrac{296}{6} = 49.33\dots$, not a whole number.
  4. Since $n$ is not a positive integer, 301 is not a term.

Answer: No, 301 is not a term of this AP.

5
Worked Example
Find the 20th term from the end of the AP 3, 8, 13, ..., 253.
Solution
  1. Here $l = 253$ and $d = 5$.
  2. The $n$th term from the end is $l - (n - 1)d$.
  3. 20th from the end $= 253 - (20 - 1) \times 5 = 253 - 19 \times 5$.
  4. $= 253 - 95 = 158$.

Answer: The 20th term from the end is 158.

6
Worked Example
The 11th term of an AP is 38 and the 16th term is 73. Find the 31st term.
Solution
  1. $a + 10d = 38$ ... (1) and $a + 15d = 73$ ... (2).
  2. Subtract: $5d = 35 \Rightarrow d = 7$.
  3. From (1): $a + 70 = 38 \Rightarrow a = -32$.
  4. $a_{31} = a + 30d = -32 + 30 \times 7 = -32 + 210 = 178$.

Answer: The 31st term is 178.

7
Worked Example
Find the missing terms in the AP: ___, 13, ___, 3.
Solution
  1. The known terms 13 (position 2) and 3 (position 4) are two apart, so $13 + 2d = 3 \Rightarrow 2d = -10 \Rightarrow d = -5$.
  2. First term $a = 13 - d = 13 - (-5) = 18$.
  3. Third term $= 13 + d = 13 - 5 = 8$.
  4. AP: 18, 13, 8, 3.

Answer: The missing terms are 18 and 8 (AP: 18, 13, 8, 3).

8
Worked Example
How many three-digit numbers are divisible by 7?
Solution
  1. Smallest three-digit multiple of 7: $7 \times 15 = 105$. Largest: $7 \times 142 = 994$.
  2. These form an AP: $105, 112, \dots, 994$ with $a = 105$, $d = 7$.
  3. $994 = 105 + (n - 1)7 \Rightarrow (n - 1)7 = 889$.
  4. $n - 1 = 127 \Rightarrow n = 128$.

Answer: There are 128 such numbers.

9
Worked Example
The 17th term of an AP exceeds its 10th term by 7. Find the common difference.
Solution
  1. $a_{17} - a_{10} = 7$.
  2. $[a + 16d] - [a + 9d] = 7$.
  3. $7d = 7 \Rightarrow d = 1$.

Answer: The common difference is $d = 1$.

10
Worked Example
Determine the AP whose 3rd term is 16 and whose 7th term exceeds the 5th term by 12.
Solution
  1. $a_3 = a + 2d = 16$ ... (1).
  2. $a_7 - a_5 = 12 \Rightarrow [a + 6d] - [a + 4d] = 12 \Rightarrow 2d = 12 \Rightarrow d = 6$.
  3. From (1): $a + 12 = 16 \Rightarrow a = 4$.
  4. AP: 4, 10, 16, 22, ...

Answer: The AP is 4, 10, 16, 22, ...

11
Worked Example
If the $n$th term of an AP is given by $a_n = 5 - 3n$, find the first term and the common difference.
Solution
  1. First term: $a_1 = 5 - 3(1) = 2$.
  2. Second term: $a_2 = 5 - 3(2) = -1$.
  3. $d = a_2 - a_1 = -1 - 2 = -3$.
  4. In general $a_{n+1} - a_n = [5 - 3(n+1)] - [5 - 3n] = -3$, confirming $d = -3$.

Answer: First term $= 2$; common difference $d = -3$.

12
Worked Example
Which term of the AP 3, 15, 27, 39, ... will be 132 more than its 54th term?
Solution
  1. $a = 3$, $d = 12$. The 54th term is $a_{54} = 3 + 53 \times 12 = 3 + 636 = 639$.
  2. We want the term equal to $639 + 132 = 771$.
  3. Set $3 + (n - 1)12 = 771 \Rightarrow (n - 1)12 = 768$.
  4. $n - 1 = 64 \Rightarrow n = 65$.

Answer: The 65th term is 132 more than the 54th term.

Key Points

  • General form: $a,\ a + d,\ a + 2d,\ a + 3d,\ \dots$
  • The $n$th-term formula: $a_n = a + (n - 1)d$ — the $n$th term carries $(n - 1)$ common differences.
  • To test if $N$ is a term, solve $N = a + (n - 1)d$; it belongs only if $n$ is a positive integer.
  • Three terms in AP satisfy the arithmetic-mean property $2y = x + z$.
  • The $n$th term from the end of a finite AP is $l - (n - 1)d$.
  • Given two terms, subtract their formulas: $a_q - a_p = (q - p)d$ gives $d$ at once.
Tap an option to check your answer0 / 4
Q1.The $n$th term of an AP is:
Explanation: $a_n=a+(n-1)d$.
Q2.The 10th term of $2,5,8,\dots$ is:
Explanation: $2+9\cdot3=29$.
Q3.Which term of $3,7,11,\dots$ is $35$?
Explanation: $3+(n-1)4=35\Rightarrow n=9$.
Q4.The $n$th term of $1,3,5,\dots$ is:
Explanation: Odd numbers.