Analyzing the Setup
We are given three boxes, each containing balls labeled 1 through 10. We draw one ball from each box, resulting in values n1,n2, and n3.
The objective is to determine the number of ways these draws can satisfy the strict inequality n1<n2<n3.
At first glance, this might appear to be a complex task involving permutations and case-based counting. However, the most elegant solutions in JEE Advanced often arise from observing hidden symmetries rather than brute-force calculation.
The Insight
Order is an Illusion
Imagine you have drawn three distinct numbers from the boxes, such as 7,2, and 5.
Consider the condition n1<n2<n3. Is there any ambiguity in how these numbers must be assigned to the boxes?
No. You must place 2 in the first box, 5 in the second, and 7 in the third to satisfy the inequality. The condition acts as a gravitational force, pulling the numbers into a single, unique, sorted configuration.
Because the order is strictly dictated by the values themselves, we do not need to worry about permutations. If we pick any three distinct numbers, there is exactly one way to arrange them to satisfy the condition.
The problem of "arranging" effectively vanishes, leaving us with a much simpler task: selection.
The Mathematical Execution
Since we only need to select 3 distinct numbers from the 10 available, we are looking for the number of combinations of 10 items taken 3 at a time. This is represented by the binomial coefficient (rn), where n=10 and r=3.
The general formula is defined as:
Substituting our specific values into the formula, we obtain:
(310)=3!(10−3)!10!=3!×7!10!
To simplify the calculation, we expand the numerator just enough to cancel the largest factorial in the denominator:
3!×7!10×9×8×7!=3×2×110×9×8
The 7! terms cancel out, leaving us with a straightforward arithmetic expression. The numerator is 10×9×8=720, and the denominator is 3×2×1=6.
Dividing 720 by 6 yields the final result.
Final Calculation
The total number of ways to satisfy the condition n1<n2<n3 is 120.
This problem serves as a vital lesson in combinatorial strategy. When you encounter a constraint like n1<n2<n3, always ask: "Does this constraint fix the order?"
If the answer is yes, you have successfully transformed a permutation problem into a combination problem. This perspective is the hallmark of a master student, allowing you to uncover the simplicity hidden beneath complex problem statements.