issacnewton
- 1,035
- 37
Homework Statement
Suppose that the number of asbestos particles in a sam-
ple of 1 squared centimeter of dust is a Poisson random variable
with a mean of 1000. What is the probability that 10 squared cen-
timeters of dust contains more than 10,000 particles?
Homework Equations
E(aX+b) = aE(X) + b
Var(aX) = a^2 Var(X)
The Attempt at a Solution
Let X = number of asbestos particles in 1\mbox{cm}^2. Define Y = number of asbestos particles in 10\mbox{ cm}^2. So we have Y=10X. Using the formula given above, we get E(Y)=10E(X) and Var(Y) = 100 Var(X). But since X is a Poisson random variable, we have E(X) = \lambda = Var(X) = 1000. So we get for Y variable, E(Y) = 10000 and Var(Y) = 100000. Then the probability we need to find is P(Y > 10000). Now we use the Normal approximation here. E(Y) = 10000 and Var(Y) = 100000. So P(Y \geq 10001.5). So we get the following expression
P\left(z \geq \frac{10001.5 - 10000}{\sqrt(100000)}\right)
So now I use pnorm function in R , to calculate this probability. It is
\mbox{pnorm(10001.5, 10000, sqrt(100000), lower.tail=F)}
which gives us 0.4981077. Is this right ? The solution manual for Montgomery and Runger says that E(Y) = \lambda = 10000 = Var(Y). Is that a mistake ?
thanks