nth Term
An AP is fixed by just two numbers: the first term a and the common difference d. Every other term follows from a_n = a + (n − 1)d, which is simply "start, then add d a total of (n − 1) times". The smart CAT habit is to read d straight off the sequence (subtract any term from the next) and never count terms one by one. To find how many terms a finite AP has, use n = (last − first)/d + 1 — this is the formula that powers "how many multiples of 7 between 100 and 500" type questions. A second time-saver is counting from the back: the mth term from the end is l − (m − 1)d. If you are ever given two terms, subtract their equations to get d in one step, because the difference of the two equations kills a and leaves a clean multiple of d.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Term & general form
| nth term | a_n = a + (n − 1)d |
|---|---|
| Common difference | d = a_n − a_(n−1) |
| Number of terms | n = (last − first)/d + 1 |
| mth from the end | l − (m − 1)d (l = last term) |
| Neighbour-average property | a_n = (a_(n−1) + a_(n+1)) / 2 |
Sum & shortcuts
| Sum of n terms | S_n = n/2 [2a + (n − 1)d] |
|---|---|
| Sum via first & last | S_n = n/2 (first + last) |
| Sum from average | S_n = n × (average term) |
| First n naturals | 1 + 2 + … + n = n(n + 1)/2 |
| First n odd numbers | 1 + 3 + … + (2n − 1) = n² |