You are presented with a multiple choice exam where each question has one correct answer.
You firstly solve all questions you know for sure, and then pick the rest at random.
What are your odds of passing it for a given passing grade?
After a qucik peak on the Binomial distribution, I have came up with the following expression:
(Correct me if I made a mistake somewhere, but I believe that won't be necessary)
$$ P = \sum_{t = \lceil p q \rceil-n}^q \binom{q}{t}\frac{(a-1)^{q-t}}{a^q}$$
$p$ - passing grade from $0$% to $100$% $(0\le p \le 1)$
$q$ - number of unknown questions
$n$ - number of known (correct) questions
$a$ - number of answers (choices) per questionIf $t \le 0$ then use $P = 1$, you passed for sure.
But this seems like too much to calculate if you are going to do it by hand and are dealing with large or "ugly" values even thought its as simple as I believe it can be.
I'm looking for easiest and quickest ways & formulas to do this calculation, or at least a good and calculable by hand approximation.
I guess you can always round up a bit the "ugly" values, and for the large values looking up in a table of binomial coefficients? But then again is there a better way or why not?