A car hire firm typically receives an average of 3 hiring requests per day. What is the probability it gets at most two hiring requests for exactly 3 days a week?
The first part of the problem (getting at most 2 requests in a day) can be solved using the Poisson probability model. It involves a random variable, X, and it takes positive values. All we know is an expected value (average value), lambda. The probability is expressed as:
Now, substitute lambda = 3 and s for at most 2 requests, i.e., the chance of 0 requests + 1 request + 2 requests.
This can be easily estimated using the R code:
ppois(2, 3, lower.tail = TRUE)
This is the daily probability for at most 2 car hire requests. For estimating the probability of 3 exact such days in a week, we use the binomial model.
Or the R code.
dbinom(3, 7, prob = ppois(2, 3, lower.tail = TRUE))