This is an
"at least one" probability problem, and the fastest way to solve these is using the
complement trick:
P(at least one woman) = [b]1 - P(NO women)[/b]P(NO women) means BOTH selected persons are men.
Step 1: Find total ways to choose
2 people from
13.
C(13,2) = (
13 ×
12) / (
2 ×
1) =
78Step 2: Find ways to choose
2 men from
8 men (this is the "no women" scenario).
C(8,2) = (
8 ×
7) / (
2 ×
1) =
28Step 3: P(no women) =
28/
78 =
14/
39Step 4: P(at least one woman) =
1 -
14/
39 =
25/
39Answer: CWhy use the complement? "At least one woman" includes
2 separate cases — exactly
1 woman OR exactly
2 women. Calculating both and adding them works, but it's slower. The complement ("no women at all") is just one simple case, so subtracting it from
1 is much faster.
General principle: Whenever you see "at least one" in a probability question, immediately think complement. Calculate the probability of the opposite event (none), and subtract from 1. This shortcut saves significant time on the GMAT.The most common mistake here is forgetting to use
combinations and instead just multiplying individual probabilities incorrectly. Always count the combinations carefully: total outcomes in the denominator, favorable outcomes in the numerator.