2026-04-12

Problem — 2026-04-12

Medium

Mediumprobability

You have 55 pairs of shoes (1010 shoes total) in a closet. You randomly pick 44 shoes. What is the probability that you get at least one matching pair?

Express as a fraction

Show solution
Use the complement. To get NO matching pair, choose 44 of the 55 shoe types ((54)=5\binom{5}{4} = 5 ways), then pick one shoe (left or right) from each chosen pair (24=162^4 = 16 ways). So no-match outcomes: 5×16=805 \times 16 = 80. Total ways to pick 44 from 1010: (104)=210\binom{10}{4} = 210. P(no match)=80210=821P(\text{no match}) = \frac{80}{210} = \frac{8}{21}. So P(at least one match)=1821=1321P(\text{at least one match}) = 1 - \frac{8}{21} = \frac{13}{21}.