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.
The Memoryless Property: "No Progress"
The Geometric distribution is the only discrete distribution with this property.
The Intuition
Think of it this way: the coin doesn't "remember" its previous flips. If you have already flipped a coin 10 times and gotten Tails every time, the probability that your next flip is Heads is still . The probability that you will have to wait another 3 flips for your first Heads is exactly the same as if you were starting from scratch.
The Mathematical Proof
To make this proof elegant, we use the Survival Function: the probability that we haven't seen a success yet in trials.
(Intuition: means you failed times in a row).
We want to prove that the probability of waiting more trials, given you've already waited trials, is the same as the original probability of waiting trials.
Step 1: Set up the Conditional Probability
Step 2: Simplify the Numerator
Since implies :
Step 3: Plug in the Survival Function
Step 4: Use Exponent Rules
Conclusion:
The trials you have already "wasted" () have no impact on your future waiting time.
The "Continuous" Cousin
The continuous counterpart to this property is found in the Exponential Distribution, which models time between events in a continuous process.
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.