Modeling Arrival Rates

The Poisson Distribution is used for events that happen randomly in time or space, but at a constant average rate (λ\lambda). It is the discrete counterpart to the continuous Exponential distribution.

Intuition
The Distribution of 'Rare' Events

Poisson is perfect for things that happen independently and where the chance of two events happening at the exact same millisecond is effectively zero:

  • The number of meteors seen in an hour (λ=5\lambda = 5).
  • The number of typos on a page of a book (λ=0.5\lambda = 0.5).
  • The number of customer arrivals in a night (λ=100\lambda = 100).
P(X=k)=λkeλk!P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}

Parameters

  • λ\lambda (Lambda): The average number of events in the given time or space interval.
  • kk: The specific number of events we want to find the probability for (k{0,1,2,}k \in \{0, 1, 2, \dots\}).

Core Properties

The Poisson distribution has a very unique and elegant property: its mean and variance are identical.

  • Mean (E[X]E[X]): λ\lambda
  • Variance (Var(X)Var(X)): λ\lambda

Poisson Distribution

λ (lambda) is the 'average' rate. If λ=5, you'll most often see 4 or 5 events, but the distribution allows for the rare chance of seeing 10+.

-0.0240.0570.1370.2170.298-0.141.3162.7724.2285.6847.14Avg Rate λ = 2: (0, 0.135)Avg Rate λ = 2: (1, 0.271)Avg Rate λ = 2: (2, 0.271)Avg Rate λ = 2: (3, 0.18)Avg Rate λ = 2: (4, 0.09)Avg Rate λ = 2: (5, 0.036)Avg Rate λ = 2: (6, 0.012)Avg Rate λ = 2: (7, 0.003)Avg Rate λ = 5: (0, 0.007)Avg Rate λ = 5: (1, 0.034)Avg Rate λ = 5: (2, 0.084)Avg Rate λ = 5: (3, 0.14)Avg Rate λ = 5: (4, 0.175)Avg Rate λ = 5: (5, 0.175)Avg Rate λ = 5: (6, 0.146)Avg Rate λ = 5: (7, 0.104)xy
Avg Rate λ = 2Avg Rate λ = 5

Relationship to Binomial

The Poisson distribution can be derived as a limit of the Binomial distribution. If you have a Binomial experiment where the number of trials nn is very large (nn \to \infty) and the probability of success pp is very small (p0p \to 0), but the expected number of successes npnp remains constant (let's call it λ\lambda), the Binomial distribution converges to the Poisson distribution. This is often called the Law of Rare Events.

Intuition
Continuous Space, Discrete Events

Why does the Poisson distribution lack a distinct 'n' trials parameter? Because it models events happening in continuous time or space. You can divide an hour into infinitely many microscopic milliseconds. In each millisecond, the chance of an event happening is near zero, but across the whole hour, they add up to an expected rate λ\lambda. This is exactly why it represents the infinite limit of the Binomial distribution!

Advanced Practice

Example 1: Server Requests

medium

A web server receives an average of 4 requests per minute (λ=4\lambda = 4). What is the probability that it receives exactly 6 requests in a given minute?

Example 2: No Errors Allowed

hard

A fiber optic cable experiences an average of 1.5 transmission errors per kilometer (λ=1.5\lambda = 1.5). What is the probability that a 2-kilometer segment of this cable transmits data completely without error?