
Brent K. answered 06/18/21
Applied Math PhD
This is modeled with a binomial random variable:
- There are a fixed number (10) people questioned
- The probability of success (i.e. very little confidence in newspapers) is constant trial to trial (p=0.58)
- The trials are independent (a reasonable assumption, since the response of 1 of the people should not affect the response of any other)
- Each trial has only two outcomes - little confidence in newspapers, or not
- X counts the number of successes in the 10 trials
The probability mass function for the binomial random variable is given by
P(X=k) = (n Choose k )*(p^k)*(1-p)^(n-k)
a) P(X=5) = (10choose5)*(0.58)^5*(0.42)^5 ≈ 0.216
b) P(X≥6) = P(X=6)+P(X=7)+P(X=8)+P(X=9)+P(X=10)
Each of these can be computed separately, and then added together
c) P(X<4) = P(X=0)+P(X=1)+P(X=2)+P(X=3)
Same idea as b) above.
Alternatively, if you have a calculator with the binomial's cumulative distribution function, you can thus that for b) and c) directly.
Recall that the binomcdf(x) = P(X ≤ x) - note the direction and type of the inequality.
So, for b), we would have P(X ≥6) = 1-P(X<6) = 1-binomcdf(5) (we use 5 here because we want the probability of X being strictly less than 6).
For c), it would be P(X<4) = binomcdf(3)