Answer:
P(x = 9) and P(x = 13) is:
0.6551965
Step-by-step explanation:
By Z score,
[tex]Z = \frac{x - 2}{\frac{\sigma}{\sqrt{n}}}[/tex],
P(x = 9 ) = [tex]P(Z = \frac{9 -2 }{\frac{10}{\sqrt{5}}} )[/tex]
P(x =13) = [tex]P(Z = \frac{13 -2 }{\frac{10}{\sqrt{5}}} )[/tex]
And these give:
P(x = 9) ==> P(Z = 0.7) = 0.7580363
P(x = 13) ==> P(Z = 1.1) = 0.8643339
Therefore, the probability that the project would take between 9 and 13 week = P(x = 9) * P(x =13) = 0.6551965.
For replication, see the R codes below:
Z1 = (9 - 2)/(10/sqrt(length(5)))
a = pnorm(Z1)
Z2 = (13 - 2)/(10/sqrt(length(5)))
b = pnorm(Z2)
a*b