The Anatomy of the Problem
Imagine you are standing before three distinct boxes. Each box is a small universe of its own, containing a specific mix of white and black balls.
Box 1 holds 3 white and 1 black ball. Box 2 is a perfect 2 white and 2 black split. Box 3 is the inverse of Box 1, with 1 white and 3 black balls.
You are tasked with drawing exactly one ball from each box. Your goal is to hold exactly two white balls and one black ball in your hands.
The Logic of Cases
To achieve our goal of 2 White and 1 Black, we must realize that the single black ball can only originate from one of the three boxes. This realization is the key to unlocking the problem.
We can break this down into three mutually exclusive scenarios:
Case 1: We draw a White ball from Box 1, a White ball from Box 2, and a Black ball from Box 3.
Case 2: We draw a White ball from Box 1, a Black ball from Box 2, and a White ball from Box 3.
Case 3:* We draw a Black ball from Box 1, a White ball from Box 2, and a White ball from Box 3.
Because these cases are mutually exclusive, we will calculate the probability of each and then sum them up at the end.
The Calculation
Since the draws are independent, we multiply the probabilities of the individual events for each case.
For Case 1 (W1,W2,B3):
P(Case 1)=P(W1)⋅P(W2)⋅P(B3)=43⋅42⋅43=6418
For Case 2 (W1,B2,W3):
P(Case 2)=P(W1)⋅P(B2)⋅P(W3)=43⋅42⋅41=646
For Case 3 (B1,W2,W3):
P(Case 3)=P(B1)⋅P(W2)⋅P(W3)=41⋅42⋅41=642
The Synthesis
Now, we bring it all together. The total probability P(2W,1B) is the sum of these three cases:
P(2W,1B)=6418+646+642=6426
Finally, we simplify the fraction. Dividing both the numerator and the denominator by 2, we get 3213.
This is our final answer, a beautiful result derived from a systematic approach to a seemingly complex problem. In JEE Advanced, the secret is not just in the calculation, but in the clarity of your case-based thinking.