Combination Formula
The Formula
When to use: How many ways to choose a group? \{A, B, C\} = \{C, B, A\}.
Quick Example
Notation
What This Formula Means
A combination is an unordered selection of objects โ the number of ways to choose r items from n distinct items is C(n,r) = \frac{n!}{r!(n-r)!}.
How many ways to choose a group? \{A, B, C\} = \{C, B, A\}.
Formal View
Worked Examples
Example 1
easySolution
- 1 Recall the combination formula for unordered selections: \binom{n}{r} = \frac{n!}{r!(n-r)!}, with n = 8, r = 3.
- 2 Cancel common factorial terms: \binom{8}{3} = \frac{8!}{3! \cdot 5!} = \frac{8 \times 7 \times 6}{3 \times 2 \times 1}
- 3 Calculate: \frac{336}{6} = 56
Answer
Example 2
mediumCommon Mistakes
- Using combinations when order matters โ picking 1st, 2nd, and 3rd place requires permutations
- Forgetting to divide by r! when converting from permutations to combinations
- Confusing C(n, r) with C(r, n) โ the larger number must be n (the pool), not r (the selection)
Why This Formula Matters
Combinations count lottery tickets, committee selections, and any situation where you pick a group and the order of picking does not matter.
Frequently Asked Questions
What is the Combination formula?
A combination is an unordered selection of objects โ the number of ways to choose r items from n distinct items is C(n,r) = \frac{n!}{r!(n-r)!}.
How do you use the Combination formula?
How many ways to choose a group? \{A, B, C\} = \{C, B, A\}.
What do the symbols mean in the Combination formula?
C(n, r), _nC_r, or \binom{n}{r} all denote combinations of r items from n
Why is the Combination formula important in Math?
Combinations count lottery tickets, committee selections, and any situation where you pick a group and the order of picking does not matter.
What do students get wrong about Combination?
C(5, 2) = C(5, 3) = 10. Choosing 2 to include = choosing 3 to exclude.
What should I learn before the Combination formula?
Before studying the Combination formula, you should understand: permutation, factorial.