Sequences and Series: Step-by-Step Worked Examples (8)

medium 3 min read

Question

The sum of the first nn terms of an AP is Sn=3n2+5nS_n = 3n^2 + 5n. Find the nn-th term and the common difference.

Solution — Step by Step

Sn=3n2+5nS_n = 3n^2 + 5n.

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.

Tn=SnSn1=(3n2+5n)(3n2n2)=6n+2T_n = S_n - S_{n-1} = (3n^2 + 5n) - (3n^2 - n - 2) = 6n + 2.

Tn+1Tn=6(n+1)+2(6n+2)=6T_{n+1} - T_n = 6(n+1) + 2 - (6n + 2) = 6. So d=6d = 6.

T1=8T_1 = 8, T2=14T_2 = 14, T3=20T_3 = 20. Differences: 6,66, 6. Confirms d=6d = 6.

S1=8=T1S_1 = 8 = T_1. S2=22=8+14S_2 = 22 = 8 + 14. Confirms SnS_n formula.

Final answer: Tn=6n+2T_n = 6n + 2, d=6d = 6.

Why This Works

For any sequence (not just AP), Tn=SnSn1T_n = S_n - S_{n-1} for n2n \geq 2, and T1=S1T_1 = S_1. This identity recovers individual terms from cumulative sums.

For an AP, TnT_n is linear in nn (form a+(n1)da + (n-1)d), so any sequence whose TnT_n is linear in nn is automatically an AP. Here Tn=6n+2T_n = 6n + 2 is linear, common difference 6.

Alternative Method

For an AP, Sn=n2[2a+(n1)d]=d2n2+(ad/2)nS_n = \frac{n}{2}[2a + (n-1)d] = \frac{d}{2}n^2 + (a - d/2)n. Comparing with Sn=3n2+5nS_n = 3n^2 + 5n: d/2=3d=6d/2 = 3 \Rightarrow d = 6, and ad/2=5a=8a - d/2 = 5 \Rightarrow a = 8. Then Tn=a+(n1)d=8+6(n1)=6n+2T_n = a + (n-1)d = 8 + 6(n-1) = 6n + 2.

If SnS_n is a quadratic in nn, the sequence is an AP. The coefficient of n2n^2 is d/2d/2. Memorise this — it lets you read off the common difference instantly.

Common Mistake

Computing T1T_1 from the formula Tn=SnSn1T_n = S_n - S_{n-1} which uses S0S_0 — undefined. Always handle T1=S1T_1 = S_1 separately and apply the difference formula only for n2n \geq 2. Lucky for us, T1T_1 from the linear formula gives the same answer here, but that’s not guaranteed in general.

Sign errors in Sn1S_{n-1}. Carefully expand (n1)2=n22n+1(n-1)^2 = n^2 - 2n + 1. A single missed sign throws off the whole calculation.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next