Poisson Distribution

Author

John Robin Inston

Published

August 25, 2026

1 Introduction

The Poisson distribution is a discrete probability distribution that models the number of events occurring in a fixed interval of time or space, when events occur independently at a constant average rate.

A random variable \(X\) follows a Poisson distribution with rate parameter \(\lambda > 0\) if

\[ X \sim \text{Poisson}(\lambda) \quad \text{or} \quad X \sim \mathcal{P}(\lambda). \]

2 Probability Mass Function

The probability mass function is

\[ \mathbb{P}(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}, \quad k \in \{0, 1, 2, \ldots\}. \]

Interpretation: The Poisson distribution arises as the limit of binomial distributions: when the number of trials \(n \to \infty\) and success probability \(p \to 0\) such that \(np = \lambda\) remains constant, \(\text{Binomial}(n,p) \xrightarrow{d} \text{Poisson}(\lambda)\).

3 Key Properties

The expectation and variance of a Poisson random variable \(X \sim \text{Poisson}(\lambda)\) are given by

\[ \mathbb{E}[X] = \lambda \quad \& \quad \operatorname{Var}(X) = \lambda. \]

Remarkable property: The mean and variance are equal, both equal to the rate parameter \(\lambda\).

Proof. We have that

\[ \mathbb{E}[X] = \sum_{k=0}^\infty k \frac{\lambda^k e^{-\lambda}}{k!} = \sum_{k=1}^\infty \frac{\lambda^k e^{-\lambda}}{(k-1)!} = \lambda e^{-\lambda} \sum_{j=0}^\infty \frac{\lambda^j}{j!} = \lambda. \]

Similarly, \(\mathbb{E}[X(X-1)] = \lambda^2\), so \(\operatorname{Var}(X) = \lambda^2 + \lambda - \lambda^2 = \lambda\).

The probability generating function (PGF) of a Poisson random variable \(X \sim \text{Poisson}(\lambda)\) is given by

\[ G_X(s) = e^{\lambda(s-1)}. \]

The moment generating function (MGF) of a Poisson random variable \(X \sim \text{Poisson}(\lambda)\) is given by

\[ M_X(t) = e^{\lambda(e^t - 1)}. \]

The characteristic function of a Poisson random variable \(X \sim \text{Poisson}(\lambda)\) is given by

\[ \varphi_X(t) = e^{\lambda(e^{it} - 1)} \]

4 Sums of Independent Poisson RVs

If \(X \sim \text{Poisson}(\lambda_1)\) and \(Y \sim \text{Poisson}(\lambda_2)\) are independent, then

\[ X + Y \sim \text{Poisson}(\lambda_1 + \lambda_2). \]

Proof. The MGF product gives \(e^{\lambda_1(e^t-1)} \cdot e^{\lambda_2(e^t-1)} = e^{(\lambda_1+\lambda_2)(e^t-1)}\).

5 Relationship to Other Distributions

  • From Binomial: Limit of \(\text{Binomial}(n, p)\) as \(n \to \infty\), \(p \to 0\) with \(np = \lambda\).
  • To Normal: For large \(\lambda\), \(\frac{X - \lambda}{\sqrt{\lambda}} \xrightarrow{d} \mathcal{N}(0,1)\) (Central Limit Theorem).
  • Inter-arrival times: If events follow a Poisson process with rate \(\lambda\), the time between consecutive events is \(\text{Exponential}(\lambda)\).

6 Examples and Applications

  • Number of emails received per hour with average rate 15 emails/hour: \(X \sim \text{Poisson}(15)\).
  • Number of car accidents at an intersection in a day with average 3 accidents/day: \(X \sim \text{Poisson}(3)\).
  • Number of mutations in a DNA sequence of fixed length.
  • Modeling rare events in reliability and quality control.

7 Backlinks

Back to top