102k views
1 vote
Each multiple-choice question on an exam has four choices. Suppose that there are 10 questions and the choice is selected randomly and independently for each question. Let X denote the number of questions answered correctly. Does X have a discrete uniform distribution? Why or why not?

1 Answer

7 votes

Answer:

It is discrete, but not uniform, since each outcome is not equally as likely.

Explanation:

For each question, there are only two possible outcomes. Either it is answered correctly, or it is not. The probability of answered a question is independent from the probability of answeing other questions. So we use the binomial probability distribution to solve this question.

Binomial probability distribution

The binomial probability is the probability of exactly x successes on n repeated trials, and X can only have two outcomes.


P(X = x) = C_(n,x).p^(x).(1-p)^(n-x)

In which
C_(n,x) is the number of different combinations of x objects from a set of n elements, given by the following formula.


C_(n,x) = (n!)/(x!(n-x)!)

And p is the probability of X happening.

Each multiple-choice question on an exam has four choices.

This means that
p = (1)/(4) = 0.25

10 questions

This means that
n = 10

Let X denote the number of questions answered correctly. Does X have a discrete uniform distribution? Why or why not?

It is discrete, because the number of questions answered correctly is a discrete value.

However, it is not uniform. A distribution is uniform when each outcome is equally as likely. For example, the probability of answering 0 questions correctly is different of the probability of answering 1 question correctly, as we see below.


P(X = x) = C_(n,x).p^(x).(1-p)^(n-x)


P(X = 0) = C_(10,0).(0.25)^(0).(0.75)^(10) = 0.0563


P(X = 1) = C_(10,1).(0.25)^(1).(0.75)^(9) = 0.1877

User Tim Chen
by
5.1k points