You may use technology to perform some of the following calc
Solution
a)
Note that the probability of x successes out of n trials is
P(n, x) = nCx p^x (1 - p)^(n - x)
Thus, if n = 3000000, x = 5, p = 1/6
P(n, x) = 3000000C5 (1/6)^5 (1 - 1/6)^(3000000 - 5)
However, the challenge is that the exponents are too high, and the factorials involved in 3000000C5 are too high as well.
************************
b)
We first get the z score for the critical value:
x = critical value = 498999.5
u = mean = np = 500000
s = standard deviation = sqrt(np(1-p)) = 645.4972244
Thus, the corresponding z score is
z = (x-u)/s = -1.549967935
Thus, the left tailed area is
P(z > -1.549967935 ) = 0.939425394 [ANSWER]
