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.
Find the 15th term of the AP 7, 13, 19, 25, ...
Solution- $a = 7$, $d = 13 - 7 = 6$.
- $a_n = a + (n - 1)d$.
- $a_{15} = 7 + (15 - 1) \times 6 = 7 + 14 \times 6$.
- $= 7 + 84 = 91$.
Answer: The 15th term is 91.
Which term of the AP 100, 97, 94, 91, ... is 76?
Solution- $a = 100$, $d = 97 - 100 = -3$.
- Set $a_n = 76$: $100 + (n - 1)(-3) = 76$.
- $-3(n - 1) = 76 - 100 = -24$.
- $n - 1 = 8 \Rightarrow n = 9$.
Answer: 76 is the 9th term.
The 8th term of an AP is 37 and the 12th term is 57. Find the AP.
Solution- $a_8 = a + 7d = 37$ ... (1)
- $a_{12} = a + 11d = 57$ ... (2)
- Subtract (1) from (2): $4d = 20 \Rightarrow d = 5$.
- From (1): $a + 35 = 37 \Rightarrow a = 2$.
- AP: 2, 7, 12, 17, 22, ...
Answer: The AP is 2, 7, 12, 17, 22, ...
Is 301 a term of the AP 5, 11, 17, 23, ...?
Solution- $a = 5$, $d = 6$.
- Set $5 + (n - 1)6 = 301 \Rightarrow (n - 1)6 = 296$.
- $n - 1 = \dfrac{296}{6} = 49.33\dots$, not a whole number.
- Since $n$ is not a positive integer, 301 is not a term.
Answer: No, 301 is not a term of this AP.
Find the 20th term from the end of the AP 3, 8, 13, ..., 253.
Solution- Here $l = 253$ and $d = 5$.
- The $n$th term from the end is $l - (n - 1)d$.
- 20th from the end $= 253 - (20 - 1) \times 5 = 253 - 19 \times 5$.
- $= 253 - 95 = 158$.
Answer: The 20th term from the end is 158.
The 11th term of an AP is 38 and the 16th term is 73. Find the 31st term.
Solution- $a + 10d = 38$ ... (1) and $a + 15d = 73$ ... (2).
- Subtract: $5d = 35 \Rightarrow d = 7$.
- From (1): $a + 70 = 38 \Rightarrow a = -32$.
- $a_{31} = a + 30d = -32 + 30 \times 7 = -32 + 210 = 178$.
Answer: The 31st term is 178.
Find the missing terms in the AP: ___, 13, ___, 3.
Solution- The known terms 13 (position 2) and 3 (position 4) are two apart, so $13 + 2d = 3 \Rightarrow 2d = -10 \Rightarrow d = -5$.
- First term $a = 13 - d = 13 - (-5) = 18$.
- Third term $= 13 + d = 13 - 5 = 8$.
- AP: 18, 13, 8, 3.
Answer: The missing terms are 18 and 8 (AP: 18, 13, 8, 3).
How many three-digit numbers are divisible by 7?
Solution- Smallest three-digit multiple of 7: $7 \times 15 = 105$. Largest: $7 \times 142 = 994$.
- These form an AP: $105, 112, \dots, 994$ with $a = 105$, $d = 7$.
- $994 = 105 + (n - 1)7 \Rightarrow (n - 1)7 = 889$.
- $n - 1 = 127 \Rightarrow n = 128$.
Answer: There are 128 such numbers.
The 17th term of an AP exceeds its 10th term by 7. Find the common difference.
Solution- $a_{17} - a_{10} = 7$.
- $[a + 16d] - [a + 9d] = 7$.
- $7d = 7 \Rightarrow d = 1$.
Answer: The common difference is $d = 1$.
Determine the AP whose 3rd term is 16 and whose 7th term exceeds the 5th term by 12.
Solution- $a_3 = a + 2d = 16$ ... (1).
- $a_7 - a_5 = 12 \Rightarrow [a + 6d] - [a + 4d] = 12 \Rightarrow 2d = 12 \Rightarrow d = 6$.
- From (1): $a + 12 = 16 \Rightarrow a = 4$.
- AP: 4, 10, 16, 22, ...
Answer: The AP is 4, 10, 16, 22, ...
If the $n$th term of an AP is given by $a_n = 5 - 3n$, find the first term and the common difference.
Solution- First term: $a_1 = 5 - 3(1) = 2$.
- Second term: $a_2 = 5 - 3(2) = -1$.
- $d = a_2 - a_1 = -1 - 2 = -3$.
- 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$.
Which term of the AP 3, 15, 27, 39, ... will be 132 more than its 54th term?
Solution- $a = 3$, $d = 12$. The 54th term is $a_{54} = 3 + 53 \times 12 = 3 + 636 = 639$.
- We want the term equal to $639 + 132 = 771$.
- Set $3 + (n - 1)12 = 771 \Rightarrow (n - 1)12 = 768$.
- $n - 1 = 64 \Rightarrow n = 65$.
Answer: The 65th term is 132 more than the 54th term.