Poisson Distribution
📊 Poisson Distribution
The Poisson distribution models the number of times an event occurs in a fixed interval (time, space, area, volume, etc.) when events happen:
-
independently
-
at a constant average rate
-
rarely relative to the interval size
When do we use Poisson?
Use it when counting events like:
-
📞 number of calls arriving at a call center per minute
-
🚗 number of cars passing a signal in 1 minute
-
🧬 mutations in a DNA segment
-
🌧 number of raindrops hitting a sensor per second
-
🏥 number of patients arriving in an hour
Probability formula
If
then
Parameters
| Symbol | Meaning |
|---|---|
| number of events | |
| average events per interval (rate) | |
| Euler's constant ≈ 2.718 |
Key properties
Mean and variance
👉 Mean equals variance — a special Poisson feature.
Standard deviation
Example 1 — Phone calls
A call center receives 4 calls per minute on average.
Probability of exactly 2 calls in a minute:
Since
✅ About 14.6% chance
Example 2 — Rare defects
A factory produces 0.5 defects per meter of wire.
Probability of zero defects in one meter:
✅ About 60.6% chance
Example 3 — Cars at a signal
Average 6 cars per minute
Probability of at most 1 car:
✅ Very unlikely (≈1.7%)
Intuition: Why Poisson works
Imagine dividing time into tiny slots:
-
probability of event in each slot is very small
-
events independent
This is like a limit of Binomial distribution:
Then:
Shape of Poisson distribution
-
Small λ → skewed right
-
Large λ → becomes symmetric
-
Very large λ → approximates Normal distribution
Rule of thumb:
Additivity property (very useful)
If
independent, then
Example:
-
morning calls: λ=3
-
afternoon calls: λ=5
Total day:
Connection to waiting times
Poisson counts events.
The time between events follows:
This link is fundamental in:
-
queueing theory
-
reliability engineering
-
survival analysis
Real-life interpretation of λ
Example:
-
2 emails/hour
-
in 3 hours:
Small Python example
✔️ Summary
Poisson distribution models:
✅ counts of events
✅ independent occurrences
✅ constant average rate
✅ rare events in small intervals
Formula:
Mean = Variance = λ
Comments
Post a Comment