Sequence and series strategy — identify AP/GP/HP and pick formula

medium CBSE JEE-MAIN 3 min read

Question

The 3rd term of an AP is 7 and the 7th term is 19. Find the sum of the first 20 terms.

(CBSE 11 / JEE Main — Sequences and Series)


Sequence Identification Flowchart

flowchart TD
    A["Given a sequence"] --> B{"Check differences"}
    B -->|"Constant difference (d)"| C["Arithmetic Progression (AP)"]
    B -->|"Constant ratio (r)"| D["Geometric Progression (GP)"]
    B -->|"Reciprocals form AP"| E["Harmonic Progression (HP)"]
    C --> C1["a_n = a + (n-1)d"]
    C --> C2["S_n = n/2 [2a + (n-1)d]"]
    D --> D1["a_n = ar^(n-1)"]
    D --> D2["S_n = a(r^n - 1)/(r - 1)"]
    E --> E1["No direct sum formula — convert to AP"]
    C --> F["AM = (a+b)/2"]
    D --> G["GM = sqrt(ab)"]
    E --> H["HM = 2ab/(a+b)"]

Solution — Step by Step

In an AP, the nnth term: an=a+(n1)da_n = a + (n-1)d

a3=a+2d=7a_3 = a + 2d = 7 … (i)

a7=a+6d=19a_7 = a + 6d = 19 … (ii)

Subtracting (i) from (ii): 4d=12d=34d = 12 \Rightarrow d = 3

From (i): a+6=7a=1a + 6 = 7 \Rightarrow a = 1

So the AP is: 1, 4, 7, 10, 13, 16, 19, …

Sn=n2[2a+(n1)d]S_n = \frac{n}{2}[2a + (n-1)d] S20=202[2(1)+19(3)]=10[2+57]=10×59S_{20} = \frac{20}{2}[2(1) + 19(3)] = 10[2 + 57] = 10 \times 59 S20=590\boxed{S_{20} = 590}

Why This Works

An AP has a constant difference between consecutive terms. Given any two terms, we can find aa (first term) and dd (common difference) by solving two linear equations. Once we have aa and dd, every property of the AP is determined — the nnth term, the sum, the average, everything.

The sum formula Sn=n2[2a+(n1)d]S_n = \frac{n}{2}[2a + (n-1)d] is derived by pairing the first and last terms: (a)+(a+(n1)d)(a) + (a + (n-1)d), (a+d)+(a+(n2)d)(a + d) + (a + (n-2)d), etc. Each pair sums to 2a+(n1)d2a + (n-1)d, and there are n/2n/2 pairs.


Alternative Method — Using the Middle Term

Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n), where ana_n is the last term.

a20=1+19(3)=58a_{20} = 1 + 19(3) = 58

S20=202(1+58)=10×59=590S_{20} = \frac{20}{2}(1 + 58) = 10 \times 59 = 590

For JEE, know these relationships: AMGMHM\text{AM} \geq \text{GM} \geq \text{HM} for positive numbers (equality holds when all numbers are equal). This inequality appears in optimization and inequality problems regularly. Also, AM×HM=GM2\text{AM} \times \text{HM} = \text{GM}^2 — a useful shortcut.


Common Mistake

The most common error: using (n)d(n)d instead of (n1)d(n-1)d in the nnth term formula. The 3rd term is a+2da + 2d, not a+3da + 3d. Think of it this way: the first term has zero common differences added, the second has one, the third has two, and so on. The nnth term has (n1)(n-1) differences added to aa.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next