Problem: In a binomial experiment with 45 trials, the probability of more than 25 successes can be approximated by $P(z > \frac{(25-27)}{3.29}$)
What is the probability of success of a single trial of this experiment?
Choices:
- 0.07
- 0.56
- 0.79
- 0.61
- 0.6
My Solution: Since the experiment can be approximated by a normal distribution, I evaluated P(z) using NormalCdf on my calculator. $$P(z > \frac{25-27}{3.29}) = NormCdf(\frac{25-27}{3.29},\infty, 0, 1) = 0.72834 $$
Then, I set up the binomialCdf expression as $binomCdf(45, p, 26, 45)$ using 26 as the minimum number of successes as the question specifies it to be more than 25.
Through inspection, I found p to be 0.61. However, the answer key says otherwise.
Can someone check the error in my work? Thank you!