155k views
10 votes
On a recent test, Ahmed knew many of the answers, but there were four questions he was unsure of. In each of the four questions, he was able to eliminate two answers as being clearly wrong and was left with three answer choices to choose from. In each of the four questions, he randomly selected one of the remaining three answers. Which of these statements describes how Ahmed could simulate this situation with a random number generator to determine if he will select the correct answers for these four questions?

It is impossible to simulate this with a random number generator without knowing what the correct answer choices were Using his calculator, Ahmed could use the Randint(1,4) command three times to select three integers from 1 to 4. Let a 1 indicate a correct guess, and a 2, 3, or 4 indicate an incorrect guess. Count the number of 1s to correspond to the number of correct guesses. Using his calculator, Ahmed could use the Randint(1,4) command to select a random integer from 1 to 4. This would be the number of correct guesses he made on the four questions. Using his calculator, Ahmed could use the Randint(1,3) command four times to select four integers from 1 to 3. Leta 1 indicate a correct guess, and a 2 or 3 indicate an incorrect guess. Count the number of 1s to correspond to the number of correct guesses. It is impossible to simulate this with a random number generator without knowing what the correct answer choices were. Using his calculator, Ahmed could use the Randint(1,4) command three times to select three integers from 1 to 4. Let a 1 indicate a correct guess, and a 2, 3, or 4 indicate an incorrect guess. Count the number of 1s to correspond to the number of correct guesses. Using his calculator, Ahmed could use the Randint(1,4) command to select a random integer from 1 to 4. This would be the number of correct guesses he made on the four questions. Using his calculator, Ahmed could use the Randint(1,3) command four times to select four integers from 1 to 3. Let a 1 indicate a correct guess, and a 2 or 3 indicate an incorrect guess. Count the number of 1s to correspond to the number of correct guesses. Using his calculator, Ahmed could use the Randint(1,5) command four times to select four integers from 1 to 5. Leta 1 indicate a correct guess, and a 2, 3, 4, or 5 indicate an incorrect guess. Count the number of 1s to correspond to the number of correct guesses.

1 Answer

6 votes

Answer:

It is impossible to simulate this with a random number generator without knowing what the correct answer choices were

Explanation:

Given


Questions = 4


Options = 5

Required

How can he select the right answer

Using randint will only generate a random number which could or could not be the answer to the question.

This is so because each of the 5 options for the question has the same probability of 1/5. So, using randint will only generate a random number. This generated random number has 1/5 chance of being the answer and 4/5 of not being the answer to the question.

In a nutshell, he can not make use of a simulator to select the answer to the questions in this scenario, unless he knows the solution.

Hence (a) answers the question.

User Sonia
by
3.6k points