Question
Find the sum of the series 12+22+32+⋯+n2.
In other words, prove that:
k=1∑nk2=6n(n+1)(2n+1)
This formula carries guaranteed weightage in CBSE Class 11 board exams and appears as a stepping stone in JEE problems involving series manipulation.
Solution — Step by Step
We want a clever identity that brings k2 into play. Use the cubic expansion:
(k+1)3−k3=3k2+3k+1
Why this particular identity? Because when we sum both sides over k=1 to n, the left side telescopes — almost everything cancels. That’s the trick.
k=1∑n[(k+1)3−k3]=k=1∑n(3k2+3k+1)
The left side telescopes:
(23−13)+(33−23)+⋯+((n+1)3−n3)=(n+1)3−1
So we get:
(n+1)3−1=3∑k2+3∑k+∑1
We already know k=1∑nk=2n(n+1) and k=1∑n1=n.
Substituting:
(n+1)3−1=3S2+3⋅2n(n+1)+n
where S2=∑k2 is what we want.
Expand (n+1)3=n3+3n2+3n+1, so (n+1)3−1=n3+3n2+3n.
Now rearrange:
3S2=n3+3n2+3n−23n(n+1)−n
3S2=n3+3n2+2n−23n(n+1)
Factor n from the first three terms:
3S2=n(n2+3n+2)−23n(n+1)=n(n+1)(n+2)−23n(n+1)
Take n(n+1) common:
3S2=n(n+1)[(n+2)−23]=n(n+1)⋅22n+4−3=n(n+1)⋅22n+1
Divide both sides by 3:
S2=6n(n+1)(2n+1)
Why This Works
The telescoping method is the standard derivation you’ll see in NCERT and most board solutions. The key insight is that k3 differences give us k2 terms — we’re essentially “one degree up” to get what we want.
This mirrors how ∑k is derived using (k+1)2−k2=2k+1 (one degree up from k). So for ∑k3, we’d use (k+1)4−k4. Same pattern, each time.
k=1∑n1=n
k=1∑nk=2n(n+1)
k=1∑nk2=6n(n+1)(2n+1)
k=1∑nk3=[2n(n+1)]2
Alternative Method: Induction
If derivation isn’t asked and you just need to verify the formula (common in JEE objective questions), Mathematical Induction is faster.
Base case: n=1. LHS =12=1. RHS =61⋅2⋅3=1. ✓
Inductive step: Assume true for n=m, i.e., ∑k=1mk2=6m(m+1)(2m+1).
For n=m+1:
k=1∑m+1k2=6m(m+1)(2m+1)+(m+1)2
=(m+1)[6m(2m+1)+(m+1)]=(m+1)⋅62m2+7m+6
=6(m+1)(m+2)(2m+3)
This is exactly 6(m+1)((m+1)+1)(2(m+1)+1). Induction complete. ✓
Induction is cleaner when you already know the formula — use it in objective settings to save time.
Common Mistake
Plugging in wrong value of n. Students often compute 12+22+⋯+102 and use the formula with n=10, but then make the arithmetic error 610⋅11⋅21 incorrectly as 610⋅11⋅20 — forgetting the (2n+1) term uses 2(10)+1=21, not 2n=20.
Always write out all three factors explicitly: n, (n+1), (2n+1) — then substitute. Don’t rush the substitution.
Quick sanity check: For n=3, we get 1+4+9=14. Formula gives 63⋅4⋅7=14. If your formula gives a non-integer or something obviously wrong for small n, you’ve made an error somewhere.