Question

The dice game craps is played as follows. The player throws two dice and if the...

The dice game craps is played as follows. The player throws two dice and if the sum is seven or eleven, the player wins. If the sum is two, three, or twelve the player loses. If the sum is anything else, the player continues throwing until either that same number is thrown again (in which case the player wins) or the player throws seven (in which case the player loses). Calculate the probability the player wins within 0.01 (hint - simulate this in Excel).

0 0
Add a comment Improve this question Transcribed image text
Answer #1
 We start by finding the probability of winning at the first roll, that is obtaining 7 or 11: Pr(7) 1 6 6/36 = 1/6 probability of getting 7 2 5 3 4 (use fractions rather than decimals) 4 3 5 2 6 1 Pr(11) 5 6 2/36 = 1/18 probability of getting 11 6 5 So the probability of winning on first roll = 1/6 + 1/18 = 2/9 Now we find the probability of losing at the first roll (i.e. getting 2, 3, 12): Pr(2) Pr(3) Pr(12) 1 1 = 1/36 2 1 = 2/36 6 6 = 1/36 1 2 The probability of losing on first roll = 1/36 + 2/36 + 1/36 = 1/9 Then the probability of making a point will be 1 - 2/9 - 1/9 = 2/3 The individual probabilities for the numbers 4, 5, 6, 8, 9, 10 are shown below. Pr(4)(3/36 = 1/12) Pr(5)(4/36 = 1/9) Pr(6)( = 5/36) 3 1 4 1 5 1 2 2 3 2 4 2 1 3 2 3 3 3 1 4 2 4 1 5 Pr(8)( = 5/36) Pr(9)(4/36 = 1/9) Pr(10) (3/36 = 1/12) 6 2 6 3 6 4 5 3 5 4 5 5 4 4 4 5 4 6 3 5 3 6 2 6 Now ADD these probabilities. P(4u5u6u8u9u10) = 3/36 + 4/36 + 5/36 + 5/36 + 4/36 + 3/36 = 24/36 = 2/3 (as we have already shown above) This is the probability of making a point. We now consider the individual probabilities depending on which 'point' has been obtained. (E.G., probability of getting 4 as the 'point' = 1/12) I shall work through this problem in detail and the result can then be applied to the various 'point' probabilities. The probability of gaining 4 as the 'point' = 1/12 " getting 7 = 1/6 " game continuing = 1 - 1/12 - 1/6 = 3/4 So the probability of winning in this case is (1/12) + (3/4)(1/12) + (3/4)^2(1/12) + ..... to infinity = (1/12)[1 + (3/4) + (3/4)^2 + ..... to infinity] = (1/12)[1/(1 - 3/4)] = (1/12)(4) = 1/3 So the total probability of gaining the 'point' 4 and then winning = (1/12) (1/3) This will be the same probability if the initial 'point' was 10. If the 'point' was 5 or 9 the initial probability of 5 or 9 is 1/9 and the probability of continuing thereafter is 1 - 1/9 - 1/6 = 13/18 and by the same argument as above the probability of winning is (1/9)[1/(1 - 13/18)] = (1/9)(18/5) = 2/5 and the total probability is (1/9)(2/5) If the 'point' is 6 or 8 the probability of continuing is 1 - 5/36 - 1/6 = 25/36 and the probability of winning is (5/36)[1/(1 - 25/36)] = (5/36)(36/11) = 5/11 and the total probability is (5/36)(5/11) We can now find the overall total probability of winning = 2/9 + 2[(1/12)(1/3) + (1/9)(2/5) + (5/36)(5/11)] = 244/495 = 0.493 

So the Answer is .493

Add a comment
Know the answer?
Add Answer to:
The dice game craps is played as follows. The player throws two dice and if the...
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
  • 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...

  • 2. "Craps" is a game played by rolling two fair dice. To play one round of...

    2. "Craps" is a game played by rolling two fair dice. To play one round of this game, the player rolls the dice and the outcome is determined by the following rules: If the total number of dots is 7 or 11 (a "natural"), then the player wins. If the total number of dots is 2, 3, or 12 C'craps"), then the player loses. If the total number of dots is 4, 5, 6,8,9, or 10, then this number is...

  • 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...

  • C# Code: Write the code that simulates the gambling game of craps. To play the game,...

    C# Code: Write the code that simulates the gambling game of craps. To play the game, a player rolls a pair of dice (2 die). After the dice come to rest, the sum of the faces of the 2 die is calculated. If the sum is 7 or 11 on the first throw, the player wins and the game is over. If the sum is 2, 3, or 12 on the first throw, the player loses and the game is...

  • 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...

  • A dice game is played with two distinct 12 sided dice. It costs $3 to roll...

    A dice game is played with two distinct 12 sided dice. It costs $3 to roll the pair of dice one time. The payout scheme is as follows 1. Sum of 13 pays $10 Sum of 11 or 15 pays $6 Sum of 7, 9, 17, or 19 pays $3 Any other roll doesn't pay. What is the expected gain/loss after playing the game one time? A "fair" game is one in which the expected gain/loss after playing once is...

  • Please i need helpe with this JAVA code. Write a Java program simulates the dice game...

    Please i need helpe with this JAVA code. Write a Java program simulates the dice game called GAMECrap. For this project, assume that the game is being played between two players, and that the rules are as follows: Problem Statement One of the players goes first. That player announces the size of the bet, and rolls the dice. If the player rolls a 7 or 11, it is called a natural. The player who rolled the dice wins. 2, 3...

  • Problem 9 A single game of craps (a dice game) consists of at most two rolls...

    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...

  • In its most basic form, the game of craps is played observes the sum of the...

    In its most basic form, the game of craps is played observes the sum of the two sides turned up. If this sum is 7 or 11, the player wins immediately 2, 3, or 12, the player loses immediately Otherwise, if this sum is any other number (4, 5, 6, 8, 9, or 10), that number becomes the player's "point. as follows. A player rolls two dice and Build an Excel model for the game. The part of the model...

  • 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,...

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