Counting principles for ordered and unordered arrangements
Reserve & Extensions • K-12
How many ways can you arrange a group of objects? How many ways can you choose a team? These questions are at the heart of counting, and the answers depend on one critical question: does order matter?
If one event has m outcomes and a second event has n outcomes, then together they have m × n possible outcomes.
A restaurant offers 4 appetizers, 6 entrees, and 3 desserts. How many different 3-course meals are possible?
The factorial of a positive integer n, written n!, is the product of all positive integers from 1 to n:
| n | n! |
|---|---|
| 0 | 1 (by definition) |
| 1 | 1 |
| 3 | 6 |
| 5 | 120 |
| 7 | 5,040 |
| 10 | 3,628,800 |
A permutation is an arrangement of objects where order matters. Choosing president, vice-president, and treasurer from a group is a permutation problem -- the same three people in different roles count as different outcomes.
This counts the number of ways to arrange r items chosen from n total items.
From 8 runners, how many ways can gold, silver, and bronze medals be awarded?
A combination is a selection where order does not matter. Choosing 3 people for a committee (no specific roles) is a combination problem -- the same three people in any order form the same committee.
From 10 students, how many ways can a committee of 4 be formed?
Ask: "If I rearrange the selected items, do I get a different outcome?" If yes, use permutations (order matters). If no, use combinations (order does not matter). Assigning roles = permutation. Choosing a group = combination.
The difference between P(n, r) and C(n, r) is dividing by r!. When order does not matter, many permutations represent the same group. Dividing by r! accounts for duplicate arrangements. Choosing A-B-C is the same committee as C-B-A; there are 3! = 6 ways to arrange 3 people, so we divide by 6.
1. A lock has 3 dials, each with digits 0-9. How many possible codes are there?
Fundamental counting principle: 10 × 10 × 10 = 1,000 codes.
2. How many ways can 5 books be arranged on a shelf?
This is P(5, 5) = 5! = 120.
3. From 12 players, a coach selects 5 starters. How many different starting lineups are possible?
Order does not matter (no assigned positions): C(12, 5) = 12! / (5! × 7!) = (12 × 11 × 10 × 9 × 8) / 120 = 792.
4. How many 3-letter "words" (arrangements) can be made from the letters A, B, C, D, E with no repeats?
Order matters: P(5, 3) = 5 × 4 × 3 = 60.
5. A pizza shop offers 8 toppings. How many 3-topping pizzas are possible?
Order does not matter: C(8, 3) = 8! / (3! × 5!) = (8 × 7 × 6) / 6 = 56.