Suppose that the discrete random variable X counts the number of heads in four tosses of a balanced coin. What is the probability of tossing at least two heads?
p = probability of head in a toss
p = 0.5
X~Binomial(4,0.5)
"P(X\u22652) = 1 -P(X<2) \\\\\n\n= 1 -(P(X=0) + P(X=1)) \\\\\n\n= 1 -(C^4_0(0.5)^0(0.5)^4 + C^4_1(0.5)^1(0.5)^3) \\\\\n\n= 1 -(0.5^4 + 4(0.5)^4) \\\\\n\n= 1 -0.5^4(1+4) \\\\\n\n= 1 -0.3125 \\\\\n\n= 0.6875"
Comments
Leave a comment