Analyzing the Setup
Welcome, fellow traveler, to the fascinating world of series and sequences. Today, we are going to tackle a problem that might look intimidating at first glance, but beneath its complex exterior lies a structure of pure, elegant simplicity.
We are looking at the summation:
At first, you might be tempted to start plugging in values for r=1,2,3..., but stop! That is a trap. In JEE Advanced, we do not brute force; we look for the hidden architecture.
The key here is the denominator: r4+r2+1. This is a classic expression that screams for a specific algebraic manipulation. If we add and subtract r2, we get (r4+2r2+1)−r2, which is (r2+1)2−r2.
Now, using the difference of squares identity a2−b2=(a−b)(a+b), we can factor this into (r2−r+1)(r2+r+1). This is our breakthrough!
The Numerator Trick
Now that we have our factors, let us look at the numerator, r. We want to express r in terms of our new factors, (r2−r+1) and (r2+r+1).
If we subtract the smaller factor from the larger one, we get (r2+r+1)−(r2−r+1)=2r. This is perfect! It means we can write:
By substituting this back into our general term Tr, we get:
Tr=(r2+r+1)(r2−r+1)21[(r2+r+1)−(r2−r+1)]
When we split this into two fractions, the terms cancel out beautifully, leaving us with:
Tr=21[r2−r+11−r2+r+11]
The Telescoping Collapse
This is where the magic happens. Let us define a function f(r)=r2−r+11. If you calculate f(r+1), you will find it is exactly:
f(r+1)=(r+1)2−(r+1)+11=r2+r+11
Our general term is now Tr=21[f(r)−f(r+1)]. When we sum this from r=1 to 25, we get:
21[(f(1)−f(2))+(f(2)−f(3))+⋯+(f(25)−f(26))]
Notice the pattern? The −f(2) cancels with +f(2), the −f(3) cancels with +f(3), and so on. This is the 'telescoping' effect—the series collapses like a folding telescope, leaving only the first and last terms:
The Final Victory
Now, we just need to calculate the values. f(1)=12−1+11=1.
For f(26), we have:
f(26)=262−26+11=676−26+11=6511
Our sum is:
21[1−6511]=21[651650]=651325
We are given that the sum is qp with gcd(p,q)=1. Since 325=52×13 and 651=3×7×31, they are indeed coprime.
Thus, p=325 and q=651. The final answer, p+q, is 325+651=976.