Sequences and Series — AP, GP, AGP & Special Sums for Class 11

Arithmetic and geometric progressions, sum of n terms, infinite GP, sum of squares and cubes. NCERT Class 11 Chapter 9 with JEE shortcuts.

CBSE JEE-MAIN 13 min read

What Are Sequences and Series?

A sequence is an ordered list of numbers following a pattern. A series is what you get when you add up the terms of that sequence. The difference matters — students often mix these up in board exams and lose easy marks.

When we write 1,4,9,16,25,1, 4, 9, 16, 25, \ldots — that’s a sequence. When we write 1+4+9+16+25+1 + 4 + 9 + 16 + 25 + \ldots — that’s a series.

Chapter 9 of NCERT Class 11 is one of the highest-weightage chapters for JEE Main. Every year, at least 2–3 questions appear directly from AP, GP, or special sums. The concepts here also feed into chapters on limits, binomial theorem, and coordinate geometry — so getting this right early pays dividends.


Key Terms and Definitions

Arithmetic Progression (AP): A sequence where the difference between consecutive terms is constant. This constant is called the common difference dd.

a,  a+d,  a+2d,  a+3d,a, \; a+d, \; a+2d, \; a+3d, \ldots

Geometric Progression (GP): A sequence where the ratio between consecutive terms is constant. This constant is the common ratio rr.

a,  ar,  ar2,  ar3,a, \; ar, \; ar^2, \; ar^3, \ldots

Arithmetico-Geometric Progression (AGP): Each term is a product of a term from an AP and the corresponding term from a GP. These appear frequently in JEE Main.

ab,  (a+d)br,  (a+2d)br2,a \cdot b, \; (a+d) \cdot br, \; (a+2d) \cdot br^2, \ldots

Partial Sum (SnS_n): The sum of the first nn terms of a series.

Infinite Series: When we sum infinitely many terms. Only meaningful (finite) when the series converges — for GP, this requires r<1|r| < 1.


Methods and Core Concepts

Arithmetic Progression (AP)

nn-th term: an=a+(n1)da_n = a + (n-1)d

Sum of nn terms: Sn=n2[2a+(n1)d]=n2[a+l]S_n = \dfrac{n}{2}[2a + (n-1)d] = \dfrac{n}{2}[a + l]

where ll is the last term.

The second form Sn=n2(a+l)S_n = \dfrac{n}{2}(a + l) is faster when you know both ends — use it in MCQs to save time.

Why does this formula work? Pair the first and last terms: a+la + l. Pair the second and second-last: (a+d)+(ld)=a+l(a+d) + (l-d) = a + l. Every pair gives the same sum. With nn terms, we get n2\frac{n}{2} such pairs.

Finding dd and checking AP: If three numbers aa, bb, cc are in AP, then 2b=a+c2b = a + c. This is the condition you use in almost every AP-based JEE question.

Geometric Progression (GP)

nn-th term: an=arn1a_n = ar^{n-1}

Sum of nn terms (r1r \neq 1): Sn=a(rn1)r1=a(1rn)1rS_n = \dfrac{a(r^n - 1)}{r - 1} = \dfrac{a(1 - r^n)}{1 - r}

Sum of nn terms (r=1r = 1): Sn=naS_n = na

Infinite GP (r<1|r| < 1): S=a1rS_\infty = \dfrac{a}{1 - r}

Use a(1rn)1r\frac{a(1-r^n)}{1-r} when r<1|r| < 1 and a(rn1)r1\frac{a(r^n - 1)}{r-1} when r>1r > 1 — both are equivalent but one avoids negative numerator, which is cleaner in calculation.

Three terms in GP trick: Assume them as ar,a,ar\frac{a}{r}, a, ar. Their product is a3a^3, so a=product3a = \sqrt[3]{\text{product}} directly. This saves enormous algebra in JEE problems.

Similarly, assume four terms in GP as ar3,ar,ar,ar3\frac{a}{r^3}, \frac{a}{r}, ar, ar^3 (not a,ar,ar2,ar3a, ar, ar^2, ar^3). This keeps the product clean.

Arithmetico-Geometric Progression (AGP)

The general AGP looks like:

S=ab+(a+d)br+(a+2d)br2+S = a \cdot b + (a+d) \cdot br + (a+2d) \cdot br^2 + \ldots

Method — Multiply and Subtract:

Write SS, multiply both sides by rr, subtract. The resulting series is a GP (the AP parts telescope into a simpler structure).

This technique — called the vS trick — is used in JEE problems every single year.

Special Sums

k=1nk=n(n+1)2\sum_{k=1}^{n} k = \frac{n(n+1)}{2} k=1nk2=n(n+1)(2n+1)6\sum_{k=1}^{n} k^2 = \frac{n(n+1)(2n+1)}{6} k=1nk3=[n(n+1)2]2\sum_{k=1}^{n} k^3 = \left[\frac{n(n+1)}{2}\right]^2

The third formula is beautiful: sum of cubes equals the square of sum of natural numbers. This appears in JEE Advanced more than you’d expect.


Solved Examples

Example 1 — Easy (CBSE Level)

The sum of first 20 terms of an AP is 400 and the 10th term is 40. Find the first term and common difference.

We know S20=400S_{20} = 400, so:

202[2a+19d]=400    2a+19d=40(1)\frac{20}{2}[2a + 19d] = 400 \implies 2a + 19d = 40 \quad \ldots(1)

And a10=a+9d=40(2)a_{10} = a + 9d = 40 \quad \ldots(2)

From (2): a=409da = 40 - 9d. Substituting into (1):

2(409d)+19d=40    8018d+19d=40    d=402(40 - 9d) + 19d = 40 \implies 80 - 18d + 19d = 40 \implies d = -40

Then a=409(40)=400a = 40 - 9(-40) = 400.

Answer: a=400a = 400, d=40d = -40.


Example 2 — Medium (JEE Main Level)

Find the sum: 1+22+34+48+1 + 2\cdot2 + 3\cdot4 + 4\cdot8 + \ldots up to nn terms.

The general term is Tk=k2k1T_k = k \cdot 2^{k-1}. This is an AGP with a=1a = 1, d=1d = 1, b=1b = 1, r=2r = 2.

Let S=11+22+34++n2n1S = 1\cdot1 + 2\cdot2 + 3\cdot4 + \ldots + n\cdot2^{n-1}

Multiply by 2:

2S=12+24+38++(n1)2n1+n2n2S = 1\cdot2 + 2\cdot4 + 3\cdot8 + \ldots + (n-1)\cdot2^{n-1} + n\cdot2^n

Subtract (S2SS - 2S):

S=(1+2+4++2n1)n2n=(2n1)n2n-S = (1 + 2 + 4 + \ldots + 2^{n-1}) - n\cdot2^n = (2^n - 1) - n\cdot2^n S=(n1)2n+1S = (n-1)\cdot2^n + 1

Example 3 — Hard (JEE Advanced Level)

If a1,a2,,ana_1, a_2, \ldots, a_n are in GP with common ratio rr, show that:

k=1n11akak+1=1r(n1)a1a2(r1)/r\sum_{k=1}^{n-1} \frac{1}{a_k \cdot a_{k+1}} = \frac{1 - r^{-(n-1)}}{a_1 a_2 (r-1)/r}

(Or more cleanly: find 1akak+1\sum \frac{1}{a_k a_{k+1}} in a closed form.)

Since ak=a1rk1a_k = a_1 r^{k-1}:

1akak+1=1a1rk1a1rk=1a12r2k1\frac{1}{a_k a_{k+1}} = \frac{1}{a_1 r^{k-1} \cdot a_1 r^k} = \frac{1}{a_1^2 r^{2k-1}}

So the sum becomes:

k=1n11a12r2k1=1a12rk=1n1(1r2)k1=1a12r1r2(n1)1r2\sum_{k=1}^{n-1} \frac{1}{a_1^2 r^{2k-1}} = \frac{1}{a_1^2 r} \sum_{k=1}^{n-1} \left(\frac{1}{r^2}\right)^{k-1} = \frac{1}{a_1^2 r} \cdot \frac{1 - r^{-2(n-1)}}{1 - r^{-2}}

This simplifies — the key insight is recognizing {akak+1}\{a_k a_{k+1}\} forms its own GP. That’s the “see the structure” skill JEE Advanced rewards.


Exam-Specific Tips

JEE Main Weightage: Sequences and Series consistently gives 2–3 questions per paper. The split is usually: 1 AP/GP theory question, 1 special sums question, 1 AGP or telescoping sum. Total marks: 12–16 per paper. This chapter appeared in JEE Main 2024 Session 1 (Jan), Session 2 (Apr), and both sessions of 2023.

For CBSE Class 11 Boards:

  • Sum formulas for AP and GP are directly asked (5-mark questions).
  • The proof of S=a1rS_\infty = \frac{a}{1-r} for infinite GP is a common 3-marker — know the derivation, not just the formula.
  • Marking scheme gives 1 mark for setting up the correct formula, 2 marks for correct working, 2 marks for answer. If you make a calculation error but the method is right, you still get 3/5.

For JEE Main:

  • Use the 3-term and 4-term substitution tricks — they convert 4-step algebra problems into 2-step ones.
  • When a question says “sum to infinity”, immediately check if r<1|r| < 1. If not, write “series diverges” — you won’t get such a question but it signals clear understanding.

For JEE Advanced:

  • Telescoping sums appear heavily. Practice writing Tk=f(k+1)f(k)T_k = f(k+1) - f(k) decomposition.
  • AM-GM inequality combined with AP/GP conditions is a classic Advanced trap.

Common Mistakes to Avoid

Mistake 1 — Wrong nn-th term formula. Students write an=a+nda_n = a + nd instead of a+(n1)da + (n-1)d. The first term corresponds to n=1n=1, so we need (n1)(n-1) steps of dd, not nn. Check: for n=1n=1, a1=a+(11)d=aa_1 = a + (1-1)d = a. Correct.

Mistake 2 — Using infinite GP formula when r1|r| \geq 1. If someone gives you a GP with r=2r = 2 and asks for sum to infinity, the answer is “doesn’t exist” — the series diverges. Applying the formula anyway is a conceptual error that loses you marks in JEE.

Mistake 3 — Confusing SnS_n and ana_n. The nn-th term of a series is an=SnSn1a_n = S_n - S_{n-1} for n2n \geq 2, and a1=S1a_1 = S_1. Many students forget the special case for n=1n=1, which causes wrong answers in “find the general term given SnS_n” problems.

Mistake 4 — Wrong substitution for 3 terms in GP. Using a,ar,ar2a, ar, ar^2 instead of ar,a,ar\frac{a}{r}, a, ar means you have two unknowns (aa and rr) instead of being able to use the product condition a3=a^3 = product directly. Always use the symmetric form.

Mistake 5 — Sign errors in the vS trick for AGP. When you compute SrSS - rS, be careful with the last term. The final term of rSrS is nbrnn \cdot br^n, not what you had in SS. Write out the subtraction term by term for at least the first two problems until the pattern becomes muscle memory.


Practice Questions

Q1. If the pp-th, qq-th, and rr-th terms of an AP are aa, bb, cc respectively, prove that a(qr)+b(rp)+c(pq)=0a(q-r) + b(r-p) + c(p-q) = 0.

Let first term be AA and common difference DD. Then a=A+(p1)Da = A + (p-1)D, b=A+(q1)Db = A + (q-1)D, c=A+(r1)Dc = A + (r-1)D.

a(qr)+b(rp)+c(pq)a(q-r) + b(r-p) + c(p-q) =[A+(p1)D](qr)+[A+(q1)D](rp)+[A+(r1)D](pq)= [A+(p-1)D](q-r) + [A+(q-1)D](r-p) + [A+(r-1)D](p-q)

Grouping the AA terms: A[(qr)+(rp)+(pq)]=A0=0A[(q-r)+(r-p)+(p-q)] = A \cdot 0 = 0

Grouping the DD terms: D[(p1)(qr)+(q1)(rp)+(r1)(pq)]D[(p-1)(q-r)+(q-1)(r-p)+(r-1)(p-q)]

Expand: pqprq+r+qrpqr+p+rprqp+q=0pq - pr - q + r + qr - pq - r + p + rp - rq - p + q = 0

Both groups vanish. QED.


Q2. Find the sum: 3+33+333+3333+3 + 33 + 333 + 3333 + \ldots to nn terms.

Factor out 3: S=3(1+11+111+)S = 3(1 + 11 + 111 + \ldots)

Multiply and divide by 9: S=39(9+99+999+)=13[(101)+(1001)+(10001)+]S = \frac{3}{9}(9 + 99 + 999 + \ldots) = \frac{1}{3}[(10-1) + (100-1) + (1000-1) + \ldots]

=13[(10+100++10n)n]=13[10(10n1)9n]= \frac{1}{3}\left[(10 + 100 + \ldots + 10^n) - n\right] = \frac{1}{3}\left[\frac{10(10^n - 1)}{9} - n\right] S=10(10n1)27n3\boxed{S = \frac{10(10^n - 1)}{27} - \frac{n}{3}}

Q3. The sum of an infinite GP is 4 and the sum of the cubes of its terms is 192. Find the GP.

Let first term =a= a, common ratio =r= r.

a1r=4(1)\frac{a}{1-r} = 4 \quad \ldots(1)

The GP of cubes has first term a3a^3 and ratio r3r^3: a31r3=192(2)\frac{a^3}{1-r^3} = 192 \quad \ldots(2)

Cube equation (1): a3(1r)3=64\frac{a^3}{(1-r)^3} = 64

Divide (2) by this: (1r)31r3=19264=3\frac{(1-r)^3}{1-r^3} = \frac{192}{64} = 3

Now 1r3=(1r)(1+r+r2)1 - r^3 = (1-r)(1+r+r^2), so:

(1r)21+r+r2=3    (1r)2=3(1+r+r2)\frac{(1-r)^2}{1+r+r^2} = 3 \implies (1-r)^2 = 3(1+r+r^2)

12r+r2=3+3r+3r2    2r2+5r+2=01 - 2r + r^2 = 3 + 3r + 3r^2 \implies 2r^2 + 5r + 2 = 0

r=2r = -2 or r=12r = -\frac{1}{2}. Since r<1|r| < 1, we need r=12r = -\frac{1}{2}.

From (1): a=4(1(12))=6a = 4(1 - (-\frac{1}{2})) = 6.

GP: 6,3,32,34,6, -3, \frac{3}{2}, -\frac{3}{4}, \ldots


Q4. Find the sum of nn terms: 112+123+134+\frac{1}{1\cdot2} + \frac{1}{2\cdot3} + \frac{1}{3\cdot4} + \ldots

Use partial fractions: 1k(k+1)=1k1k+1\frac{1}{k(k+1)} = \frac{1}{k} - \frac{1}{k+1}

This is a telescoping series:

Sn=(112)+(1213)++(1n1n+1)=11n+1=nn+1S_n = \left(1 - \frac{1}{2}\right) + \left(\frac{1}{2} - \frac{1}{3}\right) + \ldots + \left(\frac{1}{n} - \frac{1}{n+1}\right) = 1 - \frac{1}{n+1} = \frac{n}{n+1}

Q5. If a,b,ca, b, c are in GP and ax=by=cza^x = b^y = c^z, show that 1x,1y,1z\frac{1}{x}, \frac{1}{y}, \frac{1}{z} are in AP.

Let ax=by=cz=ka^x = b^y = c^z = k. Then a=k1/xa = k^{1/x}, b=k1/yb = k^{1/y}, c=k1/zc = k^{1/z}.

Since a,b,ca, b, c are in GP: b2=acb^2 = ac

k2/y=k1/xk1/z=k1/x+1/zk^{2/y} = k^{1/x} \cdot k^{1/z} = k^{1/x + 1/z}

Equating exponents: 2y=1x+1z\frac{2}{y} = \frac{1}{x} + \frac{1}{z}

This is exactly the condition that 1x,1y,1z\frac{1}{x}, \frac{1}{y}, \frac{1}{z} are in AP. QED.


Q6. Evaluate k=1nk(k+1)(k+2)\sum_{k=1}^{n} k(k+1)(k+2).

k(k+1)(k+2)=k3+3k2+2kk(k+1)(k+2) = k^3 + 3k^2 + 2k

k3+3k2+2k=n2(n+1)24+3n(n+1)(2n+1)6+2n(n+1)2\sum k^3 + 3\sum k^2 + 2\sum k = \frac{n^2(n+1)^2}{4} + 3 \cdot \frac{n(n+1)(2n+1)}{6} + 2 \cdot \frac{n(n+1)}{2} =n(n+1)4[n(n+1)+2(2n+1)+4]=n(n+1)(n+2)(n+3)4= \frac{n(n+1)}{4}\left[n(n+1) + 2(2n+1) + 4\right] = \frac{n(n+1)(n+2)(n+3)}{4}

This is the “falling factorial” pattern — the answer is always n(n+1)(n+r)r+1\frac{n(n+1)\cdots(n+r)}{r+1} for product of rr consecutive integers starting at kk. Useful shortcut for JEE.


Q7. Find the sum of the series 1+3x+6x2+10x3+1 + 3x + 6x^2 + 10x^3 + \ldots to infinity, where x<1|x| < 1.

The coefficients 1,3,6,10,1, 3, 6, 10, \ldots are triangular numbers: Tk=k(k+1)2T_k = \frac{k(k+1)}{2}.

Let S=k=1k(k+1)2xk1S = \sum_{k=1}^{\infty} \frac{k(k+1)}{2} x^{k-1}

We know xk=11x\sum x^k = \frac{1}{1-x}. Differentiating: kxk1=1(1x)2\sum k x^{k-1} = \frac{1}{(1-x)^2}.

Differentiating again: k(k1)xk2=2(1x)3\sum k(k-1)x^{k-2} = \frac{2}{(1-x)^3}, so k(k1)xk1=2x(1x)3\sum k(k-1)x^{k-1} = \frac{2x}{(1-x)^3}.

Note k(k+1)2=k(k1)2+k\frac{k(k+1)}{2} = \frac{k(k-1)}{2} + k.

S=122x(1x)31xx+1(1x)2=1(1x)3S = \frac{1}{2} \cdot \frac{2x}{(1-x)^3} \cdot \frac{1}{x} \cdot x + \frac{1}{(1-x)^2} = \frac{1}{(1-x)^3}

Wait — more cleanly: this is the coefficient of xk1x^{k-1} for the series 1(1x)3\frac{1}{(1-x)^3}.

S=1(1x)3\boxed{S = \frac{1}{(1-x)^3}}

Q8. Insert 5 arithmetic means between 8 and 26.

With 5 means inserted, we have 7 terms total: 8, a1a_1, a2a_2, a3a_3, a4a_4, a5a_5, 26.

a7=26a_7 = 26: 8+6d=26    d=38 + 6d = 26 \implies d = 3.

Means: 11,14,17,20,2311, 14, 17, 20, 23.


Frequently Asked Questions

What’s the difference between a sequence and a series?

A sequence is a list: 2,5,8,11,2, 5, 8, 11, \ldots A series is its sum: 2+5+8+11+2 + 5 + 8 + 11 + \ldots In board exams, marks are specifically deducted if you confuse these two. The notation SnS_n always refers to a series (sum), never a sequence.

Can a sequence be both AP and GP simultaneously?

Yes — a constant sequence like 3,3,3,3,3, 3, 3, 3, \ldots is both an AP (with d=0d = 0) and a GP (with r=1r = 1). This is the only such sequence (ignoring the trivial all-zero sequence). JEE sometimes uses this as a trick option in multiple-correct problems.

When does an infinite GP converge?

When r<1|r| < 1. The formula S=a1rS_\infty = \frac{a}{1-r} is only valid then. If r1|r| \geq 1, the series either diverges to infinity (if r1r \geq 1) or oscillates without converging (if r1r \leq -1).

How do I identify an AGP in an exam question?

Look at the general term. If it’s of the form (linear in kk) × (exponential in kk), it’s an AGP. For example, Tk=(3k1)2k1T_k = (3k-1) \cdot 2^{k-1} — linear factor (3k1)(3k-1) times exponential 2k12^{k-1}. Apply the vS trick.

What’s the AM-GM inequality and why does it matter here?

For positive numbers: a+b2ab\frac{a+b}{2} \geq \sqrt{ab}, with equality iff a=ba = b. This connects AP and GP directly — the arithmetic mean of two numbers is always \geq their geometric mean. JEE Advanced uses this to set minimum/maximum problems where AP or GP conditions are constraints.

How are special sums (k\sum k, k2\sum k^2, k3\sum k^3) derived?

k=n(n+1)2\sum k = \frac{n(n+1)}{2} comes from pairing terms (Gauss’s method). k2\sum k^2 comes from the telescoping identity (k+1)3k3=3k2+3k+1(k+1)^3 - k^3 = 3k^2 + 3k + 1. k3=(k)2\sum k^3 = \left(\sum k\right)^2 can be proved by induction. CBSE sometimes asks for these derivations — knowing them is non-negotiable.

In JEE, should I memorize the AGP sum formula or derive it each time?

Derive it. The vS method takes 3–4 lines and is completely reliable. Memorized formulas get garbled under exam pressure and there’s no way to verify them quickly. Practice the derivation 10 times so it becomes automatic.

Practice Questions