The geometric distribution
- Geometric questions stop counting how many successes and start counting how long you wait.
- You keep trying until the first success.
- is the trial number where the first success finally happens.
- To succeed exactly on trial , you fail times, then succeed.
- So , with no .
X ~ Geo(p): the formula and the q^r tails
| Binomial B(n, p) | Geometric Geo(p) | |
|---|---|---|
| what's fixed | n trials, fixed | trials open-ended |
| X counts | # successes | trial of the 1st success |
| coefficient | none (one order) | |
| P(X = r) | ||
| mean | ||
| range of X |
Worked example
Start simple: a single value
Success prob 0.66 (), first success on trial 3: .
Worked example
On or before: sum the small cases
Same , “on or before the 2nd trial”: . For small you can just add the terms — that is why the shortcut works.
The tail shortcuts P(X > r) = qʳ and P(X ≤ r) = 1 − qʳ package the whole infinite sum — never add up an endless GP.
Worked example
Where the tail shortcut shines
18% wear contact lenses (). First wearer among the first 15: ; not in the first 9: .
- Name it: , .
- Single value? (no ).
- “More than r”? . “r or fewer”? .
- “Fewer than r” / “at least r”: convert to / FIRST, then pick the q-power.
Worked example
The off-by-one tail
, “fewer than 7 spins” = . (9709/52/O/N/23 Q2)
Worked example
A range by differencing tails
, . (9709/52/O/N/24 Q7)
Worked example
Hard rung: words → inequality with a fractional p
Coin gives heads with (), tossed until the first head. “At least six times” = ; “fewer than eight” = .
Convert the words to ≤ or > FIRST, then read the q-power. “Fewer than 7” means q⁶, not q⁷.
| Wording | Event | Formula |
|---|---|---|
| exactly r | ||
| more than r | ||
| r or fewer | ||
| fewer than r | ||
| between a, b |
Examiner note
Why you never need an infinite sum
The probabilities form a GP with ratio summing to ; the closed-form tail already packages the whole sum from onward.
Common mistake