A student guesses at every question of a 5 question multiple choice quiz. Each question has 4 choices, one of which is correct. Calculate the probability of the student passing (achieving a score of 3 or greater) through guessing alone.
P(correct answer) = 1/4 = 0.25
n = 5
This is a binomial distribution
P(X = x) = 5Cx * 0.25x * (1 - 0.25)5-x
P(X > 3) = P(X = 3) + P(X = 4) + P(X = 5)
= 5C3 * 0.253 * 0.752 + 5C4 * 0.254 * 0.751 + 5C5 * 0.255 * 0.750
= 0.1035
A student guesses at every question of a 5 question multiple choice quiz. Each question has...