Poisson and Geometric Distributions
Some of the most useful probability models answer questions that sound almost casual. "How many customer complaints should the call centre expect in an hour?" "How many times will I have to roll before I finally get a six?" The first is a counting question about rare events spread over time or space; the second is a waiting question about how long until something finally happens. The Poisson distribution and the geometric distribution are the two workhorses for exactly these situations, and once you can tell them apart you will start seeing them everywhere — in queues, in insurance, in biology, in network traffic.
This page teaches both from the ground up: what problem each was built to solve, the formulas and where they come from, and enough worked arithmetic that you can trust yourself to use them.
Learning Objectives
- State the Poisson probability formula and identify the conditions under which it applies.
- State the geometric probability formula and distinguish "trials until success" from "counts per interval."
- Compute probabilities, means, and variances for both distributions.
- Recognise the Poisson as the limit of the binomial for rare events.
- Choose the correct distribution for a described real-world scenario and avoid the classic mix-ups.
Quick Answer
The Poisson distribution models the number of times a rare, independent event happens in a fixed interval of time, area, or volume, given an average rate . Its probability mass function is , and both its mean and variance equal . The geometric distribution models the number of independent trials, each with success probability , needed to get the first success. Its pmf is , with mean and variance . Use Poisson when you are counting how many events occur; use geometric when you are counting how many attempts until one occurs.
Where It Came From
The Poisson distribution is named for the French mathematician Siméon Denis Poisson, who published it in 1837 in a work on the probability of judgments in criminal and civil matters. Poisson was studying how many jurors out of many would render a particular verdict — a rare-outcome counting problem — and derived his distribution as an approximation to the binomial when the number of trials is huge but the chance of the event on any single trial is tiny. For decades it was a mathematical curiosity.
What made it famous was a wonderfully grim dataset. In 1898 the Russian statistician Ladislaus Bortkiewicz published Das Gesetz der kleinen Zahlen ("The Law of Small Numbers"). He examined records from 14 corps of the Prussian army over 20 years — 200 corps-years in total — counting how many soldiers were killed each year in each corps by being kicked by a horse. Death by horse-kick is a textbook rare event: each soldier has a minuscule chance of it, but there are many soldiers, and the outcomes are essentially independent. Bortkiewicz found that the yearly counts (0, 1, 2, 3, 4 deaths) matched the Poisson distribution almost perfectly with an average of about deaths per corps per year. The point he made — that even seemingly chaotic rare events follow a precise statistical law — cemented the Poisson distribution as the model for counting rare events.
The geometric distribution has no single celebrated origin story; it grew naturally out of the study of repeated independent trials (Bernoulli trials), formalised by Jacob Bernoulli around 1700. The need it answers is intuitive and ancient: gamblers and insurers alike wanted to know how long they should expect to wait for a first success or first failure. The name comes from the fact that its probabilities form a geometric sequence.
The Poisson Distribution: Counting Rare Events
The Poisson distribution applies when four conditions hold:
- Events occur in a fixed interval (time, length, area, volume).
- Events happen at a constant average rate .
- Events are independent of one another.
- Two events cannot occur at exactly the same instant.
The probability of observing exactly events is
Here (lambda) is the expected number of events in the interval. A remarkable feature is that the mean and variance are both equal to :
Worked example. A hospital emergency department receives on average ambulances per hour. Assuming arrivals are Poisson, what is the probability of exactly ambulances in a given hour?
Here and :
Since ,
So there is about a 14% chance of exactly three ambulances. Notice the variance is also , so the standard deviation is ambulances.
Scaling the interval. Because the rate is constant, if you change the length of the interval you simply scale . If ambulances arrive at 5 per hour, then over a 30-minute window , and the probability of no ambulances in that half hour is .
Poisson as the Limit of the Binomial
The Poisson distribution is not arbitrary — it is what the binomial distribution becomes when trials are many and successes are rare. If and you let while keeping fixed (so ), the binomial pmf converges to the Poisson pmf.
Worked check. Suppose a factory produces items and each is defective with probability , independently. The exact expected number of defectives is . The binomial probability of exactly 2 defectives is . The Poisson approximation with gives
The two agree to three decimal places — which is why Poisson is the go-to model whenever is large and is small.
The Geometric Distribution: Waiting for Success
The geometric distribution answers a different question: in a sequence of independent trials each with success probability , how many trials until the first success? The number of trials (counting the successful one) satisfies
The logic is direct: you need failures (each probability ) followed by one success (probability ). The mean and variance are
Worked example. You roll a fair die until you get a six. Here . What is the probability the first six appears on the fourth roll?
On average you expect to wait rolls for your first six — which matches most people's intuition.
The memoryless property. The geometric distribution has a striking feature: it has no memory. If you have already rolled five times without a six, the probability that you need at least three more rolls is exactly the same as if you were starting fresh. Formally, . The die does not "owe" you a six. This is the discrete analogue of the exponential distribution's memorylessness.
A cumulative example. The probability of getting the first success within the first trials is . For the die, the probability of at least one six in four rolls is , just over half.
Real-World Applications
- Insurance and risk (Poisson): number of claims filed per month, number of accidents at an intersection per year — Bortkiewicz's horse-kicks are the ancestor of modern actuarial claim-count models.
- Telecommunications and computing (Poisson): packets arriving at a router, requests hitting a web server, radioactive decay counts on a Geiger counter.
- Quality control (Poisson): flaws per square metre of fabric, typos per page, contamination particles per litre.
- Reliability and testing (Geometric): number of test attempts until a defective unit is found; number of login attempts until success.
- Marketing and sales (Geometric): number of sales calls until the first "yes"; number of ad impressions until the first click.
- Games and genetics (Geometric): trials until a rare card is drawn, or the number of offspring until a particular trait appears.
Common Mistakes
Mistake 1: Confusing "counting events" with "counting trials." Students often reach for the wrong model. Why it's wrong: Poisson counts how many events occur in an interval; geometric counts how many trials until the first success. Correction: Ask "am I counting occurrences within a fixed window (Poisson) or waiting for the first hit (geometric)?" "How many emails in an hour?" is Poisson; "How many emails until the first spam?" is geometric.
Mistake 2: Forgetting to scale to the interval. If the rate is 5 per hour and you're asked about 20 minutes, you cannot use . Why it's wrong: the Poisson parameter is the expected count for the interval in question. Correction: scale it — for a 20-minute window.
Mistake 3: Using where you need in the geometric formula. Writing inverts the roles. Why it's wrong: you need failures before the success, and failures carry probability . Correction: the exponent always attaches to the failure probability , and the lone factor of is the final success.
Comparison and Connections
Both distributions are built from independent Bernoulli-type events, but they answer opposite questions. Poisson relates to the exponential distribution (the waiting time between Poisson events is exponential), while the geometric is the discrete cousin of the exponential. The geometric is also a special case of the negative binomial distribution (waiting for the first success rather than the -th).
| Feature | Poisson | Geometric |
|---|---|---|
| Question answered | How many events in an interval? | How many trials until first success? |
| Random variable | Count | Trial number |
| Parameter | Rate | Success probability |
| Pmf | ||
| Mean | ||
| Variance | ||
| Key property | Mean = variance | Memoryless |
| Related to | Binomial (limit), Exponential | Bernoulli, Negative binomial |
Practice Questions
Recall
State the pmf, mean, and variance of both the Poisson and geometric distributions.
Answer: Poisson: , mean variance . Geometric: , mean , variance .
Understanding
A bookshop sells on average copies of a rare title per week. Explain why Poisson is appropriate, and find the probability of selling zero copies in a week.
Guidance: Sales are rare, independent, at a constant rate over a fixed interval — Poisson fits. With , , about 5%.
Application
A basketball player makes each free throw with probability . What is the probability her first miss comes on the third attempt?
Answer: A "miss" is the event of interest, so its probability is and a "make" is . .
Analysis
A website gets visits per hour (Poisson). Compare the probability of exactly 12 visits in an hour with the probability of exactly 6 visits in a half hour. What do you notice about relative spread?
Guidance: For one hour, , . For a half hour, , . The half-hour case peaks higher because a smaller mean has a relatively larger standard deviation ( versus ) — smaller counts are proportionally more variable.
FAQ
Can the Poisson variable be larger than ? Yes. is only the average. Any non-negative integer is possible; values well above just have small probability. With you can still observe 8 events in an interval.
Why do the mean and variance of the Poisson both equal ? It falls out of the mathematics of the limit from the binomial. Practically, it gives you a quick sanity check: if real data have a variance much bigger than the mean, the events probably aren't independent (this is called overdispersion), and Poisson may be the wrong model.
Is there a version of the geometric that counts failures instead of trials? Yes. Some textbooks define = number of failures before the first success, giving for with mean . It's the same idea shifted by one; always check which convention a problem uses.
When should I use Poisson instead of the binomial? Use Poisson when is large and is small (a common rule of thumb is and , or simply when you know the average rate but not and separately). It's easier and an excellent approximation.
What does "memoryless" really mean for the geometric distribution? It means past failures give you no information about how much longer you'll wait. After ten failed attempts, the expected additional number of trials is still . This surprises people, but it follows directly because the trials are independent.
Quick Revision
- Poisson pmf: ; mean variance .
- Use Poisson for counts of rare, independent events in a fixed interval; scale with the interval length.
- Poisson is the large-, small- limit of the binomial with .
- Geometric pmf: ; mean , variance .
- Use geometric for trials until the first success; it is memoryless.
- gives "at least one success within trials."
- History: Bortkiewicz's Prussian horse-kick deaths (200 corps-years, ) are the classic Poisson fit.
Related Topics
Prerequisites
- Probability Distributions overview
- Binomial distribution and Bernoulli trials
- The exponential function
Related Topics
- Binomial and Bernoulli distributions
- Exponential distribution (continuous waiting times)
- Expected value and variance
Next Topics
- Negative binomial distribution
- Continuous distributions and the normal approximation
- Statistics and Probability branch