The Art of Selection
Mastering Combinatorics
Welcome, future engineers! Today, we are not just solving a combinatorics problem; we are learning to see the hidden structures in a crowd. Combinatorics is the mathematics of choice, and in the JEE, it is often less about brute force and more about finding the elegant path.
Let us break down this committee problem step by step.
Phase 1
The Foundation (a1)
We begin with a simple task: forming a committee of 5 members with exactly 3 boys and 2 girls. We have 6 boys and 5 girls. This is a direct application of the Fundamental Principle of Counting.
We treat the selection of boys and girls as independent events. We choose 3 boys from 6, which is 6C3, and 2 girls from 5, which is 5C2.
Multiplying these gives us the total ways:
Phase 2
The Elegance of Vandermonde (a2)
Now, things get interesting. We need an equal number of boys and girls, with at least 2 members total. If we have k boys and k girls, the total members are 2k. Since we have 5 girls, k can range from 1 to 5.
The total ways would be:
Calculating this sum directly is a recipe for a headache. Instead, let us invoke Vandermonde's Identity:
\sum_{k=0}^{n} ^{r}C_{k} \times ^{m}C_{n-k} = ^{r+m}C_{n}
By rewriting 5Ck as 5C5−k, our sum becomes ∑k=05(6Ck×5C5−k). This is exactly 11C5.
But wait! Our sum starts at k=1, not k=0. So, we must subtract the k=0 case (the empty committee).
a2=11C5−(6C0×5C0)=462−1=461
Phase 3
The Power of Complementary Counting (a3)
For a3, we need a 5-member committee with at least 2 girls. The phrase 'at least' is a siren song in JEE problems—it often lures students into calculating too many cases. Let us use complementary counting.
We take the total possible 5-member committees and subtract the 'unwanted' cases: those with 0 girls or 1 girl.
Total ways = 11C5=462.
Ways with 0 girls = 6C5×5C0=6×1=6.
Ways with 1 girl = 6C4×5C1=15×5=75.
Subtracting these from the total, we get:
Phase 4
The Boss Level (a4)
Finally, we tackle a4: a 4-member committee, at least 2 girls, with the constraint that M1 and G1 cannot be together. We use the same 'Total minus Violating' strategy.
First, find the total 4-member committees with at least 2 girls (ignoring the constraint):
- 2 Girls, 2 Boys: 5C2×6C2=10×15=150
- 3 Girls, 1 Boy: 5C3×6C1=10×6=60
- 4 Girls, 0 Boys: 5C4×6C0=5×1=5
Total = 150+60+5=215.
Now, subtract the violating cases where M1 and G1 are both present. We have already filled 2 spots (M1,G1). We need 2 more members from the remaining 5 boys and 4 girls, ensuring at least 1 more girl (to satisfy the 'at least 2 girls' rule):
- 1 more Girl, 1 more Boy: 4C1×5C1=4×5=20
- 2 more Girls, 0 more Boys: 4C2×5C0=6×1=6
Total violations = 20+6=26.
Finally, we arrive at the result:
You have navigated the constraints, applied the identities, and conquered the problem. Keep this mindset, and no JEE problem will ever intimidate you again!