In: Statistics and Probability
When circuit boards used in the manufacture of compact disc players are tested, the long-run percentage of defectives is 10%. Let X = the number of defective boards in a random sample of size n = 20, so X ~ Bin(20, 0.1). (Round your probabilities to three decimal places.)
(a) Determine P(X ≤ 2).
b. Determine P(X ≥ 5).
c. Determine P(1 ≤ X ≤ 4).
d. What is the probability that none of the 20 boards is defective?
e. Calculate the expected value and standard deviation of X. (Round your standard deviation to two decimal places.)
| expected value | = boards |
| standard deviation | = boards |
a)
Here, n = 20, p = 0.1, (1 - p) = 0.9 and x = 2
As per binomial distribution formula P(X = x) = nCx * p^x * (1 -
p)^(n - x)
We need to calculate P(X <= 2).
P(X <= 2) = (20C0 * 0.1^0 * 0.9^20) + (20C1 * 0.1^1 * 0.9^19) +
(20C2 * 0.1^2 * 0.9^18)
P(X <= 2) = 0.122 + 0.27 + 0.285
P(X <= 2) = 0.677
b)
Here, n = 20, p = 0.1, (1 - p) = 0.9 and x = 5
As per binomial distribution formula P(X = x) = nCx * p^x * (1 -
p)^(n - x)
We need to calculate P(X >= 5).
P(X <= 4) = (20C0 * 0.1^0 * 0.9^20) + (20C1 * 0.1^1 * 0.9^19) +
(20C2 * 0.1^2 * 0.9^18) + (20C3 * 0.1^3 * 0.9^17) + (20C4 * 0.1^4 *
0.9^16)
P(X <= 4) = 0.122 + 0.27 + 0.285 + 0.19 + 0.09
P(X <= 4) = 0.957
P(x>=5) = 1 - P(x<=4)
= 1 - 0.957
= 0.043
c)
Here, n = 20, p = 0.1, (1 - p) = 0.9, x1 = 1 and x2 = 4.
As per binomial distribution formula P(X = x) = nCx * p^x * (1 -
p)^(n - x)
We need to calculate P(1 <= X <= 4)
P(1 <= X <= 4) = (20C1 * 0.1^1 * 0.9^19) + (20C2 * 0.1^2 *
0.9^18) + (20C3 * 0.1^3 * 0.9^17) + (20C4 * 0.1^4 * 0.9^16)
P(1 <= X <= 4) = 0.27 + 0.285 + 0.19 + 0.09
P(1 <= X <= 4) = 0.835
d)
Here, n = 20, p = 0.1, (1 - p) = 0.9 and x = 0
As per binomial distribution formula P(X = x) = nCx * p^x * (1 -
p)^(n - x)
We need to calculate P(X = 0)
P(X = 0) = 20C0 * 0.1^0 * 0.9^20
P(X = 0) = 0.122
e)
Here, μ = n*p = 2,
σ = sqrt(np(1-p)) = 1.34