Probability
2. 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).

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.

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.