Sequences and Series: Tricky Questions Solved (7)

easy 2 min read

Question

Find the sum of the first 2020 terms of an arithmetic progression whose first term is 55 and common difference is 33.

Solution — Step by Step

For an arithmetic progression with first term aa and common difference dd:

Sn=n2[2a+(n1)d]S_n = \frac{n}{2} [2a + (n-1) d]

a=5a = 5, d=3d = 3, n=20n = 20:

S20=202[2(5)+19(3)]=10[10+57]=10×67=670S_{20} = \frac{20}{2} [2(5) + 19(3)] = 10 [10 + 57] = 10 \times 67 = 670

Final answer: S20=670S_{20} = 670.

Why This Works

The formula comes from a clever pairing: the first and last terms together, the second and second-to-last, etc., all give the same total a+ana + a_n. There are n/2n/2 such pairs, giving Sn=(n/2)(a+an)S_n = (n/2)(a + a_n). Substituting an=a+(n1)da_n = a + (n-1)d gives the formula.

Alternative Method

Use Sn=(n/2)(a+an)S_n = (n/2)(a + a_n) directly. First compute a20=a+19d=5+57=62a_{20} = a + 19d = 5 + 57 = 62. Then S20=10×(5+62)=10×67=670S_{20} = 10 \times (5 + 62) = 10 \times 67 = 670. Same answer, slightly faster if you’re given the first and last terms instead of aa and dd.

Memorise both forms of the AP sum formula. JEE Main MCQs often give “first term, last term, number of terms” — for those, Sn=(n/2)(a+l)S_n = (n/2)(a + l) is two seconds faster.

Common Mistake

Students sometimes write (n1)(n-1) where it should be nn, or vice versa. Triple-check: the AP has nn terms total; the common difference appears (n1)(n-1) times in ana_n because an=a+(n1)da_n = a + (n-1)d. The formula has (n1)(n-1) inside the brackets and n/2n/2 outside.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next