Let \(X\) be the total weight of 8 people. By the assumption, \(X \sim \mbox{Normal}(560, 57^2)\text{.}\) We are interested in the probability \(\Prob(X > 650)\text{.}\) This probability is equal to the difference between 1 and the probability \(\Prob(X \leq 650)\text{.}\) We use the function βpnorm" in order to carry out the computation:
Let \(Y\) be the total weight of 9 people. By the assumption, \(Y \sim \mbox{Normal}(630, 61^2)\text{.}\) We are interested in the probability \(\Prob(Y > 650)\text{.}\) This probability is equal to the difference between 1 and the probability \(\Prob(Y \leq 650)\text{.}\) We use again the function βpnorm" in order to carry out the computation:
Again, \(X \sim \mbox{Normal}(560, 57^2)\text{,}\) where \(X\) is the total weight of 8 people. In order to find the central region that contains 80% of the distribution we need to identify the 10%-percentile and the 90%-percentile of \(X\text{.}\) We use the function βqnorm" in the code:
As before, \(Y \sim \mbox{Normal}(630, 61^2)\text{,}\) where \(Y\) is the total weight of 9 people. In order to find the central region that contains 80% of the distribution we need to identify the 10%-percentile and the 90%-percentile of \(Y\text{.}\) The computation this time produces:
The probability \(\Prob(X > 11)\) can be computed as the difference between 1 and the probability \(\Prob(X \leq 11)\text{.}\) The latter probability can be computed with the function βpbinom":
Refer again to the probability \(\Prob(X > 11)\text{.}\) A formal application of the Normal approximation replaces in the computation the Binomial distribution by the Normal distribution with the same mean and variance. Since \(\Expec(X) = n \cdot p = 27 \cdot 0.32 = 8.64\) and \(\Var(X) = n \cdot p \cdot (1-p) = 27 \cdot 0.32 \cdot 0.68 = 5.8752\text{.}\) If we take \(X \sim \mbox{Normal}(8.64,5.8752)\) and use the function βpnorm" we get:
The continuity correction, that consider interval of range 0.5 about each value, replace \(\Prob(X > 11)\text{,}\) that involves the values \(\{12, 13, \ldots, 27\}\text{,}\) by the event \(\Prob(X > 11.5)\text{.}\) The Normal approximation uses the Normal distribution with the same mean and variance. Since \(\Expec(X) = 8.64\) and \(\Var(X) = 5.8752\text{.}\) If we take \(X \sim \mbox{Normal}(8.64,5.8752)\) and use the function βpnorm" we get:
The Poisson approximation replaces the Binomial distribution by the Poisson distribution with the same expectation. The expectation is \(\Expec(X) = n \cdot p = 27 \cdot 0.32 = 8.64\text{.}\) If we take \(X \sim \mbox{Poisson}(8.64)\) and use the function βppois" we get: