ComeçarComece de graça

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.

Este exercício faz parte do curso

Probability Puzzles in R

Ver curso

Instruções do exercício

  • Calculate the size of the sample space.
  • Calculate the probability of obtaining a Yahtzee.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Calculate the size of the sample space
s_space <-

# Calculate the probability of a Yahtzee
p_yahtzee <- 

# Print the answer
print(p_yahtzee)
Editar e executar o código