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.
Diese Übung ist Teil des Kurses
Probability Puzzles in R
Anleitung zur Übung
- 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.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
s_space <- 6^5
# Calculate the probabilities
p_12345 <- ___
p_23456 <- ___
p_large_straight <- ___
# Print the large straight probability
print(p_large_straight)