Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1) Consider a game where you role three fair dice and count the total. The dice are eight, ten and twelve sided resPectively. (a) Write
1) Consider a game where you role three fair dice and count the total. The dice are eight, ten and twelve sided resPectively. (a) Write an R function that will compute one round of this game. Have it return the values of the three dice and their total. Store the dice roles by the number of sides of the dice (smallest to largest}. (b) Using the code in (a) write a function that will simulate n rounds of the game. (e) Suppose you win another role if the total of the three dice roles is less than or equal to 14. Write an R function that will compute the proportion of roles that meet this criteria after 11 rounds. (d) Run (c) for n = 1000000. Repeat this ve times and look at the results. (e) What does this tell you about the odds of rolling a total of 14 or less? (f) Suppose you win $100 if you role triple sevens. Write an R function that will compute the proportion of roles that meet this criteria after so rounds. (g) Run (f) for n. = 1000000. Repeat this ve times and look at the results. (h) What does this tell you about the odds of rolling triple sevens? (i) Suppose the game ends if you either role triple SBVens or run out of free roles [sun] of dice :> 14). Write an R function that returns a 1 if you win and zero otherwise. (j) Using (i) what do you think are the odds of winning this game? Submit your R code as q1_R. Also, please label each part (a}- (j) with a comment header (i.e. # (a}}. Use commented text (7%) to answer any textual
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started