In a particular school, 25% of first grade students do not enjoy reading. 22% of second graders do not enjoy reading. A random sample is taken of 100 first grade students, and another independent sample of 100 second graders is taken.
Part 1: Use normal approximation to find the probability that less than 30 first grade students in the sample do not enjoy reading.
Part 2: Use normal approximation to find the probability that 5 more second graders than first graders in the samples do not enjoy reading.
For part 1, after doing the 0.5 correction, I got $$ O \ follows \ N(25, 18.75) $$ $$ P(O \le 29.5) = 0.851 $$
Is that right? And for part 2, I'm not exactly sure how to set it up.
Thanks!
Part 2: For second grade students p = .22, n = 100, and Y is the number of sampled students who do not enjoy reading. Much as in Part 1, we obtain $E(Y) = 22$ and $V(Y) = 17.16$.
We also need the mean and variance of $W = Y - X$, with $X$ as in Part 1. We have $E(W) = E(Y-X) = 22 - 25 = -3$ and $V(W) = 18.75 + 17.16 = 36.91$ (notice that variances ADD), so that the SD of the difference is 5.9924. We seek
$$P\{W = 5\} = P\{4.5 \le W \le 5.5\} \approx P\{(4.5 + 3)/5.9924 \le Z \le (5.5+3)/5.9924\} = P\{1.252 \le Z \le 1.418\} = 0.027.$$
In Part 1, some authors may have ignored the "continuity correction" that uses half integers in the bounds. Here, however this correction is essential to getting a sensible answer.
As in Part 1, you may get a slightly different answer using printed tables of the standard normal distribution, rounding bounds to two places, than we did with software. In R, the statement 'diff(pnorm(c(1.252, 1.418))' returns 0.02719.
A simulation of a million runs of this 200-student experiment yielded the same answer 0.027 to three places as in the approximation. A histogram of the million differences of reading averse students is closely matched by a normal curve with mean -3 and standard deviation 5.9924. (It would have been possible to get an exact answer, but we did not. You might want to ponder how many binomial probabilities would have to be computed to do that.)