Roman C. answered 02/04/16
Tutor
5.0
(868)
Masters of Education Graduate with Mathematics Expertise
This is just P(X ≤ 25) where X ~ Bin(n=50,p=0.65)
Using R by typing pbinom(25,size=50,prob=0.65), we have:
P(X ≤ 25) = 0.02066839
We can also give a normal approximation
Let Y ∼ N(μ,σ2) where
μ = np = 32.5
σ = √[np(1-p)] = 3.37268
Then, using continuity correction, P(X ≤ x) ≈ P(Y ≤ x + 1/2) gives
Z = (Y - μ)/σ = (X - μ + 1/2)/σ =(25 - 32.5 + 0.5)/3.37268 = -2.075498
P(X ≤ 25) ≈ P(Z ≤ -2.075498) = Φ(-2.075498) ≈ 0.0189702
this is close to the exact value. The command here is pnorm(-2.075498).