Question
Find the sum of the first 20 terms of the AP: 3, 7, 11, 15, … Also, if the sum of first n terms of an AP is Sn=3n2+5n, find the 10th term.
Solution — Step by Step
Here a=3, d=7−3=4, n=20.
Sn=2n[2a+(n−1)d]=220[2(3)+19(4)]=10[6+76]=10×82=820
The nth term of an AP can be found from the sum formula: an=Sn−Sn−1
a10=S10−S9=[3(100)+5(10)]−[3(81)+5(9)]
=[300+50]−[243+45]=350−288=62
Why This Works
graph TD
A["AP Problem: What is asked?"] --> B["Find a specific term?"]
A --> C["Find the sum of n terms?"]
A --> D["Given S_n, find a term?"]
B --> E["Use a_n = a + n-1 d"]
C --> F["Use S_n = n/2 times 2a + n-1 d"]
C --> G["Or S_n = n/2 times a + l if last term known"]
D --> H["Use a_n = S_n - S_{n-1}"]
The sum formula comes from a beautiful trick by Gauss. Write the AP forward and backward:
Sn=a+(a+d)+(a+2d)+...+l
Sn=l+(l−d)+(l−2d)+...+a
Add term by term: 2Sn=n(a+l), so Sn=2n(a+l). Substituting l=a+(n−1)d gives the standard formula.
The an=Sn−Sn−1 trick works because Sn is the sum of first n terms and Sn−1 is the sum of first n−1 terms. The difference must be the nth term alone.
In JEE Main, if Sn is given as a quadratic in n (like Sn=3n2+5n), the sequence is always an AP. The common difference is twice the coefficient of n2. Here d=2×3=6. This shortcut saves time.
Alternative Method
When you know the first term a and last term l, use the simpler formula: Sn=2n(a+l). This is faster when the last term is directly given or easy to compute.
For the first part: a20=3+19(4)=79. So S20=220(3+79)=10×82=820. Same answer, less arithmetic.
Common Mistake
Using n instead of n−1 in the nth term formula. The formula is an=a+(n−1)d, not a+nd. The first term is a1=a+0⋅d=a, not a+d. This off-by-one error is the most common mistake in AP problems. When in doubt, verify: a1=a+(1−1)d=a ✓, a2=a+(2−1)d=a+d ✓.
nth term: an=a+(n−1)d
Sum of n terms: Sn=2n[2a+(n−1)d]=2n(a+l)
nth term from sum: an=Sn−Sn−1 (for n≥2)
If Sn=An2+Bn, then d=2A and a=A+B