Hi I was working on this question for my exam review:
Consider a multiple choice exam with 100 questions, in which for each question, four options are given to choose from. You answer each question by choosing an answer uniformly at random, and independently of the other answers. What is the expected number of correct answers?
After doing some simple calulation I ended up with 25 correct answers however the textbook answers page says $\sum\limits_{k=0}^{100}k {100 \choose k} (1/4)^k (3/4)^{100-k}$ I have no idea how it ended up with that answer any help?
The expected number of correct solutions is the sum of all posible scores mutiplied by the probability of getting each of those scores. What is the probability you get $k$ answers?
you need to get $k$ correct and $100-k$ incorrect. so assuming you had to get the first k correct and the last 100-k incorrect the probability would be $(\frac{1}{4})^k(\frac{3}{4})^{100-k}$. However there are $\binom{100}{k}$ different ways to pick the $k$ answers you got right. Thus the probability you get $k$ points is:
$\binom{100}{k}(\frac{1}{4})^k(\frac{3}{4})^{100-k}$
And we know the estimated number of answers is sum of each value multiplied by its probability, so we get:
$\sum_{k=0}^{100}k\binom{100}{k}(\frac{1}{4})^k(\frac{3}{4})^{100-k}$