The Art of Selection
Mastering Combinatorics
Imagine you are the chief selector for a national cricket team. You have a pool of 15 talented players: 6 bowlers, 7 batsmen, and 2 wicketkeepers. Your mission is to assemble a balanced playing eleven under specific constraints.
You need at least 4 bowlers, 5 batsmen, and 1 wicketkeeper. This is the kind of problem that separates the casual observer from the master strategist. Let's break it down.
Phase 1
The Boundary Conditions
In any combinatorial problem, the first step is to understand the boundaries. We have a total of 15 players and we need to select 11. The constraints are:
- Bowlers (B): B≥4
- Batsmen (Bt): Bt≥5
- Wicketkeepers (W): W≥1
If we simply take the minimum requirements, we have 4+5+1=10 players. Since we need 11 players, we have exactly one 'extra' spot to fill. This realization transforms a daunting problem into three manageable, distinct cases.
Phase 2
The Three Scenarios
We can now define our three mutually exclusive scenarios based on who takes that extra spot:
1. Case 1: The Wicketkeeper Focus. We take the minimums and add an extra wicketkeeper. The composition becomes (4,5,2).
2. Case 2: The Batsman Focus. We take the minimums and add an extra batsman. The composition becomes (4,6,1).
3. Case 3: The Bowler Focus. We take the minimums and add an extra bowler. The composition becomes (5,5,1).
Phase 3
The Calculation
We use the power of combinations, denoted as (rn), which calculates the number of ways to choose r items from a set of n.
For Case 1 (4,5,2):
We choose 4 bowlers from 6, 5 batsmen from 7, and 2 wicketkeepers from 2.
Ways=(46)×(57)×(22)=15×21×1=315
For Case 2 (4,6,1):
We choose 4 bowlers from 6, 6 batsmen from 7, and 1 wicketkeeper from 2.
Ways=(46)×(67)×(12)=15×7×2=210
For Case 3 (5,5,1):
We choose 5 bowlers from 6, 5 batsmen from 7, and 1 wicketkeeper from 2.
Ways=(56)×(57)×(12)=6×21×2=252
The Grand Total
Because these cases are mutually exclusive, we apply the Addition Principle to find the total number of valid team combinations.
Total Ways=315+210+252=777
There you have it! By systematically breaking down the constraints and identifying the 'extra' player, we have navigated through the complexity to find that there are exactly 777 ways to select your team. Remember, in JEE Advanced, the secret lies in the logical structure you build before you even touch your pen to the paper.