Question
Find the 20th term of the arithmetic progression: 3, 7, 11, 15, …
Solution — Step by Step
The first term is . The common difference (subtract any consecutive pair — same result throughout the AP).
The general term of any AP is:
This formula comes directly from the idea that to reach the th term, we start at and add exactly times — not times. That off-by-one is where most marks are lost.
We know , , . The pattern holds: each term is 4 more than the previous. At , we’ve added a total of 19 times from , so checks out.
Why This Works
An AP is just a sequence where each gap is constant. That constant gap is . So the 2nd term is , the 3rd is , and the th term is — because we take exactly steps to get from the 1st to the th term.
Think of it like a staircase: if each step is 4 cm high and you’re on the 1st step at height 3 cm, then step 20 is at cm. The number of gaps between 20 steps is 19, not 20.
This formula is fundamental — NCERT Class 10 Chapter 5 builds everything else (sum of AP, finding number of terms, middle term) on top of this single idea.
Alternative Method
We can use the recursive approach: write out the pattern.
From , the th term is .
This is slower than the formula but useful for verifying your answer or when you’ve forgotten the formula mid-exam. Count: , , , . Each jump of 5 terms adds to the value.
In board exams, this “jumping by 5 terms” trick saves time for verification. Jump from to : add , giving 79. Done in 10 seconds.
Common Mistake
The most common error: using instead of .
Students write . This is wrong — it gives you a term that doesn’t exist in the sequence.
Remember: between the 1st and 20th term, there are only 19 gaps, not 20. The formula is , and that is non-negotiable. This exact slip costs 2-3 marks every year in CBSE board papers.