Fiveable

📊Honors Statistics Unit 4 Review

QR code for Honors Statistics practice questions

4.6 Poisson Distribution (Optional)

4.6 Poisson Distribution (Optional)

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📊Honors Statistics
Unit & Topic Study Guides
Pep mascot

Poisson Distribution

The Poisson distribution models how often rare events occur within a fixed interval of time or space. Think of counts like the number of car accidents at an intersection per week, typos per page, or radioactive decays per second. Where the binomial asks "how many successes in nn trials?", the Poisson asks "how many events in this interval?" with no fixed number of trials at all.

Pep mascot
more resources to help you study

Poisson Distribution for Fixed Intervals

The Poisson distribution applies when you're counting events that meet three conditions:

  • Events occur independently of each other (one accident doesn't make another more or less likely)
  • Events occur at a constant average rate throughout the interval
  • Events are rare relative to the size of the interval (you can't have infinitely many events piling up)

The single parameter λ\lambda (lambda) represents the average number of events per interval. It completely defines the distribution. If a hospital emergency room averages 4.2 patient arrivals per hour, then λ=4.2\lambda = 4.2 for a one-hour interval. For a two-hour window, you'd use λ=8.4\lambda = 8.4.

Unlike the binomial, there's no cap on the number of events. XX can technically take any non-negative integer value (0, 1, 2, 3, ...), though very large values become extremely unlikely.

Poisson distribution for fixed intervals, Probability distribution - wikidoc

Probability Calculations with Poisson

The probability mass function (PMF) gives the probability of observing exactly xx events:

P(X=x)=eλλxx!P(X = x) = \frac{e^{-\lambda}\lambda^x}{x!}

where:

  • xx = the specific count you're finding the probability for (0, 1, 2, ...)
  • λ\lambda = the average number of events in the interval
  • e2.71828e \approx 2.71828 (Euler's number)
  • x!x! = xx factorial

Step-by-step example: A bookstore averages 3 online orders per hour (λ=3\lambda = 3). What's the probability of exactly 5 orders in a given hour?

  1. Identify λ=3\lambda = 3 and x=5x = 5
  2. Plug into the PMF: P(X=5)=e3355!P(X = 5) = \frac{e^{-3} \cdot 3^5}{5!}
  3. Compute the pieces: e30.04979e^{-3} \approx 0.04979, 35=2433^5 = 243, 5!=1205! = 120
  4. Result: P(X=5)=0.04979×2431200.1008P(X = 5) = \frac{0.04979 \times 243}{120} \approx 0.1008

So there's about a 10.1% chance of exactly 5 orders in that hour.

For cumulative probabilities like P(X2)P(X \leq 2), sum the individual PMF values:

P(X2)=P(X=0)+P(X=1)+P(X=2)P(X \leq 2) = P(X=0) + P(X=1) + P(X=2)

In practice, your calculator's poissonpdf and poissoncdf functions handle this. Use poissonpdf(λ, x) for exact probabilities and poissoncdf(λ, x) for cumulative (at most xx) probabilities.

Poisson distribution for fixed intervals, Poisson distribution - Wikipedia

Poisson as a Binomial Approximation

The Poisson distribution can stand in for the binomial when direct binomial calculations become unwieldy. This works well when:

  1. The number of trials nn is large (typically n>20n > 20)
  2. The probability of success pp is small (typically p<0.05p < 0.05; some texts allow p<0.1p < 0.1)
  3. You set λ=n×p\lambda = n \times p

Under these conditions, Binomial(n,p)Poisson(λ=np)\text{Binomial}(n, p) \approx \text{Poisson}(\lambda = np).

Why this works: When nn is large and pp is tiny, most trials result in failure, and the few successes are scattered independently across the trials. That pattern matches exactly what the Poisson models.

Example: Suppose 1 in 500 manufactured chips is defective (p=0.002p = 0.002), and you inspect a batch of 1000 chips (n=1000n = 1000). Finding the exact binomial probability of 3 or fewer defects requires heavy computation. Instead, use λ=1000×0.002=2\lambda = 1000 \times 0.002 = 2 and calculate P(X3)P(X \leq 3) with the Poisson PMF. The approximation will be very close to the true binomial answer.

Properties of the Poisson Distribution

  • Mean and variance are both equal to λ\lambda. This is a distinctive feature. If you see count data where the sample mean and sample variance are roughly equal, the Poisson may be a good model.
  • The standard deviation is λ\sqrt{\lambda}.
  • The distribution is right-skewed for small λ\lambda and becomes more symmetric as λ\lambda increases.
  • It's a discrete distribution since it models whole-number counts.
  • The Poisson is related to the exponential distribution, which models the time between consecutive Poisson events. If events arrive at rate λ\lambda per hour, the waiting time between events follows an exponential distribution with the same parameter.

Note on the "memoryless property": The memoryless property actually belongs to the exponential distribution (the time between events), not to the Poisson distribution itself. The Poisson distribution does, however, have independent increments, meaning the number of events in non-overlapping intervals are independent of each other.