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 th term:
… (i)
… (ii)
Subtracting (i) from (ii):
From (i):
So the AP is: 1, 4, 7, 10, 13, 16, 19, …
Why This Works
An AP has a constant difference between consecutive terms. Given any two terms, we can find (first term) and (common difference) by solving two linear equations. Once we have and , every property of the AP is determined — the th term, the sum, the average, everything.
The sum formula is derived by pairing the first and last terms: , , etc. Each pair sums to , and there are pairs.
Alternative Method — Using the Middle Term
, where is the last term.
For JEE, know these relationships: for positive numbers (equality holds when all numbers are equal). This inequality appears in optimization and inequality problems regularly. Also, — a useful shortcut.
Common Mistake
The most common error: using instead of in the th term formula. The 3rd term is , not . 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 th term has differences added to .