October 5, 2023

Introduction to Poisson Distribution

The Poisson Distribution is a discrete probability distribution often used in statistical modeling. It is expressed as:

\[ p(x) = \frac{e^{-\lambda}\lambda^x}{x!} \]

where \(\lambda\) is the rate of occurrence.

# Defining the name of the distribution
distribution_name <- "Poisson Distribution"
distribution_name
## [1] "Poisson Distribution"

Identifying the Distribution

The given formula is:

\[ p(x) = \frac{e^{-22}22^x}{x!} \]

for \(x = 0,1,2, …\)

This is a Poisson Distribution with \(\lambda = 22\).

Probability of Catching At Least 20 Mice

We are looking for the probability of catching at least 20 mice. The R code below calculates this probability.

# Parameters
lambda <- 22

# Probability of catching at least 20 mice
prob_at_least_20 <- 1 - ppois(19, lambda)
prob_at_least_20
## [1] 0.693973

Explanation of Probability Calculation

The ppois function calculates the cumulative probability of a Poisson distribution. We use the complement rule to find the probability of catching at least 20 mice.

Standard Deviation

The standard deviation of a Poisson distribution is the square root of \(\lambda\).

# Standard deviation
std_dev <- sqrt(lambda)
std_dev
## [1] 4.690416

Explanation of Standard Deviation

The standard deviation measures how spread out the numbers are from the average. In a Poisson distribution, it’s equal to the square root of the average rate \(\lambda\).

Conclusion

  • The data follows a Poisson Distribution with \(\lambda = 22\).
  • The probability of catching at least 20 mice in a day is calculated as above.
  • The standard deviation for the number of mice caught in a day is also calculated.