This is a conditional probability problem. The key insight is figuring out how 3 women get selected when you're picking 2 from each floor.
Floor 1: 1 man, 5 women (6 total)
Floor 2: 5 men, 1 woman (6 total)
Picking 2 from each floor, so 4 total people selected.
For exactly 3 women total, the only possibility is: 2 women from Floor 1 AND 1 woman from Floor 2 (since Floor 2 only has 1 woman, you can't get 2 from there).
1. P(2 women from Floor 1):
C(5,2) / C(6,2) = 10/15 = 2/3
2. P(1 woman from Floor 2, meaning we pick the 1 woman + 1 of the 5 men):
C(1,1) * C(5,1) / C(6,2) = 5/15 = 1/3
3. These events are independent (different floors), so multiply:
P(3 women total) = (2/3) * (1/3) = 2/9
Answer: B
The trap here is not thinking carefully about what "3 women" requires from each floor. Most people who get this wrong either forget to condition on where the women come from, or try to compute it as a single pool of 12 people. Separate the floors and it becomes much cleaner.