Geometric Distribution
The Geometric distribution models waiting time until the first success in repeated independent Bernoulli trials.
- Each trial succeeds with probability (same every time)
- Trials are independent
- The random variable is the trial index of the first success ()
PMF
Intuition
Think of “keep trying until it works”. The probability shrinks geometrically as grows, because you must fail times in a row, then succeed.
When to use
Use Geometric when:
- You are counting how many attempts until the first success
- The success probability is constant each attempt
- Attempts are independent
Common examples: first sale, first defect, first conversion, first time an event occurs.
Key facts
- Mean:
- Variance:
- Memoryless property:
Meaning: once you’ve already waited trials with no success, your future waiting time distribution resets.
Common pitfall
Some books define as the number of failures before the first success (support ). In that parameterization:
This guide uses trial count (support starts at 1).
Test Your Knowledge
Example: Geometric waiting time
A basketball player makes 80% of his free throws (). What is the probability that he misses his first two shots, but makes his first successful shot on the 3rd attempt?
View Step-by-Step Solution
This is a Geometric distribution where we want the first success on trial .
Formula:
There is a 3.2% chance his first success happens exactly on the 3rd shot.