The Elegance of Binomial Symmetry
Welcome, future engineers! Today, we are diving into a problem that might seem like a dry algebraic exercise at first glance, but it is actually a beautiful dance of symmetry and logic.
We are dealing with the binomial expansion of (1+x)n+4. Our mission is to find the largest coefficient, but only after we decode a hidden constraint about the 5th, 6th, and 7th terms.
Phase 1
Setting the Stage
First, let's orient ourselves. The general term of a binomial expansion (1+x)m is given by Tr+1=mCr⋅xr.
In our case, the power is m=n+4. So, the coefficients of the 5th, 6th, and 7th terms correspond to r=4, r=5, and r=6, respectively.
These are n+4C4, n+4C5, and n+4C6. This is our starting point.
Phase 2
The A.P. Condition
We are told these three coefficients are in an Arithmetic Progression (A.P.). This means the middle term is the average of the other two, or more simply, 2⋅middle=first+third.
Mathematically, this gives us the equation:
Most students would immediately reach for the factorial formula r!(n−r)!n! and start expanding. I urge you: stop! That path leads to a forest of factorials that is very easy to get lost in.
Phase 3
The Elegant Shortcut
This is where we use the power of Pascal's Identity: mCr+mCr−1=m+1Cr. We want to force this identity to appear.
If we add 2(n+4C5) to both sides of our A.P. equation, we get:
4(n+4C5)=(n+4C4+n+4C5)+(n+4C5+n+4C6)
Look at the magic! The terms in the parentheses are now in the perfect form for Pascal's Identity. The first pair becomes n+5C5, and the second pair becomes n+5C6.
Our equation now looks like this:
And we can apply Pascal's Identity one more time to the right side to get n+6C6. Now, the equation is much simpler:
Phase 4
Solving for n
Now, we can safely expand the factorials. With the equation:
4⋅5!(n−1)!(n+4)!=6!n!(n+6)!
We can cancel terms. After simplifying, we arrive at the quadratic equation n2−13n+30=0.
Factoring this gives (n−10)(n−3)=0. Since the problem explicitly states $n
eq 10$, we must have n=3.
Phase 5
The Grand Finale
With n=3, our expansion becomes (1+x)3+4=(1+x)7. We need the largest coefficient.
For an odd power like 7, the largest coefficients are the middle ones, at r=3 and r=4. Both are equal to 7C3.
Calculating this, we get:
And there it is—the answer is 35. It wasn't just about the calculation; it was about choosing the path of least resistance. Keep this mindset, and you will conquer any JEE problem!