JEE advance 2022 paper 2 ball selection
Question:
Consider 4 boxes, where each box contains 3 red balls and 2 blue balls. Assume that all 20 balls are distinct. In how many different ways can 10 balls be chosen from these 4 boxes so that from each box at least one red ball and one blue ball are chosen?
Solution 1:
We start by noting that each of the 4 boxes contains 3 red and 2 blue distinct balls. In any valid selection of 10 balls, from each box at least one red and one blue must be chosen.
Step 1. Determine How Many Balls Are Chosen from Each Box
Let be the number of balls chosen from box (for ). We have:
Since from each box at least one red and one blue must be chosen, we must choose at least 2 balls from each box:
Define (so ). Then:
The number of nonnegative integer solutions of this equation (by stars and bars) is
However, rather than simply counting the solutions, we need to consider the two types of distributions.
Step 2. Classify the Distributions
Since , there are two types:
-
Type A: One box gets 2 extra balls and the others get 0 extra.
In this case, one box has balls and each of the other three boxes has balls. There are 4 ways to choose which box gets 4 balls. -
Type B: Two boxes get 1 extra ball each and the others get 0 extra.
Then two boxes have balls each and the other two boxes have balls each. There areways to choose which two boxes get 3 balls.
Step 3. Count Valid Selections Within Each Box
For any box, it contains 3 red and 2 blue balls (all distinct). Let be the number of ways to choose balls from a box so that there is at least one red and one blue.
-
For :
Total ways to choose 2 from 5 is .
All-red selections: .
All-blue selections: .
Thus, -
For :
Total ways: .
All-red selections: .
(All-blue selections are impossible since there are only 2 blue.)
Thus, -
For :
Total ways: .
All-red and all-blue selections are impossible because choosing 4 red is not possible (only 3 available) and 4 blue is not possible (only 2 available).
Thus,
Step 4. Combine the Two Types
Type A Distribution :
- For the box with 4 balls: .
- For each of the 3 boxes with 2 balls: each.
- Total ways for a fixed distribution:
- There are 4 choices for which box is the “4-ball” box, so total for Type A:
Type B Distribution :
- For each box with 3 balls: (2 boxes).
- For each box with 2 balls: (2 boxes).
- Total ways for a fixed distribution:
- There are 6 ways to choose which boxes get 3 balls, so total for Type B:
Step 5. Final Count
Add the two types:
Thus, the total number of different ways to choose 10 balls from the 4 boxes, ensuring that from each box at least one red and one blue ball are chosen, is 21816.
Solution 2:
Below is a step‐by‐step way to see how the alternate solution is constructed. It is essentially the same reasoning as the “two‐case” method (one box contributes 4 balls vs. two boxes contribute 3 balls each), but it uses combinations directly for each box:
Overview of the Problem
- We have 4 boxes, each containing 3 red (R) and 2 blue (B) distinct balls.
- We want to choose a total of 10 balls, with the requirement that from each box we pick at least one red and one blue.
We split the counting into two main Cases based on how many balls we take from each box:
- Case I: distribution — One box contributes 4 balls; each of the other three boxes contributes 2 balls.
- Case II: distribution — Two boxes contribute 3 balls each; the other two boxes contribute 2 balls each.
Key Combinatorial Counts Per Box
Since each box has 3 reds and 2 blues, the solution repeatedly uses these small “building blocks”:
-
Number of ways to choose 2 balls (with ≥1R, ≥1B):
Explanation: you must pick exactly 1 blue out of the 2 available, and 1 red out of the 3 available.
-
Number of ways to choose 3 balls (with ≥1R, ≥1B):
We can break it into sub‐cases:- Pick 1 blue + 2 reds: .
- Pick 2 blues + 1 red: .
Adding them gives
-
Number of ways to choose 4 balls (with ≥1R, ≥1B):
This can be counted by “which single ball is not chosen,” or directly as:- Omit 1 blue (2 ways) ⇒ keep all 3 reds + the other blue.
- Omit 1 red (3 ways) ⇒ keep the other 2 reds + both blues.
So in shorthand:
- ,
- ,
- .
Case I:
- Choose which 1 box will contribute 4 balls: .
- From that chosen box, pick 4 (with ≥1R, ≥1B):
- From each of the remaining 3 boxes, pick 2 (with ≥1R, ≥1B): for each box.
Putting it together:
Case II:
- Choose which 2 boxes will contribute 3 balls each:
- From each of those 2 boxes, pick 3 (with ≥1R, ≥1B): per box.
- From the remaining 2 boxes, pick 2 (with ≥1R, ≥1B): per box.
Hence:
Total Number of Ways
Summing the two cases:
This matches the result we get by any other method.
Why the Expressions Look Like , , etc.
- When picking 4 from the box, the expression is simply counting how many ways to omit exactly one ball: either omit one of the 2 blues or one of the 3 reds.
- When picking 2 from the box, the product counts how to pick exactly 1 blue (out of 2) and 1 red (out of 3).
- When picking 3 from the box, the sum counts the two ways to ensure at least 1 red and 1 blue: either (1B + 2R) or (2B + 1R).
All these small building blocks then get multiplied according to which boxes we take 2, 3, or 4 balls from, and finally we sum over the different ways to assign those numbers of balls to the boxes.
Comments
Post a Comment