Question

In: Statistics and Probability

Suppose two players play a traditional Russian Roulettes game. One bullet is put into a 6-revolver...

Suppose two players play a traditional Russian Roulettes game. One bullet is put into a 6-revolver and the barrel is randomly spun so that there is equal chance for each chamber to be under the hammer. Two players take turns to pull the trigger against themselves until one kills him or herself. Under such rules, would you rather go first or second? What’s the probability of survival to go first?

b) Now the rule is changed, the barrel gets spun after each shot. Now would you rather go first or second? What’s the probability of survival for each choice?

c) Suppose two bullets instead of one are randomly put into the chamber. Your opponent went first and survived the shot. Now you are given the chance to spin the barrel. Should you do it or not?


d) What if the two bullets are consecutively put into the chamber and the barrel is spun (i.e. two bullets are next to each other), should you spin again after your opponent survived the first round?

Solutions

Expert Solution

a) One bullet is put into a 6-revolver and the barrel is randomly spun.Two players take turns to pull the trigger against themselves until one kills him or herself. Under such rules, would you rather go first or second? What’s the probability of survival to go first?

The problem can be solved by calculating the probability of survival for the choices.

First, consider the odds of survival if the cylinder is spun. The cylinder is equally likely to stop at any of the six chambers. One of the chambers contains the bullet and is unsafe. The other five chambers are empty and you would survive. Consequently, the probability of survival is 5/6, or about 83 percent.

Next, consider the odds if the cylinder is not spun. As the trigger was already pulled, there are five possible chambers remaining. Additionally, one of these chambers contains the bullet. That leaves four empty or safe chambers out of five. Thus the probability of survival is 4/5, or 80 percent.

Next As the trigger was already pulled twice, there are four possible chambers remaining. Additionally, one of these chambers contains the bullet. That leaves three empty or safe chambers out of four. Thus the probability of survival is 3/4, or 75 percent.

Next time the probability of survival will be 2/3 or 66.66 percent.

5th shot will have survival probability of 1/2 or 50 percent.

6th will have survival probability 0 percent.

In case of  to pull the trigger against themselves until one kills him or herself. The best choice is to have higher survival probability.

If you start first, survival Probability for each shot you will have 3 shots to survive : 83\75\50

If you start second, survival Probability for each shot you will have 3 shots to survive : 80\66\0.

I would go first as it has higher probability of survival.

b) Now the rule is changed, the barrel gets spun after each shot. Now would you rather go first or second? What’s the probability of survival for each choice?

As cylinder is spun. The cylinder is equally likely to stop at any of the six chambers. One of the chambers contains the bullet and is unsafe. The other five chambers are empty and you would survive. Consequently, the probability of survival is 5/6, or about 83 percent.

Next, consider the odds if the cylinder is spun. It brings us back to same condition that is it can stop at any of 6 chambers, one of the chamber has bullet. survival probability would be 5/6 again.

Each time the survival probability is same.

Going first or second doesn't matter.

c) Suppose two bullets instead of one are randomly put into the chamber. Your opponent went first and survived the shot. Now you are given the chance to spin the barrel. Should you do it or not?

First shot, the cylinder is equally likely to stop in any of the six chambers, four of which are empty. Consequently, the probability of survival is 4/6, or about 67 percent.

first shot went by and nothing happened. we have option to spin or not lets check survival probability.

Next, consider the odds if the cylinder is not spun. This situation again requires careful accounting. We know the gun is loaded with two bullets so it has two loaded chambers (let’s label them 4 and 6) and four empty chambers (let’s label these 1, 2, 3, and 5). When the game starts, the trigger is pulled and nothing happens, so we know the cylinder started on an empty chamber. Then, the cylinder advances one chamber forward, meaning the cylinder must now be in one of the positions 2, 3, 4, or 6. If you don’t spin, you will survive in two of these four cases (4 and 6 are loaded). Therefore, not spinning the gun has a probability of survival of 2/4, or 50 percent.

if we spin we have survival probability of 67 percent.

In conclusion, the best choice in the non-adjacent case is to spin.

d) What if the two bullets are consecutively put into the chamber and the barrel is spun (i.e. two bullets are next to each other), should you spin again after your opponent survived the first round?

First, the odds when the cylinder is spun. The cylinder is equally likely to stop at at any of the six chambers. Two of the chambers contain bullets and are unsafe. The other four chambers are empty and you would survive. Consequently, the probability of survival is 4/6, or about 67 percent.

Next, consider the odds if the cylinder is not spun. This situation is a bit trickier so careful accounting is helpful. We know the gun is loaded with two bullets so it has two loaded chambers (let’s label them 5 and 6) and four empty chambers (let’s label these 1, 2, 3, and 4). When the game starts, the trigger is pulled and nothing happens, so we know the cylinder started on an empty chamber. Then, the cylinder advances one chamber forward, meaning the cylinder must now be in one of the positions 2, 3, 4, or 5. If you don’t spin, you will survive in three of these four positions (all but 5). Therefore, not spinning the gun has a probability of survival of 3/4, or 75 percent.

It is now better not to spin, unlike the single bullet case.


Related Solutions

Two players A and B play a dice game with a 6-face fair dice. Player A...
Two players A and B play a dice game with a 6-face fair dice. Player A is only allowed to roll the dice once. Player B is allowed to roll the dice maximally twice (that is, Player B can decide whether or not she or he would roll the dice again after seeing the value of the first roll). If the player with the larger final value of the dice wins, what is the maximal probability for Player B to...
Two players A and B play a game of dice . They roll a pair of...
Two players A and B play a game of dice . They roll a pair of dice alternately . The player who rolls 7 first wins . If A starts then find the probability of B winning the game ?
Design and implement a Python program which will allow two players to play the game of...
Design and implement a Python program which will allow two players to play the game of Tic-Tac-Toe in a 4x4 grid! X | O | X | O -------------- O | O | X | O -------------- X | X | O | X -------------- X | X | O | X The rules for this game is the same as the classic, 3x3, game – Each cell can hold one of the following three strings: "X", "O", or "...
Two players play a game where they start with a row of n piles of varied...
Two players play a game where they start with a row of n piles of varied amounts of money. The players take turns and in each turn a player can pocket either the money in the first pile or the last pile in the row of piles that remains. Design an efficient algorithm (using dynamic programming), which on any given sequence of amounts, determines the maximum amount of money that player 1 can win. If n is even, prove that...
I am using C++ Write a program that allows two players to play a game of...
I am using C++ Write a program that allows two players to play a game of tic-tac-toe. Use a two-dimensional char array with three rows and three columns as the game board. Each element of the array should be initialized with an asterisk (*). The program should run a loop that does the following: Displays the contents of the board array. Allows player 1 to select a location on the board for an X. The program should ask the user...
Write a program that allows two players to play a game of tic-tac-toe. Use a two-dimensional...
Write a program that allows two players to play a game of tic-tac-toe. Use a two-dimensional char array with three rows and three columns as the game board. Each element of the array should be initialized with an asterisk (*). The program should run a loop that does the following: Displays the contents of the board array. Allows player 1 to select a location on the board for an X. The program should ask the user to enter the row...
PYTHON: Write the code to play a card game called Battle. Two players each have a...
PYTHON: Write the code to play a card game called Battle. Two players each have a card deck consisting of the following cards: two, three, four, … jack, queen, king, ace, in increasing order. One card deck could be represented by a list such as: cardsPlayer1 = ["two", "three", "four"..."jack", "queen", "king", "ace"] Both players have a card randomly selected. When a card is selected, remove it from the player’s deck. The player that plays the higher of the two...
This is a sequential game with two players A and B. In this game a dime...
This is a sequential game with two players A and B. In this game a dime is put on the table. A can take it or pass. If A takes a dime, the game ends; if A passes, then B can take 2 dimes or pass; if B takes 2 dimes, the game ends; if B passes, then A can take 3 dimes or pass; and so on until a choice of a dollar. This process is shown in the...
Consider the Stage Game below, and consider the repeated game where players play twice (T =...
Consider the Stage Game below, and consider the repeated game where players play twice (T = 2). Payoffs for each agent are simply period one plus period two payoffs. L C R T 6,6 0,7 1,2 M 7,0 1,1 2,0 B 2,1 0,1 3,3 (a) Do any strategies dominate any other? (b) What are the two NE of the Stage Game? What is the difference between the two? (c) Call the TL strategy profile (1 plays T, 2 plays L)...
Two players play a rock-paper-scissors game. The losing player will give $1 to the winning player....
Two players play a rock-paper-scissors game. The losing player will give $1 to the winning player. If it is a draw, no payment is made. The payoff to a player is the amount of money (s)he gets. Represent the situation in a matrix form. Find all the Nash equilibria.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT