The Art of Selective Expansion
Welcome, future engineers! Today, we are going to dismantle a problem that, at first glance, looks like a nightmare of arithmetic. We are faced with the product of a quadratic, (ax2+bx+c), and a binomial raised to the power of twenty-six, (1−2x)26.
The sheer magnitude of that exponent, twenty-six, is designed to make you panic. It is a classic JEE trap. But here is the secret: you do not need to expand the entire binomial.
You only need to be a sniper, not a machine gunner. We only care about the coefficients of x, x2, and x3. Anything beyond that is irrelevant noise. Let us begin our journey.
The Binomial Lens
First, let us invoke the Binomial Theorem. We know that:
(1+y)n=(0n)+(1n)y+(2n)y2+(3n)y3+…
In our case, y=−2x and n=26. We only need the first four terms because our quadratic only goes up to x2.
If we multiply ax2 by anything higher than x1 from the binomial, we get x3 or higher. So, let us calculate the first few terms:
These four values are our ammunition.
The Detective Work
Now, we play the matching game. We are multiplying (ax2+bx+c) by (1−52x+1300x2−20800x3+…).
To find the coefficient of x, we look for combinations that produce x. That is c×(−52x) and bx×1. This gives us:
That is our first equation. For x2, we need c×(1300x2), bx×(−52x), and ax2×1. This yields:
Finally, for x3, we combine c×(−20800x3), bx×(1300x2), and ax2×(−52x), resulting in:
The Algebraic Symphony
Look at that third equation. It looks terrifying, but notice the pattern? Every single term is a multiple of 52.
If we divide the entire equation by −52, it simplifies beautifully to:
Now, we have a clean system of linear equations. By subtracting this simplified equation from our second equation, the variable a vanishes, leaving us with a direct relationship between b and c.
We find that 27b=900c, or:
Substituting this into our first equation, we solve for c and find c=3. From there, the dominoes fall: b=100 and a=1300.
The sum a+b+c=1403. We have conquered the monster by simply refusing to be intimidated by its size. Keep this mindset, and you will solve any problem the JEE throws at you.