In a combination you care only which objects were chosen, never the order they were chosen in. $\{A, B, C\}$ and $\{C, A, B\}$ are the same combination.
How many ways are there of choosing two people out of a group of ten to sit on a committee?
- Write $r$ descending factors starting at $n$ on the top.
- Write $r!$ on the bottom.
- Cancel before multiplying โ the answer is always a whole number.
- If $r$ is more than half of $n$, use the symmetry first.
$\binom{n}{r} = \binom{n}{n-r}$
Evaluate ${}^{12}C_4$.
Evaluate ${}^{50}C_{48}$.
A committee of $5$ is chosen from $7$ women and $6$ men. How many committees contain exactly $3$ women?
From the same $7$ women and $6$ men, how many committees of $5$ contain at least $4$ women?
A team of $4$ is chosen from $10$ players, of whom $3$ are goalkeepers. How many teams include at least one goalkeeper?
Three counters are drawn at random from a bag containing $5$ red and $4$ blue. Find the probability that all three are red.
Meaning
An unordered selection of $r$ from $n$.
Formula
${}^nC_r = \dfrac{n!}{r!(n-r)!}$.
Link to $P$
${}^nC_r = {}^nP_r \div r!$.
Symmetry
$\binom{n}{r} = \binom{n}{n-r}$.
Edge cases
$\binom{n}{0} = \binom{n}{n} = 1$.
Whole number
Always โ a fraction means an error.
Several groups
Choose from each, then multiply.
Within / between
Multiply within a case, add between cases.
"At least one"
Total minus none.
Probability
Favourable selections over total selections.
Evaluate ${}^7C_2$ and ${}^9C_4$.
โถ Show solution
${}^7C_2 = \dfrac{7 \times 6}{2} = 21$
${}^9C_4 = \dfrac{9 \times 8 \times 7 \times 6}{24} = 126$
How many ways are there of choosing $3$ pizza toppings from a list of $8$?
โถ Show solution
Order irrelevant: ${}^8C_3 = \dfrac{8 \times 7 \times 6}{6} = 56$
Evaluate ${}^{30}C_{28}$.
โถ Show solution
Use the symmetry: ${}^{30}C_{28} = {}^{30}C_2$.
$= \dfrac{30 \times 29}{2} = 435$
A team of $5$ is chosen from $6$ boys and $5$ girls. How many teams have exactly $2$ boys?
โถ Show solution
$2$ boys from $6$: ${}^6C_2 = 15$
$3$ girls from $5$: ${}^5C_3 = 10$
$15 \times 10 = 150$
From a pack of $52$ cards, how many different hands of $5$ cards are possible?
โถ Show solution
${}^{52}C_5 = \dfrac{52 \times 51 \times 50 \times 49 \times 48}{120}$
$= 2\,598\,960$
Solve ${}^nC_2 = 36$.
โถ Show solution
$\dfrac{n(n-1)}{2} = 36$, so $n(n-1) = 72$.
$n^2 - n - 72 = 0$, giving $(n-9)(n+8) = 0$.
$n = 9$ (rejecting $n = -8$).
A group of $4$ is chosen from $9$ people, two of whom are twins. How many groups contain at least one twin?
โถ Show solution
Total: ${}^9C_4 = 126$
Groups with no twin, from the other $7$: ${}^7C_4 = 35$
$126 - 35 = 91$
Two counters are taken at random from a bag of $6$ green and $4$ yellow. Find the probability that both are green.
โถ Show solution
Total ways: ${}^{10}C_2 = 45$
Both green: ${}^6C_2 = 15$
$P = \dfrac{15}{45} = \dfrac{1}{3}$
Explain, without computing either side, why $\binom{n}{0} + \binom{n}{1} + \cdots + \binom{n}{n} = 2^n$.
โถ Show solution
The left side counts all the subsets of a set of $n$ objects, grouped by size: those with $0$ elements, then $1$, and so on up to $n$.
The right side counts the same subsets a different way: for each of the $n$ objects, decide independently whether to include it. That is $2$ choices, $n$ times, so $2^n$ subsets.
Both sides count every subset exactly once, so they are equal.
(Equivalently, substitute $x = 1$ into the expansion of $(1+x)^n$.)
A box holds $12$ light bulbs, of which $3$ are faulty. Four bulbs are chosen at random.
(a) How many selections are possible? (b) Find the probability that none is faulty. (c) Find the probability that exactly one is faulty. (d) Find the probability that at least two are faulty, and check your three probabilities are consistent.
โถ Show solution
(a) ${}^{12}C_4 = \dfrac{12 \times 11 \times 10 \times 9}{24} = 495$
(b) All four from the $9$ good bulbs: ${}^9C_4 = 126$
$P(\text{none faulty}) = \dfrac{126}{495} = \dfrac{14}{55} = 0.2545\ldots$
(c) One faulty from $3$ and three good from $9$:
${}^3C_1 \times {}^9C_3 = 3 \times 84 = 252$
$P(\text{exactly one}) = \dfrac{252}{495} = \dfrac{28}{55} = 0.5090\ldots$
(d) "At least two" is the complement of "none or exactly one":
$P = 1 - \dfrac{14}{55} - \dfrac{28}{55} = 1 - \dfrac{42}{55} = \dfrac{13}{55} = 0.2363\ldots$
Consistency check by direct counting:
Exactly two faulty: ${}^3C_2 \times {}^9C_2 = 3 \times 36 = 108$
Exactly three faulty: ${}^3C_3 \times {}^9C_1 = 1 \times 9 = 9$
$108 + 9 = 117$, and $\dfrac{117}{495} = \dfrac{13}{55}$ โ
Also $126 + 252 + 108 + 9 = 495$, accounting for every possible selection โ a complete check on all four cases.