Probability
Discrete Distributions
Poisson Distribution

Poisson Distribution

⏱️

The Poisson distribution is a discrete probability distribution that expresses the probability of a given number of events occurring in a fixed interval of time or space.

It is used when events happen independently of each other and at a constant average rate.

Core Concepts

If a random variable XX follows a Poisson distribution, we write:

XPoisson(λ)X \sim \text{Poisson}(\lambda)

Where:

  • λ\lambda (lambda) is the average number of events in the given interval (the "rate" parameter).

The Poisson Limit Theorem (The "Why")

🧬

Why does the Poisson formula have ee and factorials? It's because the Poisson is actually the infinite limit of the Binomial Distribution.

Imagine you divide an hour into nn tiny sub-intervals. If nn is very large (say, n=10,000n = 10,000), the probability pp of a call arriving in any specific millisecond is nearly zero.

As nn \to \infty and p0p \to 0 such that the average rate np=λnp = \lambda remains constant, the Binomial PMF mathematically transforms into the Poisson PMF:

limn(nk)pk(1p)nk=λkeλk!\lim_{n \to \infty} \binom{n}{k} p^k (1-p)^{n-k} = \frac{\lambda^k e^{-\lambda}}{k!}

This is why we call it the "Law of Rare Events." It models scenarios where you have many opportunities for something to happen, but the individual probability of each is tiny.

Probability Mass Function (PMF)

The probability of observing exactly kk events in the interval is given by:

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

Where:

  • ee is Euler's number (e2.71828e \approx 2.71828).
  • k!k! is the factorial of kk.

Assumptions of a Poisson Process

For a real-world process to be truly modeled by Poisson, it must meet these criteria:

  1. kk can be any positive integer (0,1,2,3,0, 1, 2, 3, \dots) theoretically up to infinity.
  2. The occurrence of one event does not affect the probability of a second event (Independence).
  3. The average rate (λ\lambda) is constant over the interval.
  4. Two events cannot occur at the exact same instant in time.

Key Metrics

🪄

Mathematical Magic: A fascinating property of the Poisson distribution is that its expected value and its variance are exactly the same number!

  • Expected Value (Mean): E[X]=λE[X] = \lambda
  • Variance: Var(X)=λ\text{Var}(X) = \lambda

Real-World Examples

  1. Network Traffic: The number of requests arriving at a web server per minute.
  2. Customer Service: The number of calls received by a call center per hour.
  3. Astronomy: The number of meteorites hitting a specific region of the atmosphere in a year.

Related Distributions

  • Binomial Distribution: The "parent" of the Poisson for finite nn.
  • Exponential Distribution: If events occur according to a Poisson process with rate λ\lambda, the waiting time between events follows an Exponential distribution.
  • Normal Distribution: When λ\lambda is large (usually >20> 20), the Poisson can be approximated by a Normal distribution.

Interactive Visualization

Use the slider below to adjust the average rate (λ\lambda). Notice how the distribution is heavily right-skewed for very low values of λ\lambda (like 1 or 2). However, as λ\lambda grows larger, the distribution spreads out and becomes increasingly symmetrical, once again approximating the shape of a Normal distribution.

Poisson Distribution

A count model for events in a fixed interval, with average rate λ.

Average Rate (λ)
5

Test Your Knowledge

Example: Poisson Call Center

A tech support center receives an average of 3 calls per hour (λ=3\lambda = 3). What is the probability they receive exactly 0 calls in the next hour?

View Step-by-Step Solution

Poisson formula: P(X=k)=λkeλk!P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}

  • λ=3\lambda = 3
  • k=0k = 0

P(X=0)=30e30!=1×0.04981=0.0498P(X = 0) = \frac{3^0 e^{-3}}{0!} = \frac{1 \times 0.0498}{1} = 0.0498

There is a 4.98% chance the call center will be completely silent for the next hour.