SOLUTION: suppose that you are taking a multiple choice quiz with 5 questions and 4 possible answers to each. In how many different ways can you get a 60% on the quiz?

Algebra ->  Probability-and-statistics -> SOLUTION: suppose that you are taking a multiple choice quiz with 5 questions and 4 possible answers to each. In how many different ways can you get a 60% on the quiz?      Log On


   



Question 457646: suppose that you are taking a multiple choice quiz with 5 questions and 4 possible answers to each. In how many different ways can you get a 60% on the quiz?
Answer by oberobic(2304) About Me  (Show Source):
You can put this solution on YOUR website!
This is a peculiar question because the number of choices does not matter. You either get the answer right or wrong. 60% of 5 = 3/5, so you need to get 3 of the 5 questions right.
.
You can get them Right or Wrong in several ways, but do you need to know that, too?
.
RRRWW
.
Shift left and wrap the one that went of the left end onto the right end
RRWWR
.
Repeat
RWWRR
.
Repeat
WRRRW
.
If you repeat again, you're right back to where you were, so that is not a "new" sequence.
.
Or you could start with RWRWR and go through those
RWRWR
WRWRR
RWRRW
WRRWR
RRWRW
RWRWR is a repeat sequence
.
Or you start with: WRWRR, or WWRRR, etc.
But that is a lot of work, and error-prone, too.
.
If you have done anything with permutations and combinations, you may recognize that the question is asking how many ways you can pick 3 specific items from a set of 5 items: C(n,r), where n=5, r=3
C%28n%2Cr%29+=+n%21%2F%28%28r%21%29%2A%28n-r%29%21%29
C%285%2C3%29+=+5%21%2F%283%21%2A2%21%29
C%285%2C3%29+=+%285%2A4%2A3%2A2%2A1%29%2F%28%283%2A2%2A1%29%2A%282%2A1%29%29
Ignoring the "*1" factors
C%285%2C3%29+=+%285%2A4%2A3%2A2%29%2F%283%2A2%2A2%29
C%285%2C3%29+=+%285%2A2%29
C%285%2C3%29+=+10
That means there are 10 ways you can get 3 questions right out of 5 total questions.
.
Now if the question were to have asked "at least 60%" then the answer would be different because you would have to consider the case of getting all 5 right as well as 4/5 right.
.
Done