Coins and dice
Coins and dice are the canonical probability experiments. Their sample spaces are clean, the outcomes are equally likely (for fair coins and dice), and the enumeration is mechanical. Master these and a wide variety of probability problems become routine.
One coin
Sample space: S={H,T}. Size 2.
For a fair coin, P(H)=P(T)=1/2.
Two coins (or one coin tossed twice)
Sample space: S={HH,HT,TH,TT}. Size 4.
| Event | Outcomes | Probability |
|---|
| Two heads | {HH} | 1/4 |
| Exactly one head | {HT,TH} | 2/4=1/2 |
| At least one head | {HH,HT,TH} | 3/4 |
| No head | {TT} | 1/4 |
| At most one head | {TT,HT,TH} | 3/4 |
Three coins (or one coin tossed three times)
Sample space: S={HHH,HHT,HTH,THH,HTT,THT,TTH,TTT}. Size 8.
| Event | Count | Probability |
|---|
| Three heads | 1 | 1/8 |
| Two heads | 3 (HHT,HTH,THH) | 3/8 |
| Exactly one head | 3 | 3/8 |
| No head | 1 | 1/8 |
| At least one head | 7 | 7/8 |
A useful observation: with n tosses, the count of "exactly k heads" is (kn) (read "n choose k"). For n=3: (03),(13),(23),(33)=1,3,3,1.
One die
Sample space: S={1,2,3,4,5,6}. Size 6.
| Event | Outcomes | Probability |
|---|
| Even | {2,4,6} | 3/6=1/2 |
| Odd | {1,3,5} | 1/2 |
| Prime | {2,3,5} | 1/2 |
| Multiple of 3 | {3,6} | 1/3 |
| Greater than 4 | {5,6} | 1/3 |
| 1 or 6 | {1,6} | 1/3 |
Two dice
Sample space: ordered pairs (d1,d2) where each di is one of 1,…,6. Size 36.
The most important distribution to know: the sum of the two dice.
| Sum | Combinations | Count |
|---|
| 2 | (1,1) | 1 |
| 3 | (1,2),(2,1) | 2 |
| 4 | (1,3),(3,1),(2,2) | 3 |
| 5 | (1,4),(4,1),(2,3),(3,2) | 4 |
| 6 | (1,5),(5,1),(2,4),(4,2),(3,3) | 5 |
| 7 | 6 pairs | 6 |
| 8 | 5 | 5 |
| 9 | 4 | 4 |
| 10 | 3 | 3 |
| 11 | 2 | 2 |
| 12 | (6,6) | 1 |
Notice the symmetric triangular distribution: counts go 1,2,3,4,5,6,5,4,3,2,1, summing to 36. The most likely sum is 7.
Other useful events:
| Event | Count | Probability |
|---|
| Doubles | 6 | 1/6 |
| Sum is prime (2,3,5,7,11) | 1+2+4+6+2=15 | 15/36=5/12 |
| Sum > 10 | 3 (11,11,12) | 3/36=1/12 |
| Sum is multiple of 4 | 1+5+3=9 (4,8,12) | 9/36=1/4 |
Worked examples
Example 1. A coin is tossed twice. Find P(head appears at least once).
P=3/4.
Example 2. Three coins are tossed. Find P(exactly two heads).
P=3/8.
Example 3. Two dice are rolled. Find P(sum is 8$$).
5 combinations. P=5/36.
Example 4. Two dice are rolled. Find P(product is a multiple of 6$$).
Outcomes where d1⋅d2 is a multiple of 6: enumerate. Multiples of 6 in {1,…,36} are 6,12,18,24,30,36. Pairs: (1,6)(6,1)(2,3)(3,2)⇒ for 6, 4 pairs. For 12: (2,6)(6,2)(3,4)(4,3)⇒4. For 18: (3,6)(6,3)⇒2. For 24: (4,6)(6,4)⇒2. For 30: (5,6)(6,5)⇒2. For 36: (6,6)⇒1. Total 15. P=15/36=5/12.
Example 5. Two dice are rolled. Find P(same number on both).
Doubles: (1,1),(2,2),…,(6,6)⇒6. P=6/36=1/6.
Example 6. A die is rolled. Find P(neither prime nor multiple of 3$$).
Primes: {2,3,5}. Multiples of 3: {3,6}. Union: {2,3,5,6}. Complement: {1,4}, 2 outcomes. P=2/6=1/3.
Example 7. Two dice are rolled. Find P(sum is less than 6$$).
Sums 2,3,4,5: 1+2+3+4=10 outcomes. P=10/36=5/18.
Try it yourself
- A coin is tossed three times. P(all three heads)=?
- A coin is tossed three times. P(exactly two heads)=?
- A coin is tossed three times. P(at least one head)=?
- A die is rolled. P(prime number)=?
- A die is rolled. P(even or multiple of 3$$) = ?
- Two dice are rolled. P(sum = 7$$) = ?
- Two dice are rolled. P(sum is even)=?
- Two dice are rolled. P(sum is \geq 9$$) = ?
- Two dice are rolled. P(at least one shows 6$$) = ?
- Two dice are rolled. P(product is odd)=?
- Three coins are tossed. P(no tails)=?
- A coin is tossed n times. P(all heads)=? (express in terms of n).
Pitfalls / Insight
(1) For two coins or two dice, treat them as ordered (first and second). The sample space is 4 or 36, not 3 or 21.
(2) For "at least" events, often easier to use complement: P(at least one)=1−P(none).
(3) For dice sums, memorise the triangular distribution. The sum 7 has the most ways (6); the further from 7, the fewer ways.
(4) Always reduce fractions to lowest terms. The board examiner expects 1/12, not 3/36.