Probability of a Yahtzee
Let us calculate the probability of obtaining a "Yahtzee" in a single roll of the five dice.
A Yahtzee occurs when all five dice are of the same denomination. Any of the six denominations counts as a Yahtzee. For example, all 1s is a Yahtzee, as is all 4s.
Cet exercice fait partie du cours
Probability Puzzles in R
Instructions
- Calculate the size of the sample space.
- Calculate the probability of obtaining a Yahtzee.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Calculate the size of the sample space
s_space <-
# Calculate the probability of a Yahtzee
p_yahtzee <-
# Print the answer
print(p_yahtzee)