Poisson Distribution Calculator
Calculator
Parameters
Distribution Chart
Learn More
Poisson Distribution: Definition, Formula, and Examples
Poisson Distribution
Definition: The Poisson distribution is a discrete probability distribution that expresses the probability of a given number of events occurring in a fixed interval of time or space if these events occur with a known constant mean rate and independently of the time since the last event. For example, it can model the number of phone calls received by a call center in an hour or the number of cars passing through a toll booth in a day.
Formula:
Where:
- is the number of occurrences (usually an integer)
- is the average number of events in the interval
- is Euler's number
Examples:
Suppose a call center receives an average of 5 calls per hour. Let's calculate various probabilities:
- Probability of receiving exactly 3 calls in an hour:
- Probability of receiving at most 2 calls in an hour:
- Probability of receiving more than 6 calls in an hour:
Properties of Poisson Distribution
- Mean:
- Variance:
- Standard Deviation:
- Poisson as an approximation of the Binomial distribution: If the number of trials is large, the probability of success is small, and the product is moderate, the Binomial distribution can be approximated by the Poisson distribution with .
How to calculate Poisson distribution in R?
R
# Set parameter
lambda <- 5 # average rate
# Calculate P(X = 3)
prob_equal_3 <- dpois(3, lambda)
print(paste("P(X = 3):", prob_equal_3))
# Calculate P(X <= 2)
prob_less_equal_2 <- ppois(2, lambda)
print(paste("P(X <= 2):", prob_less_equal_2))
# Calculate P(X > 6)
prob_greater_6 <- 1 - ppois(6, lambda)
print(paste("P(X > 6):", prob_greater_6))
# Calculate mean and variance
mean <- lambda
variance <- lambda
print(paste("Mean:", mean))
print(paste("Variance:", variance))
How to calculate Poisson distribution in Python?
Python
import scipy.stats as stats
# Set parameter
lambda_ = 5 # average rate
# Calculate P(X = 3)
prob_equal_3 = stats.poisson.pmf(3, lambda_)
print(f"P(X = 3): {prob_equal_3:.4f}")
# Calculate P(X <= 2)
prob_less_equal_2 = stats.poisson.cdf(2, lambda_)
print(f"P(X <= 2): {prob_less_equal_2:.4f}")
# Calculate P(X > 6)
prob_greater_6 = 1 - stats.poisson.cdf(6, lambda_)
print(f"P(X > 6): {prob_greater_6:.4f}")
# Calculate mean and variance
mean = lambda_
variance = lambda_
print(f"Mean: {mean}")
print(f"Variance: {variance}")