CommencerCommencer gratuitement

Probability of a large straight

A large straight occurs when the five dice land on consecutive denominations, specifically either {1,2,3,4,5} or {2,3,4,5,6}.

Let's calculate the probability of a "large straight" in a single roll of the five dice.

Cet exercice fait partie du cours

Probability Puzzles in R

Afficher le cours

Instructions

  • Calculate the probability of obtaining {1,2,3,4,5}.
  • Calculate the probability of obtaining {2,3,4,5,6}.
  • Calculate the probability of obtaining a large straight.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

s_space <- 6^5

# Calculate the probabilities
p_12345 <- ___
p_23456 <- ___
p_large_straight <- ___

# Print the large straight probability
print(p_large_straight)
Modifier et exécuter le code