Nate's Notes

Collection of notes for various classes I've taken.

Buy Me A Coffee

September 17

Poisson r.v.

The Poisson random variable, denoted by $X$, models the number of occurrences of an event within a fixed interval of time or space, given that the events occur independently and at a constant average rate. The Poisson distribution is often used for rare events.

The Poisson distribution is the limiting case of the Binomial distribution as $n \to \infty$ and $p \to 0$, such that $\lambda = np$ (where $\lambda$ is the average rate of occurrence). The probability mass function (PMF) of a Poisson random variable is:

\[P(X = x) = \frac{\lambda^x e^{-\lambda}}{x!}, \quad x = 0, 1, 2, \dots\] \[E(X) = \lambda\] \[Var(X) = \lambda\]

Where $\lambda$ is the rate of occurrence (the expected number of events in the interval), and $e$ is Euler’s number (approximately 2.71828).

Example: Website Server Requests

Scenario: A web server receives an average of 3 requests per minute. We want to model the number of requests received in a minute using a Poisson distribution.