Statistics

Geometric and Poisson Distributions

Last updated: March 2026 · Advanced
Before you start

You should be comfortable with:

Real-world applications
💊
Nursing

Medication dosages, IV drip rates, vital monitoring

💰
Retail & Finance

Discounts, tax, tips, profit margins

The binomial distribution counts successes in a fixed number of trials. But what if you want to know how many trials until the first success? Or how many events occur in a fixed time period? These questions require two other discrete distributions: the geometric distribution and the Poisson distribution. Together with the binomial, they form the essential toolkit for modeling count data in statistics.

The Geometric Distribution

The geometric distribution models the number of trials until the first success. Instead of fixing the number of trials in advance (as binomial does), you keep going until success occurs and ask: how long did it take?

Conditions

The geometric distribution applies when:

  • Each trial has exactly two outcomes (success or failure)
  • The probability of success pp is the same on every trial
  • Trials are independent
  • You count the trial number of the first success (there is no fixed nn)

Formula

The probability that the first success occurs on trial kk:

P(X=k)=(1p)k1pP(X = k) = (1-p)^{k-1} \cdot p

The logic: you need k1k - 1 failures in a row (each with probability 1p1 - p), followed by one success (probability pp).

Mean (expected number of trials until first success):

μ=1p\mu = \frac{1}{p}

Standard deviation:

σ=1pp\sigma = \frac{\sqrt{1-p}}{p}

Example 1: Free Throw Shooter

A basketball player makes free throws with probability p=0.70p = 0.70. What is the probability that the first successful free throw comes on the 3rd attempt?

This means the player misses the first two shots, then makes the third:

P(X=3)=(10.70)31×0.70=(0.30)2×0.70=0.09×0.70=0.063P(X = 3) = (1 - 0.70)^{3-1} \times 0.70 = (0.30)^2 \times 0.70 = 0.09 \times 0.70 = 0.063

Answer: There is a 6.3% probability that the first make comes on the 3rd attempt. This is relatively unlikely because a 70% shooter usually makes it on the first or second try.

Example 2: Expected Number of Trials

For the same 70% free throw shooter, how many attempts do we expect before the first make?

μ=1p=10.701.43\mu = \frac{1}{p} = \frac{1}{0.70} \approx 1.43

Answer: On average, the first successful free throw comes in about 1.4 attempts. This makes intuitive sense — a 70% shooter usually makes the first one.

Geometric Distribution (p = 0.70)

00.20.40.60.7000.2100.0630.0190.00612345Trial of first success (k)P(X = k)

Notice how the geometric distribution is always right-skewed. The most likely outcome is success on the very first trial, and the probabilities decrease by a factor of (1p)(1 - p) with each additional trial.

Example 3: Quality Control — Defect Detection

A quality inspector examines items on an assembly line. The defect rate is p=0.02p = 0.02 (2% of items are defective). What is the probability that the first defective item is found within the first 10 inspections?

Rather than calculating P(X=1)+P(X=2)++P(X=10)P(X = 1) + P(X = 2) + \cdots + P(X = 10), use the complement:

P(X10)=1P(X>10)=1(1p)10=1(0.98)10P(X \leq 10) = 1 - P(X > 10) = 1 - (1 - p)^{10} = 1 - (0.98)^{10}

Computing (0.98)10(0.98)^{10}: first find (0.98)5=0.9039(0.98)^5 = 0.9039, then square it: (0.9039)2=0.8170(0.9039)^2 = 0.8170.

P(X10)=10.8170=0.1830P(X \leq 10) = 1 - 0.8170 = 0.1830

Answer: There is about an 18.3% chance of finding at least one defective item in the first 10 inspections. Even though each item has a 2% defect rate, looking at 10 items gives a nearly one-in-five chance of catching a defect.

Cumulative Geometric Probability

The general formula for the cumulative probability (first success by trial kk):

P(Xk)=1(1p)kP(X \leq k) = 1 - (1-p)^k

This shortcut avoids summing individual probabilities. It works because P(X>k)=(1p)kP(X > k) = (1-p)^k — the probability of kk consecutive failures.

The Poisson Distribution

The Poisson distribution models the count of events in a fixed interval of time or space, when events occur randomly and independently at a known average rate. It is named after French mathematician Simeon Denis Poisson.

Conditions

The Poisson distribution applies when:

  • Events occur independently (one event does not affect the probability of the next)
  • The average rate λ\lambda (lambda) is constant across the interval
  • Two events cannot occur at the exact same instant
  • You are counting discrete events in a continuous interval

Formula

The probability of observing exactly kk events:

P(X=k)=eλλkk!P(X = k) = \frac{e^{-\lambda} \lambda^k}{k!}

Where λ\lambda is the average number of events per interval, e2.71828e \approx 2.71828, and k!=k×(k1)××1k! = k \times (k-1) \times \cdots \times 1 is the factorial.

Mean: μ=λ\mu = \lambda

Standard deviation: σ=λ\sigma = \sqrt{\lambda}

Notice that the Poisson distribution has a single parameter λ\lambda that determines both the center and the spread.

Example 4: Hospital Emergency Room

An emergency room receives an average of λ=4\lambda = 4 patients per hour. What is the probability of receiving exactly 6 patients in a given hour?

P(X=6)=e4×466!P(X = 6) = \frac{e^{-4} \times 4^6}{6!}

Computing each piece:

  • e4=0.01832e^{-4} = 0.01832
  • 46=4,0964^6 = 4{,}096
  • 6!=7206! = 720

P(X=6)=0.01832×4096720=75.047200.1042P(X = 6) = \frac{0.01832 \times 4096}{720} = \frac{75.04}{720} \approx 0.1042

Answer: There is about a 10.4% probability of exactly 6 patients arriving in one hour when the average rate is 4 per hour.

Example 5: Typos in a Document

A document averages λ=2\lambda = 2 typos per page. What is the probability of a page having zero typos?

P(X=0)=e2×200!=0.1353×11=0.1353P(X = 0) = \frac{e^{-2} \times 2^0}{0!} = \frac{0.1353 \times 1}{1} = 0.1353

Answer: About 13.5% of pages will have no typos at all. So roughly 1 in 7 or 8 pages will be error-free.

Poisson Distribution (λ = 4)

00.100.200.1950.1950.1040123456789101112Number of events (k)P(X = k)λ = 4 (mode at 3 and 4)

The Poisson distribution is slightly right-skewed for small λ\lambda and becomes more symmetric as λ\lambda increases. When λ\lambda is an integer, the mode occurs at both λ\lambda and λ1\lambda - 1 (as shown above with λ=4\lambda = 4).

Comparing the Three Discrete Distributions

Understanding when to use each distribution is one of the most important skills in applied statistics. Here is a side-by-side comparison:

FeatureBinomialGeometricPoisson
ModelsNumber of successes in nn trialsTrial number of first successNumber of events in a fixed interval
What is fixednn (number of trials)pp (probability of success)λ\lambda (average rate)
Range of X0,1,2,,n0, 1, 2, \ldots, n1,2,3,1, 2, 3, \ldots0,1,2,3,0, 1, 2, 3, \ldots
Meannpnp1p\displaystyle\frac{1}{p}λ\lambda
Standard Deviationnp(1p)\sqrt{np(1-p)}1pp\displaystyle\frac{\sqrt{1-p}}{p}λ\sqrt{\lambda}
Key question”How many successes?""How long until success?""How many in this interval?”

When to Use Each Distribution

Choosing the right distribution comes down to identifying what you are counting and what is fixed:

Use the binomial distribution when:

  • You have a fixed number of trials nn
  • Each trial has two outcomes (success/failure)
  • You are counting the total number of successes

Use the geometric distribution when:

  • Trials are independent with constant probability pp
  • There is no fixed number of trials
  • You are counting the number of trials until the first success

Use the Poisson distribution when:

  • Events occur randomly in a continuous interval (time, area, volume)
  • The average rate λ\lambda is known and constant
  • You are counting the number of events in a fixed interval

A helpful test: ask yourself, “Is there a fixed number of trials?” If yes, use binomial. If no, ask “Am I waiting for one event, or counting events in an interval?” Waiting for one event points to geometric; counting events in an interval points to Poisson.

Real-World Application: Nursing — Patient Call Rates

A nursing station receives an average of λ=3\lambda = 3 call-light requests per 30-minute period during the evening shift. The charge nurse needs to plan staffing. What is the probability of receiving 5 or more calls in a 30-minute window?

This is a Poisson problem: we are counting events (call-light requests) in a fixed time interval (30 minutes), with a known average rate.

Step 1: Find P(X5)=1P(X4)P(X \geq 5) = 1 - P(X \leq 4).

Step 2: Calculate P(X4)=P(X=0)+P(X=1)+P(X=2)+P(X=3)+P(X=4)P(X \leq 4) = P(X=0) + P(X=1) + P(X=2) + P(X=3) + P(X=4).

Using λ=3\lambda = 3 and e3=0.0498e^{-3} = 0.0498:

P(X=0)=e3×300!=0.0498P(X=0) = \frac{e^{-3} \times 3^0}{0!} = 0.0498

P(X=1)=e3×311!=0.1494P(X=1) = \frac{e^{-3} \times 3^1}{1!} = 0.1494

P(X=2)=e3×322!=0.0498×92=0.2241P(X=2) = \frac{e^{-3} \times 3^2}{2!} = \frac{0.0498 \times 9}{2} = 0.2241

P(X=3)=e3×333!=0.0498×276=0.2241P(X=3) = \frac{e^{-3} \times 3^3}{3!} = \frac{0.0498 \times 27}{6} = 0.2241

P(X=4)=e3×344!=0.0498×8124=0.1681P(X=4) = \frac{e^{-3} \times 3^4}{4!} = \frac{0.0498 \times 81}{24} = 0.1681

Step 3: Sum and subtract.

P(X4)=0.0498+0.1494+0.2241+0.2241+0.1681=0.8155P(X \leq 4) = 0.0498 + 0.1494 + 0.2241 + 0.2241 + 0.1681 = 0.8155

P(X5)=10.8155=0.1845P(X \geq 5) = 1 - 0.8155 = 0.1845

Answer: There is about an 18.5% probability of receiving 5 or more call-light requests in any given 30-minute period. This means that roughly one out of every five or six half-hour windows will have a higher-than-expected volume.

Staffing implication: If the nursing station can comfortably handle up to 4 calls per 30 minutes with current staffing, then about 18.5% of the time the staff will be stretched beyond capacity. The charge nurse might consider adding a float nurse during peak evening hours when the consequences of delayed response (patient falls, missed medications) are most serious.

Practice Problems

Test your understanding with these problems. Click to reveal each answer.

Problem 1 (Geometric): A salesperson has a 25% chance of closing a sale on each call (p=0.25p = 0.25). What is the probability that the first sale is closed on the 4th call?

P(X=4)=(10.25)41×0.25=(0.75)3×0.25P(X = 4) = (1 - 0.25)^{4-1} \times 0.25 = (0.75)^3 \times 0.25

=0.4219×0.25=0.1055= 0.4219 \times 0.25 = 0.1055

Answer: There is about a 10.6% chance that the first sale comes on the 4th call.

Problem 2 (Geometric): For the same salesperson with p=0.25p = 0.25, how many calls should they expect to make before closing the first sale?

μ=1p=10.25=4\mu = \frac{1}{p} = \frac{1}{0.25} = 4

Answer: On average, the salesperson should expect to make 4 calls before closing the first sale. The geometric mean of 1/p1/p gives the expected waiting time.

Problem 3 (Poisson): A call center receives an average of 5 calls per minute (λ=5\lambda = 5). What is the probability of receiving exactly 3 calls in a given minute?

P(X=3)=e5×533!=0.00674×1256=0.84256=0.1404P(X = 3) = \frac{e^{-5} \times 5^3}{3!} = \frac{0.00674 \times 125}{6} = \frac{0.8425}{6} = 0.1404

Answer: There is about a 14.0% probability of receiving exactly 3 calls in a given minute.

Problem 4 (Poisson): A document averages 2 typos per page (λ=2\lambda = 2). What is the probability that a randomly selected page has zero typos?

P(X=0)=e2×200!=0.1353×11=0.1353P(X = 0) = \frac{e^{-2} \times 2^0}{0!} = \frac{0.1353 \times 1}{1} = 0.1353

Answer: About 13.5% of pages will have no typos. So if you check 100 pages, expect about 13 or 14 to be error-free.

Problem 5 (Geometric): A machine produces defective parts at a rate of 10% (p=0.10p = 0.10). What is the probability that at least one defective part is found in the first 5 parts inspected?

Using the cumulative geometric formula:

P(X5)=1(1p)5=1(0.90)5=10.5905=0.4095P(X \leq 5) = 1 - (1-p)^5 = 1 - (0.90)^5 = 1 - 0.5905 = 0.4095

Answer: There is about a 41.0% probability of finding at least one defective part within the first 5 inspections. Even though each part has only a 10% defect rate, checking 5 items gives you a roughly two-in-five chance of catching one.

Key Takeaways

  • The geometric distribution models the number of trials until the first success: P(X=k)=(1p)k1pP(X = k) = (1-p)^{k-1} \cdot p, with mean μ=1/p\mu = 1/p
  • The Poisson distribution models the count of events in a fixed interval: P(X=k)=eλλkk!P(X = k) = \frac{e^{-\lambda}\lambda^k}{k!}, with mean μ=λ\mu = \lambda and standard deviation σ=λ\sigma = \sqrt{\lambda}
  • Geometric answers “How many trials until the first success?” while Poisson answers “How many events in this time period?”
  • The binomial requires a fixed number of trials; the geometric does not fix nn; the Poisson does not involve trials at all
  • For cumulative geometric probabilities, use the shortcut P(Xk)=1(1p)kP(X \leq k) = 1 - (1-p)^k
  • For cumulative Poisson probabilities, sum individual terms: P(Xk)=i=0keλλii!P(X \leq k) = \sum_{i=0}^{k} \frac{e^{-\lambda}\lambda^i}{i!}
  • In healthcare and staffing, the Poisson distribution helps predict demand (patient arrivals, call volumes) for resource planning

Return to Statistics for more topics in this section.

Last updated: March 29, 2026