Hi Anchal,
This is a binomial case since we have a binary outcome of "success" (tuned in) or "failure" (not). Formula is:
P(X=x)=C(n, x) px*qn-x
Breaking this down:
X=number of viewers we are given to test
C(n, x)= n!/(x!(n-x)!)--exclamation point means factorial--i.e. 4!= 4*3*2*1--input this in calculator
p=probability viewer is tuned in
q=1-p
n=sample size
For your first problem:
X=0
p=0.18
q=0.82
n=10
Thus:
P(X=10)=C(10,0)*0.180*0.8210
C(10,0)=10!/(0!*10!)=1
Additionally, anything raised to the 0 power is 1, so:
P(X=0)=1*1*0.8210
P(X=0)=0.137
You were then asked for the probability of at least one household being tuned in: you can use the Complement Rule aka the "One Minus Trick."
P(X>=1)=1-P(X=0)
P(X>=1)=1-0.137=0.863
Finally, you were asked to find the probability that at most one household tuned in. We already calculated the probability for 0, so we now need the probability for 1. All values are the same as in above equation except: x=1. Thus:
P(X=1)=C(10,1)*0.181*0.829
C(10,1)=10!/(1!*9!)=10
P(X=1)=10*0.181*0.829=0.302
Now, recall the question asked for at most 1, which means we also have to account for 0, so:
P(X<=1) = P(X=0) + P(X=1)
P(X<=1)= 0.302 + 0.137 = 0.439
This means that the occurrence of "At most 1" household tuned in happens about 43.9% of the time; not particularly unusual, so I would say the share value is not "wrong." Your instructor may use different criteria for this part, though. I hope this helps.