Analyzing the Setup
Welcome, future engineers! Today, we are diving into a problem that might look like a tedious calculation at first glance, but it is actually a beautiful exercise in pattern recognition.
We are given three consecutive binomial coefficients: nCr−1=36, nCr=84, and nCr+1=126. Our mission is to find the value of r.
When you see a sequence like this, your first instinct might be to reach for the factorial definition of combinations. I want you to pause. If you start writing out the factorials and comparing them, you are walking into a trap of endless algebra. Instead, let us embrace the elegance of the ratio property.
The Power of the Ratio
The secret weapon in our toolkit is the identity:
Think of this as a bridge that allows us to leap over the factorial wall. By taking the ratio of consecutive terms, the factorials cancel out, leaving us with a clean, linear relationship.
Let us apply this to our first pair: nCr and nCr−1. We have:
Now, we equate this to our formula:
Cross-multiplying, we get 3(n−r+1)=7r, which simplifies to 3n−3r+3=7r, or:
The Second Leap
Now, we repeat the process for the next pair: nCr+1 and nCr. The ratio is:
Applying our ratio formula—but being careful to replace r with r+1—we get:
Equating this to 23, we cross-multiply: 2(n−r)=3(r+1), which simplifies to 2n−2r=3r+3, or:
The Final Victory
We have successfully transformed a daunting combinatorics problem into a simple system of two linear equations:
1) 3n−10r=−3
2) 2n−5r=3
To solve this, let us use the elimination method. If we multiply Equation 2 by 2, we get 4n−10r=6.
Now, subtract Equation 1 from this new equation:
The r terms vanish, leaving us with n=9.
With n in hand, finding r is a breeze. Substitute n=9 into Equation 2:
r=3
We have arrived at the solution! This problem teaches us that in JEE Advanced, the most complex-looking expressions often yield to the simplest properties if you know where to look. Keep this ratio property in your arsenal, and you will tackle any binomial problem with confidence.