The Poisson distribution with parameter λ = .3 has been assigned for the outcome of an experiment. Let X be the outcome function.
lambda = .3
x_0 <- 0
x_1 <- 1
a <- ppois(x_0, lambda, lower.tail = TRUE )
b <- ppois(x_1, lambda, lower.tail = TRUE)
c <- ppois(x_1, lambda, lower.tail = FALSE)
(where lower tail is less-than or equal to)
Answer: 0.7408182
(where lower tail is less-than or equal to )
Answer: 0.9630637
(where upper tail is greater-than)
Answer: 0.0369363