Analyzing the Setup
Welcome, future engineer! Today, we are going to look at a problem that, at first glance, seems like a chaotic mess of alternating signs and squares. You see the expression Sn=∑k=14n(−1)2k(k+1)k2 and your instinct might be to panic.
But take a deep breath. In mathematics, especially in the JEE, complexity is often just a mask for hidden symmetry. Our job is to pull off that mask.
Finding the Rhythm
Let us look at the exponent 2k(k+1). This is the formula for the k-th triangular number. Does it behave randomly?
Let us test the first few values of k:
For k=1, the exponent is 1, so the sign is (−1)1=−1.
For k=2, the exponent is 3, so the sign is (−1)3=−1.
For k=3, the exponent is 6, so the sign is (−1)6=+1.
For k=4, the exponent is 10, so the sign is (−1)10=+1.
Look at that! The pattern is −,−,+,+. If you continue for k=5,6,7,8, you will find the pattern repeats exactly. We have discovered a cycle of length 4.
Since the sum goes up to 4n, we have exactly n blocks of 4 terms. This is the breakthrough we needed.
The Power of Grouping
Now, let us define the r-th block, which we will call Tr. This block contains the terms from k=4r−3 to k=4r. Writing it out, we get:
Tr=−(4r−3)2−(4r−2)2+(4r−1)2+(4r)2
Instead of expanding these squares—which would be a nightmare of algebra—let us use the difference of squares identity: a2−b2=(a−b)(a+b). We can rearrange Tr as:
Tr=[(4r)2−(4r−2)2]+[(4r−1)2−(4r−3)2]
Applying the identity to the first pair:
(4r−(4r−2))(4r+4r−2)=2(8r−2)=16r−4
Applying it to the second pair:
((4r−1)−(4r−3))((4r−1)+(4r−3))=2(8r−4)=16r−8
Adding these together, the expression for our block simplifies beautifully to Tr=32r−12. We have turned a complex series of squares into a simple linear expression.
The Grand Summation
Now, the total sum Sn is just the sum of these n blocks:
We can split this into two parts:
Using the standard formula ∑r=1nr=2n(n+1), we get:
Sn=32[2n(n+1)]−12n=16n(n+1)−12n
Expanding this, we arrive at our final, powerful result: Sn=16n2+4n.
The Victory Lap
We have the formula. Now we just need to test it against the options. If we plug in n=8, we get S8=16(64)+32=1024+32=1056.
If we plug in n=9, we get S9=16(81)+36=1296+36=1332. Both of these values appear in our options!
Remember, the goal isn't just to get the answer; it is to understand the journey. You started with a daunting summation and, through pattern recognition and algebraic manipulation, you tamed it. Keep this mindset, and there is no problem in the JEE that you cannot solve.