Question

Problem 9 A single game of craps (a dice game) consists of at most two rolls of a pair of six sided dice. The ways to win are as follows: Win-the first roll of the pair of dice sums to either 7 or 1 (you win, game over, no second roll Win the first roll of the pair of dice does NOT sum to either 7 or 1 but the sum of the second roll is equal to the sum of the first roll (for example, if you rolled a combined 10 in roll one, rolling a combined10 in roll two- win) Calculate the odds of winning a single game of craps. Show your thought process (equations) P(win craps) ?? Problem 10 Below is a working Matlab program to simulate many games of craps. The program plays 10,000 games, and determines Prob win. Code this program and play 10,000 games 10 separate times. Make a table of P(win craps) with your ten results. How can you use this table to determine the accuracy of your game simulation? simulate the odds of winning at craps % CES 5010 clear num-10000 -cei 1( rand (num ,4)*6); try . help rand, and heiP ceil to whats happening see for i 1: num sumn1m(1,1)%(1,2); win-win+1: else EmailSave win win Prob win win/nu disp(lProbability
Problem 9 A single game of craps (a dice game) consists of at most two rolls of a pair of six sided dice. The ways to win are as follows: Win the first roll of the pair of dice sums to either 7 or 11 (you win, game over, no second roll) Win- the first roll of the pair of dice does NOT sum to either 7 or 11, but the sum of the second roll is equal to the sum of the first roll (for example, if you rolled a combined 10 in roll one, rolling a combined10 in rol two win) Calculate the odds of winning a single game of craps. Show your thought process (equations) P(win craps)-??
0 0
Add a comment Improve this question Transcribed image text
Answer #1

P Wan cr (Sun ofiret oil of pair 4 ieo11) or 1 Denote . p(win Cr Note thod Sum dt roll iu fo 따 3 6 5-4/36 /3 6 -6/36 5736 3C 36 10 _ 3136 6 刊9 31 , 36 3636 3636 36.36 支ハ36 t 16+25+25+16 49t ) 2 106 q36X36 36X36 36 X18 (0.304

Solved first posted queeques according to HOMEWORKLIB POLICY.

Add a comment
Know the answer?
Add Answer to:
Problem 9 A single game of craps (a dice game) consists of at most two rolls...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Java programming Write a simulation of the Craps dice game. Craps is a dice game that...

    Java programming Write a simulation of the Craps dice game. Craps is a dice game that revolves around rolling two six-sided dice in an attempt to roll a particular number. Wins and losses are determined by rolling the dice. This assignment gives practice for: printing, loops, variables, if-statements or switch statements, generating random numbers, methods, and classes. Craps game rules: First roll: The first roll (“come-out roll”) wins if the total is a 7 or 11. The first roll loses...

  • Problem 10 Below is a working Matlab program to simulate many games of craps. The program...

    Problem 10 Below is a working Matlab program to simulate many games of craps. The program plays 10,000 games, and determines Prob _win. Code this program and play 10,000 games 10 separate times. Make a table of P(win craps) with your ten results. How can you use this table to determine the accuracy of your game simulation % simulate the odds of winning at craps % CES 5010 clear num-10000 %number of simulations x=cei 1( rand (num ,4)*6); win-o try...

  • 9. In the casino dice game Craps, players make wagers on a sequence of rolls of...

    9. In the casino dice game Craps, players make wagers on a sequence of rolls of a pair of dice. A sequence of rolls starts with the "shooter" making an initial roll of two dice called the "come-out” roll. If the sum of the dice on the initial roll is 7 or 11 then a player with a bet on the Pass Line wins. If the initial roll results in a sum of 2, 3, or 12 ("craps") then a...

  • Craps

    Write a C++ game that plays Craps. Craps is a game played with a pair of dice. The shooter (the player with the dice) rolls a pair of dice and the number of spots showing on the two upward faces are added up. If the opening roll (called the ‘come out roll’) is a 7 or 11, the shooter wins the game. If the opening roll results in a 2 (snake eyes), 3 or 12 (box cars), the shooter loses,...

  • In the game of "Craps", a roller plays by rolling two six-sided dice. The score for...

    In the game of "Craps", a roller plays by rolling two six-sided dice. The score for each roll is the sum of the two dice. A roller can win on the first roll by rolling either a sum or 7 or 11. The probability of this occurring can be found using the sample space to be 0.2222. This probability (0.2222) is an example of what type of probability? O Theoretical Probability O Empirical Probability O Sample Probability There is not...

  • using python [6] Craps is a dice-based game played in many casinos. Like blackjack, a player...

    using python [6] Craps is a dice-based game played in many casinos. Like blackjack, a player plays against the house. The game starts with the player throwing a pair of standard, six-sided dice. If the player rolls a total of 7 or 11, the player wins. If the player rolls a total of 2,3, or 12, the player loses. For all other roll values, the player will repeatedly roll the pair of dice until either she rolls the initial value...

  • Write a c++ program that simulates a million of games in craps. I am having a...

    Write a c++ program that simulates a million of games in craps. I am having a trouble getting to loop a million of times. I am trying to use a const for a million. This is the code so far. #include <iostream> #include <cstdlib>// contains prototypes for functions srand and rand #include <ctime>// contains prototype for function time #include <iomanip> using namespace std; int rollDice(); // rolls dice, calculates and displays sum void printstats(); int totroll = 0, games, point,...

  • Java Craps in Java. The following are the rules for a pass bet in the game...

    Java Craps in Java. The following are the rules for a pass bet in the game of craps. Roll two six-sided dice, and let x be their sum. If x is 7 or 11, you win. If x is 2, 3, or 12, you lose. Otherwise, repeatedly roll two the dice until their sum is either x or 7. If their sum is x, you win. If their sum is 7, you lose. Compose a modular program to estimate the...

  • Here is a version of the game of crap. First, you roll two well-balanced, six-sided dice;...

    Here is a version of the game of crap. First, you roll two well-balanced, six-sided dice; let x be the sum of the dice of the first roll. If x = 7, or x = 11 you win, otherwise you keep rolling until either you get x again, in which case you also win, or until you get a sum of 7 or 11 in which case you lose. Write a function that takes no input, and simulate the game...

  • Need it in C language C Arrays Chapter 6 268 6.20 (Game of Craps) Write a...

    Need it in C language C Arrays Chapter 6 268 6.20 (Game of Craps) Write a program that runs 1000 games of craps (without human interven- tion) and answers each of the following questions: a) How many games are won on the first roll, second roll, ..., twentieth roll and after the twentieth roll? b) How many games are lost on the first roll, second roll, ..., twentieth roll and after the twentieth roll? c) What are the chances of...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT