Statistics: Comprehensive Notes on the Poisson Distribution
Overview of the Poisson Distribution
The Poisson distribution, along with the Binomial distribution, is one of two specifically named probability distributions discussed in this course.
It is used to describe specific situations involving the counting of events over a set interval.
Etymology and History:
The word "Poisson" means "fish" in French.
The distribution is named after the French mathematician Simeon Poisson, who first described it.
Historical Application: One of the first famous applications of this distribution was modeling the number of times soldiers were kicked by donkeys during World War I.
Defining Characteristics of a Poisson Process
Definition of Successes: A Poisson process involves counting the number of successes within a specified time or space interval.
Countability: Unlike the Binomial distribution, which has a fixed number of trials (), the Poisson distribution has no defined maximum number of successes. The number of successes can range from to . This is sometimes referred to as being uncountable in terms of the upper limit.
Independence: The number of successes are counted in non-overlapping intervals. Therefore, occurrences in one interval are independent of occurrences in another.
Uniformity across Intervals: The probability of success in any given interval is the same for all intervals of equal size.
Proportionality: The probability of success is proportional to the size of the interval (e.g., doubling the time interval doubles the expected number of events).
Real-World Examples
Traffic Accidents: The number of accidents occurring at a specific intersection or traffic light within a set time frame (e.g., between and ).
Digital Applications: The number of customers using a new banking application within a specific period.
Communications: The number of spam emails received by a user in a given month ().
Manufacturing Defects: The number of defects found in a specified length of material (e.g., a roll of fabric).
Biology/Microbiology: The number of bacteria present in a specific culture or well-defined space, such as a Petri dish.
Mathematical Components and Formulas
The Random Variable: The Poisson random variable is defined as .
Probability Mass Function (PMF): The probability of exactly successes over a given interval is calculated as:
: The specific number of successes ().
(mu): The mean number of successes over the specified interval. This is typically given or calculated beforehand.
: A mathematical constant approximately equal to . It is the base of the natural logarithmic scale (often denoted as Ln on calculators, from the French logarithme naturel).
(Factorial): Calculated as .
Measures of Central Tendency and Dispersion
In a Poisson distribution, the mean and the variance are numerically identical.
Mean ():
Variance ():
Standard Deviation (): To find the standard deviation, take the square root of the variance.
Calculating Poisson Probabilities in Excel
Excel uses the function POISSON.DIST to calculate probabilities. The syntax is POISSON.DIST(x, mean, cumulative).
Exactly successes:
Excel formula:
POISSON.DIST(x, mu, 0)(0 or FALSE indicates non-cumulative).
No more than successes:
Excel formula:
POISSON.DIST(x, mu, 1)(1 or TRUE indicates cumulative).
At least successes:
This requires the complement rule: 1 - P(X < x), which for discrete values is .
Excel formula:
1 - POISSON.DIST(x - 1, mu, 1).
Case Study: Craft Brewery Openings
Scenario Data
Observed Rate: craft breweries open every day in the USA.
Interval required for questions: One week ().
Adjusting the Mean ()
Because the question asks for weekly probabilities but provides daily data, the mean must be adjusted to match the time interval:
Example Calculations
Probability that no more than 10 breweries open in a week ():
Formula:
POISSON.DIST(10, 10.5, 1)Result: Approximately (or ).
Probability that exactly 10 breweries open in a week ():
Formula:
POISSON.DIST(10, 10.5, 0)Result: Approximately (or ).
Probability that at least 10 breweries open in a week ():
Formula:
1 - POISSON.DIST(9, 10.5, 1)Context: Since is included in the "at least" range, the complement must include only values below (i.e., ).
Result: Approximately (or ).
Statistical Parameters for the week:
Mean:
Variance:
Standard Deviation:
Questions & Discussion
Question: How do we handle changes in units of time in Poisson problems?
Response: Always look at the unit of time in the final question. If you are given a daily rate but asked for a weekly probability, you must scale the mean () accordingly by multiplying the daily rate by .
Anecdote: The instructor mentioned that the word "breweries" is difficult to pronounce, comparing it to the fictional show "The Rural Juror" from the television series 30 Rock.
Exam Tip: The instructor emphasized that keeping these Excel formulas handy will be very helpful for the next exam.