Why Summation Matters
Adding up long sequences of numbers by hand is impractical. Summation techniques — sigma notation, standard formulas, and the telescoping method — let us find exact values of series that would otherwise take hours to compute.
The notation ∑k=1nk is a compact way of writing 1+2+3+⋯+n. Once you are comfortable reading and manipulating sigma notation, evaluating series becomes a systematic process rather than guesswork.
JEE Main tests summation in 1-2 questions per year, often involving method of differences (telescoping) or using standard sum formulas. CBSE Class 11 covers sequence and series in Chapter 9, where these techniques appear directly.
Sigma Notation — Reading and Writing
The Greek letter Σ (sigma) means “sum.” The expression
k=m∑nf(k)=f(m)+f(m+1)+f(m+2)+⋯+f(n)
reads as “the sum of f(k) as k runs from m to n.”
The variable k is a dummy variable — replacing it with any other letter gives the same sum.
Properties of Sigma Notation
k=1∑nc⋅f(k)=ck=1∑nf(k)(constant factor out)
k=1∑n[f(k)±g(k)]=k=1∑nf(k)±k=1∑ng(k)(split the sum)
k=1∑nc=n⋅c(sum of a constant)
These four formulas are the backbone of most summation problems:
Sum of first n natural numbers:
k=1∑nk=2n(n+1)
Sum of squares:
k=1∑nk2=6n(n+1)(2n+1)
Sum of cubes:
k=1∑nk3=[2n(n+1)]2
Sum of a geometric series:
k=0∑n−1ark=a⋅r−1rn−1(r=1)
Notice that ∑k3=(∑k)2. This beautiful identity — the sum of cubes equals the square of the sum of natural numbers — is worth memorising. It often appears in JEE Main as a verification or a quick calculation.
Why ∑k=n(n+1)/2
The classic method: write the sum forward and backward, then add:
S=1+2+3+⋯+n
S=n+(n−1)+(n−2)+⋯+1
2S=(n+1)+(n+1)+⋯+(n+1)=n(n+1)
S=2n(n+1)
This is Gauss’s trick — he used it at age 8 to find 1+2+⋯+100=5050 in seconds.
Why ∑k2=n(n+1)(2n+1)/6
We use the telescoping approach with the identity (k+1)3−k3=3k2+3k+1.
Sum from k=1 to n:
∑[(k+1)3−k3]=3∑k2+3∑k+∑1
The left side telescopes to (n+1)3−13=n3+3n2+3n.
So: n3+3n2+3n=3∑k2+3⋅2n(n+1)+n
Solving for ∑k2 gives 6n(n+1)(2n+1).
The Telescoping Method
Telescoping is the most powerful technique for evaluating sums where consecutive terms cancel. The key idea:
If we can write f(k)=g(k+1)−g(k), then:
k=1∑nf(k)=k=1∑n[g(k+1)−g(k)]=g(n+1)−g(1)
Most intermediate terms cancel (like the sections of a collapsing telescope).
Worked Example — Basic Telescoping
Evaluate ∑k=1nk(k+1)1.
Step 1: Use partial fractions: k(k+1)1=k1−k+11
Step 2: Write out the telescoping sum:
k=1∑n(k1−k+11)=(1−21)+(21−31)+⋯+(n1−n+11)
Step 3: All intermediate terms cancel. We get:
=1−n+11=n+1n
Method of Differences
When the general term Tn of a series can be expressed as f(n+1)−f(n) for some function f, the series telescopes. The method of differences formalises this:
- Express Tn=f(n+1)−f(n)
- Sum: Sn=f(n+1)−f(1)
Finding f: If Tn is a polynomial in n, compute first differences ΔTn=Tn+1−Tn. If the differences eventually become constant, the sum can be found systematically.
Worked Example — Method of Differences
Find Sn=∑k=1nk(k+1)(k+2).
Trick: Write Tk=k(k+1)(k+2).
Notice that k(k+1)(k+2)=41[(k+3)⋅k(k+1)(k+2)−(k−1)⋅k(k+1)(k+2)]… this gets messy.
Better trick (factorials method):
k(k+1)(k+2)=4(k+3)!/(k−1)!⋅4→useTk=4(k+3)(k+2)(k+1)k−(k+2)(k+1)k(k−1)⋅11
Actually, the cleanest way: recognise k(k+1)(k+2)=41[(k)(k+1)(k+2)(k+3)−(k−1)k(k+1)(k+2)].
This telescopes beautifully:
Sn=41[n(n+1)(n+2)(n+3)−0]=4n(n+1)(n+2)(n+3)
The pattern: ∑k(k+1)=3n(n+1)(n+2), ∑k(k+1)(k+2)=4n(n+1)(n+2)(n+3). The denominator increases by 1 each time. This is related to combinations: ∑(rk)=(r+1n+1).
Arithmetic-Geometric Series (AGP)
An arithmetic-geometric series has terms that are products of an arithmetic term and a geometric term:
S=a+(a+d)r+(a+2d)r2+⋯
Method: Multiply both sides by r and subtract (the “multiply and subtract” trick).
For S=∑k=0n−1(a+kd)rk:
Multiply by r: rS=∑k=0n−1(a+kd)rk+1
Subtract: (1−r)S=a+d(r+r2+⋯+rn−1)−(a+(n−1)d)rn
(1−r)S=a⋅1−r1−rn+(1−r)2dr(1−rn−1)−1−r(a+(n−1)d)rn⋅(1−r)
For infinite AGP (∣r∣<1, n→∞):
S∞=1−ra+(1−r)2dr
Worked Example — Infinite AGP
Find S=1+3x+5x2+7x3+⋯ for ∣x∣<1.
Terms: (2k−1)xk−1 for k=1,2,3,…
Here a=1, d=2, r=x.
S∞=1−ra+(1−r)2dr=1−x1+(1−x)22x
=(1−x)2(1−x)+2x=(1−x)21+x
Solved Examples
Example 1 — CBSE Level
Find ∑k=110(3k2−2k+1).
Solution:
=3∑k2−2∑k+∑1
=3⋅610⋅11⋅21−2⋅210⋅11+10
=3⋅385−2⋅55+10=1155−110+10=1055
Example 2 — JEE Main Level
Evaluate ∑r=1n(r+1)!r.
Solution:
Write (r+1)!r=(r+1)!(r+1)−1=r!1−(r+1)!1.
This telescopes:
r=1∑n(r!1−(r+1)!1)=1!1−(n+1)!1=1−(n+1)!1
Example 3 — JEE Advanced Level
Sum to n terms: 1⋅2+2⋅3+3⋅4+⋯
Solution:
Tk=k(k+1)=k2+k
Sn=∑k2+∑k=6n(n+1)(2n+1)+2n(n+1)
=6n(n+1)[(2n+1)+3]=6n(n+1)(2n+4)=3n(n+1)(n+2)
Common Mistakes to Avoid
Mistake 1: Writing ∑k=1nk2 as (∑k=1nk)2. These are NOT equal. ∑k2=(∑k)2. For example, 12+22=5=(1+2)2=9. The special identity is ∑k3=(∑k)2.
Mistake 2: Forgetting that telescoping only works when you correctly identify Tk=g(k+1)−g(k). Always verify by expanding: write out 2-3 terms to confirm cancellation before concluding.
Mistake 3: In the method of differences for k(k+1)(k+2), students try to expand and use ∑k3 and ∑k2 separately. This works but is very messy. The telescoping approach Tk=41[(k+3)k(k+1)(k+2)−(k−1)k(k+1)(k+2)] is cleaner.
Mistake 4: For AGP (arithmetic-geometric series), applying the standard geometric series formula directly. AGP needs the “multiply by r and subtract” method — the standard GP formula does not work here.
Practice Questions
Q1. Find ∑k=1100k(k+1).
∑k(k+1)=∑k2+∑k=6100⋅101⋅201+2100⋅101=338350+5050=343400. Alternatively, use the formula 3n(n+1)(n+2)=3100⋅101⋅102=343400.
Q2. Evaluate r=1∑n(2r−1)(2r+1)1.
(2r−1)(2r+1)1=21(2r−11−2r+11). This telescopes: 21(1−2n+11)=2n+1n.
Q3. Find the sum S=1+2x+3x2+4x3+⋯ (infinite series, ∣x∣<1).
Using the infinite AGP formula with a=1, d=1, r=x: S=1−x1+(1−x)2x=(1−x)2(1−x)+x=(1−x)21.
Q4. Evaluate k=1∑nk3 for n=10 and verify using the “square of sum” identity.
∑k=110k3=(210⋅11)2=552=3025. Verify: ∑k=55, and 552=3025. ✓
Q5. Sum to n terms: 1⋅31+3⋅51+5⋅71+⋯
Tr=(2r−1)(2r+1)1=21(2r−11−2r+11). Telescopes to 21(1−2n+11)=2n+1n.
Additional Techniques
Splitting the General Term
When the general term contains a product of consecutive integers, we can often express it as a difference of products with one extra factor. This is the generalised telescoping trick.
Pattern: k(k+1)⋯(k+r−1)=r+11[(k+r)(k+r−1)⋯k−(k+r−1)(k+r−2)⋯(k−1)]
This means ∑k=1nk(k+1)=3n(n+1)(n+2) and ∑k=1nk(k+1)(k+2)=4n(n+1)(n+2)(n+3) — we proved the latter earlier.
Using Partial Fractions for Rational Series
For a series like ∑(3k−2)(3k+1)1, always try partial fractions first:
(3k−2)(3k+1)1=31(3k−21−3k+11)
This telescopes: 31(1−3n+11)=3n+1n.
k(k+1)1=k1−k+11→Sum=1−n+11
k(k+2)1=21(k1−k+21)→Sum=21(1+21−n+11−n+21)
r!1−(r+1)!1=(r+1)!r→Sum of (r+1)!r=1−(n+1)!1
JEE Main 2023 had a question asking for ∑r=120(r+1)!r2+r+1. The trick was to split r2+r+1=(r+1)2−r=(r+1)r+1, then express as factorials that telescope. Recognising that the numerator can be decomposed into factorial-friendly terms is the pattern recognition skill that separates 90th percentile from 99th percentile students.
Q6. Find ∑k=1nk(k+1)(k+2)1.
Partial fractions: k(k+1)(k+2)1=21(k(k+1)1−(k+1)(k+2)1).
This telescopes: 21(1⋅21−(n+1)(n+2)1)=21(21−(n+1)(n+2)1)=4(n+1)(n+2)n(n+3).
FAQs
What is the difference between a sequence and a series?
A sequence is an ordered list of numbers: 1,4,9,16,… A series is the sum of the terms of a sequence: 1+4+9+16+⋯ Summation techniques apply to series.
When does a series converge?
For infinite series, convergence means the partial sums approach a finite limit. Geometric series ∑ark converges when ∣r∣<1. Harmonic series ∑1/k diverges (sum grows without bound). For JEE, recognise that ∑1/k! converges to e and ∑1/n(n+1) converges to 1.
How do I know when to use telescoping vs standard formulas?
If the general term is a rational function (like k(k+1)1), try partial fractions — it will telescope. If the general term is a polynomial in k (like 3k2+2k), use standard sum formulas. If it’s a product of consecutive integers (like k(k+1)(k+2)), use the factorials/telescoping trick.
Can the sigma notation have a step other than 1?
Yes, for example ∑k=1nf(2k) sums f(2),f(4),f(6),… But this is rarely tested in CBSE/JEE at the level we’ve covered here.
What’s the quickest way to memorise the ∑k2 formula?
Think of it as three factors: n, (n+1), (2n+1) divided by 6. When n=1: 1⋅2⋅3/6=1. Check: 12=1. ✓ When n=2: 2⋅3⋅5/6=5. Check: 1+4=5. ✓ Practice with small values and the formula will stick.
How do I handle sums that start from k=0 instead of k=1?
Simply evaluate the k=0 term separately and add it. For geometric series, starting from k=0 is natural: ∑k=0nark=a⋅r−1rn+1−1. For polynomial sums, the k=0 term is usually just a constant that you add at the end.
What is the difference between convergent and divergent series?
A convergent series has partial sums that approach a finite limit as n→∞. A divergent series either grows without bound or oscillates without settling. For JEE, the key convergent series to know: ∑1/n2=π2/6, ∑1/n!=e, and ∑rn=1/(1−r) for |r| < 1. The harmonic series ∑1/n diverges — even though terms approach zero, the sum grows without bound (slowly).