$ \binom{n}{k} = \frac{n!}{k!(n-k)!} $ A **Combination** is a selection of $k$ objects from a set of $n$ distinct objects where the order does not matter. The [[Binomial Coefficient]] $\binom{n}{k}$ is read as "n choose k". --- > [!example]- Combinations of committees {💡 Example} > A committee of 3 is to be chosen from 10 people. How many different committees are possible? > > [!answer]- > > Since the order of selection doesn't matter, we use a combination: > > $ \binom{10}{3} = \frac{10!}{3! \cdot 7!} = \frac{10 \times 9 \times 8}{3 \times 2 \times 1} = 120 $