Analyzing the Setup
Imagine you are staring at a problem that looks like a mountain of factorials. You are given the ratio:
n+1Cr+1:nCr:n−1Cr−1=55:35:21
Your first instinct might be to write out the factorial definitions, such as (r+1)!(n−r)!(n+1)!. Stop! Take a breath.
In the world of JEE Advanced, the most complex-looking problems often have the most elegant, hidden shortcuts. We are not here to do brute-force arithmetic; we are here to uncover the geometric and algebraic beauty of the binomial coefficients.
The Divide and Conquer Strategy
The secret to this problem lies in breaking the three-part ratio into two manageable, bite-sized pieces. We have three terms, so let us look at the first two:
Simplifying this fraction by dividing both numerator and denominator by 5 gives us 711. Now, we have a clean, simple ratio.
The Magic Property
There is a powerful identity in combinatorics that acts as a skeleton key for these types of problems:
Notice the beauty of this relationship? The upper index n and the lower index r are both reduced by exactly 1. When you see this pattern, you should immediately think of this property.
Applying this to our first ratio, nCrn+1Cr+1, we see that it perfectly matches the form r+1n+1. So, our equation becomes:
Cross-multiplying gives us 7(n+1)=11(r+1), which simplifies to 7n+7=11r+11, or:
This is our first solid pillar of truth.
The Second Pillar
We are not done yet. We still have the second part of the ratio:
Simplifying this fraction by dividing by 7, we get 35. Again, applying our magic property, this simplifies to:
This gives us a beautiful, direct relationship: n=35r.
The Final Victory
Now, we have a system of two linear equations: 7n−11r=4 and n=35r. Substituting the second into the first, we get:
Multiplying through by 3 to clear the denominator, we get 35r−33r=12, which leads us to 2r=12, or r=6.
With r=6 in hand, finding n is trivial:
Finally, the question asks for 2n+5r. Substituting our values, we get:
We have conquered the mountain, not by brute force, but by understanding the underlying structure of the binomial coefficients. The final answer is 50.