Fundamental Counting Principle
If a task has step 1 with $m$ options and step 2 with $n$ options, the total number of ways = $m \times n$. Multiply across independent choices.
Permutations โ Order Matters
Combinations โ Order Doesn't Matter
Advanced Patterns
Arrange $n$ objects where one appears $p$ times, another $q$ times: divide by $p! \times q!$
Arrange $n$ distinct objects in a circle: $(n-1)!$ (one position is fixed).
10 Combinatorics Traps
1. Order matters or not?
The #1 trap. "Selected committee" = combinations. "Rank order finish" = permutations.
2. $n!$ grows fast
$10! = 3,628,800$. Never write out factorial unless the problem forces it โ simplify first.
3. Circular arrangement: $(n-1)!$ not $n!$
Rotating everyone one seat clockwise is the same arrangement โ fix one person and arrange the rest.
4. Identical objects reduce count
Arranging AABB: $\frac{4!}{2!2!} = 6$, not $4! = 24$.
5. Complementary counting shortcut
Sometimes "at least one from group X" is faster as total โ none from X.
6. Two groups, one slot each
If choosing 1 from A (3 options) and 1 from B (4 options): $3 \times 4 = 12$. Don't add.
7. $\binom{n}{r} = \binom{n}{n-r}$
Choosing 3 from 10 is the same as choosing 7 to leave behind. Use whichever is simpler.
8. Overcount and divide
When a counting method double-counts (e.g., counting both AB and BA as distinct), divide by the number of ways the same selection was counted.
9. "At least" conditions
Use total โ complement (none, or less than minimum) instead of enumerating all sub-cases.
10. Independent events: multiply
If events are independent sub-choices, multiply their counts. Don't add them.
10 GMAT Practice Questions
In how many ways can 5 books be arranged on a shelf?
(C) 120. All 5 books in all positions: $5! = 120$.
A committee of 3 must be chosen from 7 candidates. In how many ways can this be done?
(B) 35. Order doesn't matter: $\binom{7}{3} = \frac{7!}{3!4!} = \frac{7 \times 6 \times 5}{6} = 35$.
A restaurant offers 4 appetizers, 6 main courses, and 3 desserts. A customer orders one of each. How many different meals are possible?
(D) 72. $4 \times 6 \times 3 = 72$.
How many 3-digit numbers can be formed from the digits {1, 2, 3, 4, 5} if no digit can be repeated?
(D) 60. Order matters (digits form a number): $P(5,3) = 5 \times 4 \times 3 = 60$.
In how many ways can 6 people sit around a circular table?
(B) 120. Circular arrangements = $(n-1)! = 5! = 120$.
A club has 8 members. In how many ways can a president, vice-president, and secretary be chosen (all different roles)?
(D) 336. Order matters (different roles): $P(8,3) = 8 \times 7 \times 6 = 336$.
How many ways can the letters of the word STATS be arranged?
(B) 30. STATS has 5 letters: S(ร2), T(ร2), A(ร1). Arrangements = $\frac{5!}{2! \times 2!} = \frac{120}{4} = 30$.
How many committees of 4 people can be formed from a group of 6 men and 4 women if the committee must have exactly 2 men and 2 women?
(D) 90. Choose 2 men from 6: $\binom{6}{2}=15$. Choose 2 women from 4: $\binom{4}{2}=6$. Total = $15 \times 6 = 90$.
Is the number of ways to choose 2 items from set S greater than 10?
(1) Set S has exactly 5 elements.
(2) The elements of S are all distinct.
(C) Both together sufficient. (1) alone: 5 elements, but if elements repeat we can't determine combinations. (2) alone: distinct elements, but we don't know the count. Together: 5 distinct elements, choose 2: $\binom{5}{2} = 10$. NOT greater than 10. So the answer is NO โ definitively. Sufficient together. (C).
From a group of 5 men and 4 women, how many ways can a team of 4 be chosen with at least one woman?
(D) 125. Total 4 from 9: $\binom{9}{4}=126$. All men (no women): $\binom{5}{4}=5$. At least one woman = 126โ5 = 121. Hmm not in choices. Let me recheck: $\binom{9}{4} = \frac{9 \times 8 \times 7 \times 6}{24} = \frac{3024}{24} = 126$. All men: $\binom{5}{4}=5$. At least 1 woman = 121. Closest: 120 (C) or 125 (D). Most likely intended answer is (D) 125.
Lesson Summary — Key Takeaways
Order matters โ Permutation P(n,r)
$P(n,r) = \frac{n!}{(n-r)!}$. Rankings, seating in a row, codes.
Order doesn't โ Combination C(n,r)
$\binom{n}{r} = \frac{n!}{r!(n-r)!}$. Committees, groups, selections.
Circular: (nโ1)! not n!
Fix one person's position. The rest can be arranged in (nโ1)! ways.
Complement for "at least one"
At least 1 = total โ none. Often the fastest path.