2.5.1 Poisson Random Variable and its Distribution¶
Introduction¶
- The Poisson random variable is a discrete variable used to model the number of events occurring within a fixed interval of time or space.
- It is named after the French mathematician Siméon Denis Poisson.
Characteristics¶
- Discreteness:
- Like Bernoulli and binomial distributions, the Poisson is a discrete distribution but usually over an infinite range (0, 1, 2, ...).
- Single Parameter (λ):
- Unlike the binomial distribution, which is described by two parameters (n and p), the Poisson distribution is characterized by a single parameter λ, which represents the average rate of events per interval.
- Probability Mass Function (PMF):
where: - k is the number of occurrences, - e is the base of the natural logarithm, - λ is the average number of events in the given interval.
Key Properties¶
- Mean and Variance:
- For a Poisson distribution, the mean and variance are both equal to \( \lambda \).
- Thus, the standard deviation is
.
- No Memory:
- The Poisson process has the property that the probability of a given number of events occurring in any interval is independent of any occurrences outside this interval.
Examples¶
- Customer Arrivals: Counting the number of customers arriving at a store in a specific time period.
- Call Volume: Number of calls received at a call center within a certain timeframe.
- Manufacturing: Number of defects found in a specified length of material.
Practical Uses¶
- Event Occurrences:
- Well-suited for modeling random events that happen independently of each other within a given period.
- Various Fields:
- Used across various domains like:
- Telecommunication (for call arrivals),
- Astronomy (for photon arrivals from a light source),
- Traffic engineering (for vehicle arrivals at a stop).
Additional Insights¶
- The Poisson distribution can often serve as an approximation to the binomial distribution when:
- n (number of trials) is large,
- p (probability of success) is small,
- np (mean) is moderate.
- It simplifies dealing with events occurring over time or space without having to track the exact intervals between events, unlike more complex models that require detailed interval data.