A test contains 10 questions, each with 5 possible answers but only one of them is correct. Test is positive if at least half of the questions are correct answered. Calculate the probability of solving test positive if person just randomly answered the questions.
Solution: $\frac{320249}{9765625}$
I was tyring to use binomial distribution with $n=10, k=5$, and $p=0.2$ but I can't get correct solution. Where is my mistake?
Let $X$ be the number of correctly answered questions, then $ X \sim Bin(10, 1/5)$, hence the probability of a "positive test" can be calculated by $$ P(X\ge 5) = \sum_{k=5}^{10}\binom{10}{k}\frac{1}{5^k}\times\frac{4^{10-k}}{5^{10 - k}} $$