Sequences and Series: Conceptual Doubts Cleared (4)

easy 2 min read

Question

The sum of the first nn terms of an AP is 3n2+5n3n^2 + 5n. Find the nnth term, and verify that the sequence is indeed arithmetic.

Solution — Step by Step

The nnth term equals the difference between SnS_n and Sn1S_{n-1}:

an=SnSn1a_n = S_n - S_{n-1}

This works for any sequence, not just APs.

Sn1=3(n1)2+5(n1)=3(n22n+1)+5n5=3n26n+3+5n5=3n2n2S_{n-1} = 3(n-1)^2 + 5(n-1) = 3(n^2 - 2n + 1) + 5n - 5 = 3n^2 - 6n + 3 + 5n - 5 = 3n^2 - n - 2 an=(3n2+5n)(3n2n2)=6n+2a_n = (3n^2 + 5n) - (3n^2 - n - 2) = 6n + 2

Common difference d=anan1=(6n+2)(6(n1)+2)=6d = a_n - a_{n-1} = (6n + 2) - (6(n-1) + 2) = 6. The common difference is constant, so yes, it is an AP. First term a1=6(1)+2=8a_1 = 6(1) + 2 = 8.

Final Answer: an=6n+2a_n = 6n + 2, with first term 88 and common difference 66.

Why This Works

For any sequence with cumulative sum SnS_n, the nnth term is SnSn1S_n - S_{n-1} — this telescopes the cumulative sum back into individual terms. The sequence is an AP if and only if SnS_n is a quadratic in nn with no constant term — and the coefficient of n2n^2 equals d/2d/2.

Here Sn=3n2+5nS_n = 3n^2 + 5n has no constant term, so it’s a clean AP. If the formula had been, say, 3n2+5n+73n^2 + 5n + 7, the sequence would still have an=6n+2a_n = 6n + 2 for n2n \geq 2 but a different a1a_1 (the "+7+7" disrupts the pattern).

Alternative Method

Compute a1=S1a_1 = S_1 and a2=S2S1a_2 = S_2 - S_1 directly, then d=a2a1d = a_2 - a_1, then an=a1+(n1)da_n = a_1 + (n-1)d. Same answer, more arithmetic.

Plugging n=1n = 1 into an=SnSn1a_n = S_n - S_{n-1} requires S0S_0, which we usually take as 00. Some students skip this and start the formula from n=2n = 2, then forget to compute a1a_1 separately. Always verify the first term independently.

Quick test for AP from SnS_n: if Sn=An2+BnS_n = An^2 + Bn, then d=2Ad = 2A and a1=A+Ba_1 = A + B. Memorize this — saves time on MCQs.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next