Enumeration of increasing sequences of 2 dice sums

In summary, the game is played with two players and two 6-sided dice. The player with the bigger sum of points wins. The first roller has an advantage, as they automatically win if the second player's dice sum equals their own. The game is played with a doubling cube that potentially increases the odds before any roll. There are 938 distinct sequences that can occur, all ending with a roll of 12. The objective is to calculate the number of sequences without using brute force. The rules state that if a player rolls a lower or equal number than their opponent, they lose. The game is played until one side loses, so a game can consist of multiple rolls. The player that rolls a double-six automatically wins the game. The
  • #1
Lenus
20
1
I tackle the following game analysis:

2 players, two 6-sided dice. Bigger sum of points win.
First roller has an advantage, as he wins even if 2nd player's dice sum equals to his.
As the game is played with doubling cube (potentially increasing the odds before any roll), I tried to enumerate the list of possible sequences.

For instance, if P1 rolls 12, the game ends (1 roll)
However, the. sequences like
2,3,6,12
4,5,8,9,12 etc are plausible.

I tried brutal force calculation and came up with 938 distinct sequences all of them ending with 12, obviously.

I am just trying to double check my calculation and learn at the same time, how to calculate the number of sequences without brutal force?

Any ideas?
 
Physics news on Phys.org
  • #2
What are the rules of this game? Is it first to throw a double-six that wins?
 
  • #3
Rules are: if you roll lower or equal number than the opponent, you lose.
Dice are rolled until one side loses, therefore one game can consist of several rolls.

Obviously, player rolling 66 wins automatically, because ties lose, and even 66 won't save the bet.

Example,

p1: 7 points,
p2: 8 points,
p1: 10 points,
p2: 10 points (or less)

P1 wins.

p1: 5 points,
p2: 7 points
p1: 12 points

P1 wins.

So, as long as your current roll is higher than the previous roll, the bet is still on.
If someone rolls 65 (11pts) then the opponent only has 1/36 chances to win the bet.

Game is played with doubling cube, which makes the strategy quite complicated, that's why I was trying to enumerate the possible number of sequences first.

Obviously the longest one would be: 2,3,4,5,6,7,8,9,10,11,12 (11 rolls)
 
  • #4
What's your objective? It seems to me that you have only 12 scenarios, based on the last throw. What went on before is not relevant.

P(n) = probability next player wins the game when the previous roll was n.

You know that P(11) = 1/36.

And, P(10) = 3/36 - (2/36)(1/36)

Why is it important to enumerate the sequences, when P(n) is the key to the betting?
 
  • #5
You see, the introduction of doubling cube (which is of arithmetical progression, btw) complicates the strategy.
The simplest examples of all are:

1. Should a first player double the stakes before first roll?
2. If he did so, and rolled 5 pts, should p2 redouble thus giving away a chance to be redoubled again, or simply try to roll more than 5 points without increasing the odds further?

By enumeration I was hoping to enlist all possible scenarios for various decisions.

And what went before sometimes could be relevant, as different cube values would have different takepoints, e.g. i could take a cube set to 3 to roll higher than 9, but pass the cube if the value of it was only 2.
 
  • #6
Lenus said:
You see, the introduction of doubling cube (which is of arithmetical progression, btw) complicates the strategy.
The simplest examples of all are:

1. Should a first player double the stakes before first roll?
2. If he did so, and rolled 5 pts, should p2 redouble thus giving away a chance to be redoubled again, or simply try to roll more than 5 points without increasing the odds further?

By enumeration I was hoping to enlist all possible scenarios for various decisions.

And what went before sometimes could be relevant, as different cube values would have different takepoints, e.g. i could take a cube set to 3 to roll higher than 9, but pass the cube if the value of it was only 2.

Please explain how this doubling cube works. Do the players have a choice when to double?
 
  • #7
Assuming the doubling is like Backgammon, I might have a solution if you are interested.
 
  • #8
Many thanks for your help.
Yes I would be interested in your solution for backgammon cube (2,4,8,16,32,64), especially when to issue an initial double / redouble.

In this game the cube looks like a die, so increments are just one point every time (1,2,3,4,5,6...)
Consequently, you have a 25% takepoint for the cube at 2, but only 16,7% for the cube at 3, and 10% for the cube at 4, as opposed to 25% for every cube decision with backgammon cube.

Now there are two variations of the game in question.
1. Player can double before his roll
2. Player can double before any roll

Of course, player must own the cube to use it, so if he had redoubled earlier, he loses this chance to use the cube until opponent uses it.
 
  • #9
Whether it's doubling or simply increasing thr stake may not make any difference. Here's the logic:

If you throw first, you should double for 7 or higher. Your opponent has two options: to accept a loss at the original stake or play on at double the stake.

If you threw 9-12 your opponent should accept the loss.

If you threw 8, your opponent should accept the double and play on (but will still, on average, lose close to the original stake - 0.89 by my calculation).

If you threw 7, your opponent should play on (and obviously redouble if they throw anything higher than 7). The expected win is about 0.35. Likewise, your strategy is then only to play on for an 8.

There's no point in doubling at anything lower than 7. Although it's quite close for throwing a 6.The way I solved it was to start at 11 and work backwards, calculating the expected gain at each value. For example. If you throw 7 and double:

Probability your opponent throws 9-12 = 0.28, they redouble and you lose. Total expected loss = -0.56

If they throw 8, they redouble, you play on at 4 points and lose 1.78 on average. The probability of an 8 is 0.14, so the expecetd loss is -0.25.

But, you win with probability of 0.58 for an expected gain of 1.16.

So, total average gain is 0.35.

An interesting problem.
 
  • #10
PeroK,

This is great. Thanks a lot for your time.
 
  • #11
I did have another thought about whether it's better for the player going first to double before they throw and it looks like it is. If you wait until you throw and then double for a 7 or higher, then that has an expected gain of about 0.22. But, if you double before you throw (and your opponent has to accept), your gain increases to 0.25.

So, that looks like a better strategy.

Also, if you throw a 2, it's better for your opponent to double again before they throw. But, if you throw at least a 3, then it isn't.

Although, I might like to redo all the calculations just to make sure!
 
  • #12
Wow, that's interesting. Thanks again.

Thats what was bothering me for weeks ))

Could I have a glance at your actual calculations when you re finished. Although I am not a mathematician, I love to see the method used in action.
 

Related to Enumeration of increasing sequences of 2 dice sums

1. What is the purpose of enumerating increasing sequences of 2 dice sums?

The purpose of enumerating increasing sequences of 2 dice sums is to analyze the frequency of each possible outcome when two dice are rolled together. This can be useful in various fields such as statistics, probability, and game theory.

2. How do you calculate the total number of possible outcomes for a pair of dice?

To calculate the total number of possible outcomes for a pair of dice, we use the formula 6 x 6 = 36. This is because each die has 6 possible numbers (1-6) and when two dice are rolled together, the total number of outcomes is the product of their individual possibilities.

3. What is the most common sum when two dice are rolled together?

The most common sum when two dice are rolled together is 7. This is because there are 6 possible ways to get a sum of 7 (1+6, 2+5, 3+4, 4+3, 5+2, 6+1), which is more than any other possible sum.

4. How many different ways can you get a sum of 9 when rolling two dice?

There are 4 different ways to get a sum of 9 when rolling two dice. These are (3+6, 4+5, 5+4, 6+3).

5. How does the probability of getting a specific sum change as the number of dice increases?

The probability of getting a specific sum changes as the number of dice increases because there are more possible outcomes. For example, when rolling three dice, the probability of getting a sum of 7 increases because there are more combinations that can result in this sum (1+2+4, 2+3+2, etc.)

Similar threads

  • Precalculus Mathematics Homework Help
2
Replies
53
Views
5K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
6K
Replies
7
Views
1K
Replies
11
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
7K
  • Calculus and Beyond Homework Help
Replies
1
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
9K
  • General Discussion
Replies
10
Views
4K
  • Math Proof Training and Practice
3
Replies
93
Views
6K
Back
Top