The Wall of Numbers
A Journey into Symmetry
Imagine you are staring at a long, intimidating line of numbers. You have to sum up f(1001)+f(1002)+⋯+f(10099), where f(x)=e2x+e2e2x.
At first glance, it looks like a nightmare. Calculating each term individually would take hours and likely lead to errors.
In the world of JEE Advanced, whenever you see a problem that looks like a brute-force calculation, there is almost always a hidden, elegant shortcut. Today, we are going to find that shortcut.
Phase 1
The Mirror Insight
Look closely at the inputs. We have 1001 at the start and 10099 at the end.
When we add them, we get 1001+10099=1. This is not a coincidence; it is a mirror.
If we look at the second term, 1002, and the second-to-last term, 10098, they also sum to 1. This symmetry is our golden ticket, implying we only need to understand how the function behaves when we swap x for 1−x.
Phase 2
The Algebraic Dance
Let's perform the substitution to see what f(1−x) looks like. We take our original function f(x)=e2x+e2e2x and replace every x with (1−x):
f(1−x)=e2(1−x)+e2e2(1−x)
Now, let's simplify the exponent. Since 2(1−x)=2−2x, we use the laws of exponents to write e2−2x=e2xe2.
Substituting this into our expression, we get:
f(1−x)=e2xe2+e2(e2xe2)
To clear the fractions, we multiply the numerator and the denominator by e2x:
If we factor out an e from the denominator, we get e(e+e2x). Canceling the e from the numerator and denominator leaves us with:
Phase 3
The Magic Sum
Now, let's add f(x) and f(1−x) together. Since we have the same denominator, the addition is straightforward:
f(x)+f(1−x)=e2x+e2e2x+e2x+e2e=e2x+e2e2x+2e
Factor out the 2 in the numerator to get 2(e2x+e). The term (e2x+e) cancels out perfectly with the denominator, leaving us with a constant: 2.
This is the beauty of the problem. Every pair of terms that sums to 1 in the input will sum to 2 in the output.
Phase 4
The Lonely Survivor
We have 99 terms in total. We can pair the first with the last, the second with the second-to-last, and so on.
This gives us 49 pairs, which accounts for 98 terms. Since each pair sums to 2, the sum of these pairs is 49×2=98.
However, we have 99 terms, meaning there is one term left in the middle: f(10050), which is f(21). Let's calculate this middle term:
f(21)=e2(1/2)+e2e2(1/2)=e+e2e=2e2e=1
Conclusion
The total sum is the sum of our 49 pairs plus the middle term: 98+1=99.
We didn't need to calculate 99 complex exponential values. We just needed to see the symmetry, trust the algebra, and account for the middle term.
That is the heart of JEE mathematics—finding the simple, elegant truth hidden beneath a complex exterior. The final answer is 99.