I'm reading about binomial distributions and I found this problem:
We're trying to find the probability of finding 70-245 successes, given a population of 245 and a probability of success of 25%. What is the probability of 70-245 successes summed?
In R the equation looks like this:
sum(dbinom(70:245, size = 245, p = 0.25)) and the answer is 0.113. Fine.
However, if I took a normal approximation, the answer is 0.0985. The mean and SD of the distribution is $$ u = np = 61.25 $$ and the $$ SD = 6.78 $$
When calculating the z score and finding the percentile, it falls a little bit short and it's 0.0985. Why is this?
The explanation I am reading is confusing:
Under the normal distribution, the probability of exactly 70 successes is undefined, so the shaded area above 70 doesn't included 70 successes. So we make a 0.5 adjustment and calculate the z score subtracting 0.5 from the observation of interest.
Why is 70 undefined? Why do we subtract 0.5?