Key formulas
Every Topic 6 problem reduces to one of these moves. The hardest part is reading the prompt carefully enough to know which one.
Quick reference
Sample spaces worth memorizing, the permutation-vs-combination decision tree, and the Excel calls.
Sample spaces to know cold
One coin flip → 2 outcomes (H, T)
One die roll → 6 outcomes (1…6)
Two coin flips → 4 outcomes (2 × 2)
Two dice → 36 outcomes (6 × 6)
A standard deck → 52 cards (4 suits × 13 ranks)
Permutation or combination?
Does order matter? Try rearranging your top picks — if a different order means a different answer, it's a permutation. If the same group counts as one regardless of order, it's a combination.
Lottery numbers? Combination. Race finishers? Permutation. Pizza toppings? Combination. Locker codes? Permutation (and repetition is usually allowed, so the counting principle is faster).
Probability vocabulary
Outcome — a single possible result.
Sample space — the set of all outcomes.
Event — a subset of the sample space we care about.
Mutually exclusive — two events that can't both happen.
Independent — the outcome of one doesn't affect the other.
Complement — everything in the sample space except the event.
Excel for probability
=PERMUT(n, r) permutations
=COMBIN(n, r) combinations
=FACT(n) n factorial
=SUMPRODUCT(values, probs) expected value in one shot
=RAND() random number 0–1, for simulating experiments
Theoretical vs experimental
Theoretical — computed from the structure of the problem. P(heads) = 1/2 = 0.5.
Experimental — measured from observed trials. 53 heads in 100 flips = 0.53.
The Law of Large Numbers: experimental converges to theoretical as the number of trials grows.