The Art of Pattern Recognition
Welcome, fellow traveler on the JEE journey. Today, we are going to dismantle a series that, at first glance, looks like a chaotic mess of alternating signs and squared terms.
The problem asks us to compute the sum S=12−2⋅32+3⋅52−4⋅72+5⋅92−⋯+15⋅292.
When you see a series like this, your first instinct might be to reach for a calculator or start grinding out the arithmetic. Stop. Take a breath. In JEE Advanced, the secret is never brute force; it is always structure.
Phase 1
Decoding the DNA of the Series
Look closely at the terms. The coefficients are 1,2,3,4,…,15. The bases of the squared terms are 1,3,5,7,…,29, which are consecutive odd numbers.
If we denote the index as n, the nth coefficient is simply n. The nth odd number is 2n−1. The alternating sign is handled by (−1)n+1.
Thus, our general term is Tn=(−1)n+1⋅n(2n−1)2. The entire sum is:
This is the DNA of our problem.
Phase 2
The Strategy of Grouping
Dealing with alternating signs in a summation is like trying to walk on a floor that keeps changing its elevation. Let us define a function f(n)=n(2n−1)2.
Now, our sum is S=f(1)−f(2)+f(3)−f(4)+⋯+f(15). Instead of fighting the signs, let us embrace them by grouping.
We keep f(1) separate and pair the rest:
S=f(1)+[f(3)−f(2)]+[f(5)−f(4)]+⋯+[f(15)−f(14)]
This condenses into S=f(1)+∑k=17[f(2k+1)−f(2k)]. This is the moment where the complexity vanishes.
Phase 3
The Algebraic Engine
Now, we need to expand f(n)=n(2n−1)2. Expanding the square gives f(n)=n(4n2−4n+1), which simplifies to f(n)=4n3−4n2+n.
To find the difference f(n+1)−f(n), we calculate:
Δf=4[(n+1)3−n3]−4[(n+1)2−n2]+[(n+1)−n]
Using the expansion formulas, this simplifies to Δf=12n2+4n+1. We need this for n=2k, so substituting n=2k gives:
f(2k+1)−f(2k)=12(2k)2+4(2k)+1=48k2+8k+1
Phase 4
The Final Calculation
We are almost there. Our sum is S=f(1)+∑k=17(48k2+8k+1). We know f(1)=1(2(1)−1)2=1.
The summation splits into three parts:
S=1+48k=1∑7k2+8k=1∑7k+k=1∑71
Using the standard formulas ∑k=1nk2=6n(n+1)(2n+1) and ∑k=1nk=2n(n+1), we calculate for n=7:
k=1∑7k2=67⋅8⋅15=140,k=1∑7k=27⋅8=28
Finally, substituting these values:
S=1+48(140)+8(28)+7=1+6720+224+7=6952
The elegance of this cancellation is the true reward of the JEE process. Keep this technique in your toolkit—it is a lifesaver for alternating series! The final answer is 6952.