5.3 Permutations, Combinations & Counting Principles
Key Takeaways
- The Fundamental Counting Principle states that if sequential tasks can be completed in n₁, n₂, ..., n_k ways, the total number of combined outcomes is n₁ × n₂ × ... × n_k.
- Permutations nPr = n! / (n - r)! apply when arrangement order matters, whereas Combinations nCr = n! / (r!(n - r)!) apply when selection order does not matter.
- The number of distinct arrangements of n items containing duplicate groups of sizes k₁, k₂, ... is given by n! / (k₁! k₂! ...).
- For two overlapping sets, N(A ∪ B) = N(A) + N(B) - N(A ∩ B); for three overlapping sets, add individual sets, subtract pairwise intersections, and add the triple intersection.
5.3 Permutations, Combinations & Counting Principles
Combinatorics and counting principles measure the total number of possible outcomes for complex multi-stage choices, arrangements, and selections. Mastering the distinction between permutations (where order matters) and combinations (where order does not matter), alongside overlapping set formulas, is vital for high scores on GRE Quantitative Reasoning.
The Fundamental Counting Principle (FCP)
If an experiment consists of $k$ sequential stages, where Stage 1 can occur in $n_1$ ways, Stage 2 in $n_2$ ways, ..., and Stage $k$ in $n_k$ ways, then the total number of distinct outcomes is:
Example: A student creates a 4-digit PIN where the first digit cannot be 0 or 1 (8 options: 2-9), and the remaining three digits can be any digit 0-9 (10 options each). Total PINs = $8 \times 10 \times 10 \times 10 = 8,000$.
Factorial Notation & Permutations (Order Matters)
Factorial Notation ($n!$)
For any positive integer $n$, $n!$ (n-factorial) is the product of all positive integers from $n$ down to $1$:
Special Definition: $0! = 1$.
Permutations ($nPr$)
A permutation is an arrangement of $r$ objects selected from a pool of $n$ distinct objects in a specific order.
When arranging all $n$ objects, $nPn = n!$.
Worked Example (Permutation): A board of directors with 10 members must elect a President, Vice President, and Secretary. How many different slates of officers are possible?
- Order matters because roles are distinct (President $ eq$ Secretary).
- $n = 10, r = 3$.
- $10P3 = \frac{10!}{(10-3)!} = \frac{10!}{7!} = 10 \times 9 \times 8 = 720$.
Combinations (Order Does NOT Matter)
A combination is a selection of $r$ objects from a set of $n$ distinct objects where the order of selection is irrelevant.
Key Combination Properties & Pascal's Identity
- Symmetry: $\binom{n}{r} = \binom{n}{n-r}$. Choosing $r$ items to include is mathematically identical to choosing $n-r$ items to leave out (e.g., $\binom{10}{8} = \binom{10}{2} = 45$).
- Boundary Values: $\binom{n}{0} = 1$ and $\binom{n}{n} = 1$.
Worked Example (Combination): A manager must select a committee of 3 employees from a team of 8. How many different committees can be chosen?
- Order does not matter (a committee of Alice, Bob, Carol is the same as Carol, Alice, Bob).
- $n = 8, r = 3$.
- $8C3 = \binom{8}{3} = \frac{8 \times 7 \times 6}{3 \times 2 \times 1} = 56$.
Multi-Group Selection Problems
When making independent selections across multiple groups, calculate combinations for each group and multiply using the Fundamental Counting Principle.
Worked Example: Select 2 engineers from a group of 5, AND 3 technicians from a group of 6.
- Engineer selections = $\binom{5}{2} = \frac{5 \times 4}{2 \times 1} = 10$.
- Technician selections = $\binom{6}{3} = \frac{6 \times 5 \times 4}{3 \times 2 \times 1} = 20$.
- Total Teams = $10 \times 20 = 200$.
Indistinguishable Permutations (Counting with Repetition)
When arranging $n$ items where some items are identical, simple factorial $n!$ overcounts because swapping identical items produces no new visual sequence. The formula for distinct arrangements is:
where $k_1, k_2, \dots, k_m$ are the frequencies of each duplicate item.
Worked Example: How many unique 7-letter arrangements can be made using the letters in "ARRANGE"?
- Total letters $n = 7$.
- Duplicate frequencies: A appears 2 times, R appears 2 times, N, G, E appear 1 time each.
- $\text{Distinct Arrangements} = \frac{7!}{2! \times 2!} = \frac{5040}{2 \times 2} = 1260$.
Decision Matrix: Permutations vs. Combinations
| Problem Scenario | Order Significance | Formula | Example |
|---|---|---|---|
| Arranging items in a row | Order Matters | $n!$ | Seating 5 people in 5 chairs ($5! = 120$) |
| Assigning specific titles/roles | Order Matters | $nPr = \frac{n!}{(n-r)!}$ | Choosing President & VP from 8 ($8P2 = 56$) |
| Forming a committee/group | Order Does NOT Matter | $nCr = \frac{n!}{r!(n-r)!}$ | Selecting 4 committee members from 9 ($9C4 = 126$) |
| Arranging items with duplicates | Order Matters with Repetition | $\frac{n!}{k_1! k_2! \dots}$ | Arranging letters in "BALLOON" ($\frac{7!}{2! 2!}$) |
Overlapping Sets & Venn Diagrams
2-Set Overlapping Formula
For two sets $A$ and $B$ within a universal set:
Worked Example: Out of 100 students, 65 study French, 45 study Spanish, and 20 study both. How many study neither?
- $N(\text{French} \cup \text{Spanish}) = 65 + 45 - 20 = 90$.
- $N(\text{Neither}) = 100 - 90 = 10$.
3-Set Venn Diagram Formula
For three overlapping sets $A, B, C$:
- Subtract pairwise intersections because they are counted twice when adding individual sets.
- Add back the triple intersection $N(A \cap B \cap C)$ because subtracting all pairwise intersections removed the triple overlap entirely.
A committee of 3 co-chairs is to be chosen from a group of 8 eligible individuals. How many different committees can be formed?
A project team must be formed consisting of 2 engineers chosen from 5 available engineers, and 3 technicians chosen from 6 available technicians. How many distinct project teams can be selected?
How many distinct 7-letter arrangements can be formed using all the letters in the word ARRANGE?
In a group of 100 high school students, 65 take French, 45 take Spanish, and 20 take both French and Spanish. How many students take neither French nor Spanish?