ComenzarEmpieza gratis

Probability of winning the pass line bet

Now, we'll use the functions that we created previously to simulate 10,000 games of Craps to estimate the probability of winning the pass line bet. The roll_dice and evaluate_first_roll() functions that you previously wrote have been preloaded for you, to be used in this exercise. Recall that the evaluate_first_roll() function takes the shooter's first roll as its input, and determines what should happen after that.

Este ejercicio forma parte del curso

Probability Puzzles in R

Ver curso

Instrucciones del ejercicio

  • Perform the shooter's first roll by simulating the rolling of two dice.
  • Using the value of the first roll, determine whether the pass line bet will be won or lost, and store the result into the won vector.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

set.seed(1)
won <- rep(NA, 10000)

for(i in 1:10000){
  # Shooter's first roll
  roll <- ___
  
  # Determine result and store it
  won[_] <- ___
}

sum(won)/10000
Editar y ejecutar código