When to use permutations vs combinations
Use permutations when the order or arrangement of selected items matters:
- assigning ranked positions (1st, 2nd, 3rd place)
- arranging books on a shelf
- creating passwords or PIN codes
- seating arrangements
- phone numbers
Use combinations when you are simply choosing a subset and order is irrelevant:
- selecting team members
- choosing lottery numbers
- picking menu items
- forming committees
A helpful test: if swapping two selected items creates a different outcome, use permutations; if the swap doesn't matter, use combinations.
Lottery numbers illustrate this perfectly — the Mega Millions drawing selects 5 numbers from 70 plus 1 from 25: C(70,5) × 25 = 302,575,350 possible tickets. If order mattered, there would be P(70,5) × 25 = 36,309,042,000 possibilities — 120 times more.