Probability question: n-sided dice

  • Thread starter Thread starter Char. Limit
  • Start date Start date
  • Tags Tags
    Dice Probability
Click For Summary

Homework Help Overview

The discussion revolves around a probability problem involving two n-sided dice, where the goal is to determine the average number of rolls required for both dice to reach their maximum value, n-1. The problem is framed in the context of base-n numbers, where the outcomes of the dice rolls contribute to the digits of such numbers.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants explore various methods to analyze the problem, including the use of geometric distributions and Markov chains. Some suggest considering the states of the dice rolls and the probabilities of transitioning between these states. Others raise questions about how to derive closed forms for certain terms in the probability vectors.

Discussion Status

The discussion is active, with participants providing hints and suggestions for approaching the problem. Some have made progress in formulating transition matrices and discussing the implications of their findings, while others seek clarification on specific aspects of the mathematical reasoning involved.

Contextual Notes

Participants note the lack of formal training in probability for some, which may affect their understanding of the concepts being discussed. There is also mention of the original context of the problem arising from a game, indicating a potential informal approach to the mathematical exploration.

Char. Limit
Gold Member
Messages
1,222
Reaction score
23

Homework Statement


Two n-sided dice, with numbers ranging from 0 to n-1, are rolled. The first die represents the first digit of a base-n number, and the second represents the second digit of said base-n number. (In other words, the two dice rolls, if they are a and b, give the number a+b*n). Assuming that both dice are rolled concurrently, and each die is rolled until it rolls an n-1, at which point the other die continues to be rolled until it also rolls an n-1, what is the average number of rolls necessary until both dice reach their maximum value?


Homework Equations


I... don't really know.


The Attempt at a Solution



I've never taken a probability class, so I have no idea what to do here. The idea came to me while I was playing Dungeons and Dragons, and the original idea involved 10-sided dice, but I thought the general result might be more fun to see. Could someone help me with this problem, tell me what I need to do to solve it?
 
Physics news on Phys.org
Hi Char. Limit! :smile:

(what does the scoring have to do with it? :confused:)

Start with P(> k rolls needed) = P(k rolls insufficient) :wink:
 
Hint: If you need k rolls, that means you had k-1 failures before a success.
 
Char. Limit said:

Homework Statement


Two n-sided dice, with numbers ranging from 0 to n-1, are rolled. The first die represents the first digit of a base-n number, and the second represents the second digit of said base-n number. (In other words, the two dice rolls, if they are a and b, give the number a+b*n). Assuming that both dice are rolled concurrently, and each die is rolled until it rolls an n-1, at which point the other die continues to be rolled until it also rolls an n-1, what is the average number of rolls necessary until both dice reach their maximum value?


Homework Equations


I... don't really know.


The Attempt at a Solution



I've never taken a probability class, so I have no idea what to do here. The idea came to me while I was playing Dungeons and Dragons, and the original idea involved 10-sided dice, but I thought the general result might be more fun to see. Could someone help me with this problem, tell me what I need to do to solve it?

You want the _Geometric Distribution_ with success probability p = 1/n per toss. See, eg.,
http://mdm4u1.wetpaint.com/page/7.3+Geometric+Distribution for a simple introduction with worked examples.

RGV
 
Last edited by a moderator:
Brute force approach: you have four states:

* Neither die have attained maximum
* One die has attained maximum
* Both dice have attained maximum
* You were done prior to this step

What state are you in after N dice rolls? You can write down a vector v(N) that encapsulates the probability of each case. e.g.
v(0) = \left[ \begin{array}{} 1 \\ 0 \\ 0 \\ 0 \end{array} \right]

There is a matrix A such that A v(N) = v(N+1). Its entries are the probabilities of transitioning from one state to another at each step. (the probability of transitioning from the third state to the third state is 1)

So you can grind through linear algebra to get an explicit formula for v(N), and then you can sum the series that defines the average!

(how to grind through linear algebra? Either compute a matrix exponential (diagonalize!) or solve a difference equation or solve a linear recurrence)
 
All right, after a bit of work, I found A_n, where n is the number of sides on the dice. I got the following:

A_n = \left[ \begin{array}{cccc}<br /> \frac{(n-1)^2}{n^2} &amp; 0 &amp; 0 &amp; 0 \\<br /> \frac{2n-2}{n^2} &amp; \frac{n-1}{n} &amp; 0 &amp; 0 \\<br /> \frac{1}{n^2} &amp; \frac{1}{n} &amp; 0 &amp; 0 \\<br /> 0 &amp; 0 &amp; 1 &amp; 1 \end{array} \right]

So we assumed at the start that A_n * v(x) = v(x+1), right? Umm... I've found the first term of v(x) in closed form, but I'm not sure how to handle the others. I mean, I get that if v(N) = [x1, x2, x3, x4]T, then

v(N+1) = \left[ \begin{array}{c}<br /> \frac{(n-1)^2}{n^2} x_1 \\<br /> \frac{2n-2}{n^2} x_1 + \frac{n-1}{n} x_2 \\<br /> \frac{1}{n^2} x_1 + \frac{1}{n} x_2 \\<br /> x_3 + x_4 \end{array} \right]

But how do I find a closed form for the second, third, and fourth terms there?
 
Char. Limit said:
But how do I find a closed form for the second, third, and fourth terms there?

Well, if v(N+1) = A_n v(N), then v(N) = A_^N v(0).
 
Last edited by a moderator:
Hurkyl said:
Well, if v(N+1) = A_n v(N), then v(N) = A_^N v(0)[/itex].

Of course! Thanks a ton, I don't know how I missed that. All right, I have a closed form for v now. It's below:

v_n(N) = \left[ \begin{array}{c}<br /> \left(\frac{n-1}{n}\right)^{2N} \\<br /> 2 \left(\frac{n-1}{n}\right)^N - 2 \left(\frac{n-1}{n}\right)^{2N} \\<br /> 2 \frac{(n-1)^{N-1}}{n^N} + (1 - 2n) \frac{(n-1)^{2N-2}}{n^{2N}} \\<br /> \frac{\left(n^N - n^{N+1} + n (n-1)^N \right)^2}{(n-1)^2 n^{2N}} \end{array} \right]

Now, I assume I just need the third term of this vector, right? And then I'd, what, run a sum over all N?
 
Char. Limit said:
Now, I assume I just need the third term of this vector, right? And then I'd, what, run a sum over all N?
Right, that's the plan. Well, you want to average, so you would sum the third term of N v(N).

We expect summing the third term over all N to result in 1, I think.
 
  • #10
Hurkyl said:
Right, that's the plan. Well, you want to average, so you would sum the third term of N v(N).

We expect summing the third term over all N to result in 1, I think.

Thanks a ton! I got the answer I was looking for. You were a huge help!
 
  • #11
Char. Limit said:

Homework Statement


Two n-sided dice, with numbers ranging from 0 to n-1, are rolled. The first die represents the first digit of a base-n number, and the second represents the second digit of said base-n number. (In other words, the two dice rolls, if they are a and b, give the number a+b*n). Assuming that both dice are rolled concurrently, and each die is rolled until it rolls an n-1, at which point the other die continues to be rolled until it also rolls an n-1, what is the average number of rolls necessary until both dice reach their maximum value?


Homework Equations


I... don't really know.


The Attempt at a Solution



I've never taken a probability class, so I have no idea what to do here. The idea came to me while I was playing Dungeons and Dragons, and the original idea involved 10-sided dice, but I thought the general result might be more fun to see. Could someone help me with this problem, tell me what I need to do to solve it?

This is a simple 3-state Markov chain problem. The states are the number of (n-1)'s obtained to date, so they are 0, 1 or 2. The system starts in state 0, and you want to know the average number of transitions ("tosses") until you first reach state 2. The 1-step (i.e., 1-toss) transition probabilities are P{0->0} = (1-1/n)^2, P{0->1} = 2/n, P{0->2} = 1/n^2, P{1->0} = 0, P{1->1} = 1-1/n, P{1->2} = 1/n, and P{2->2} = 1 (i.e., '2' is an absorbing state). These are put into a one-step transition probability matrix P = [[(1-1/n)^2, 2/n,1/n^2],[0,1-1/n,1/n],[0,0,1]], whose ROWS sum to 1. (Note: 99.9% of Markov chain books and articles use the convention that rows sum to 1, but in some primarily-Asian journals the opposite convention of columns summing to 1 is sometimes used.) Of course, my P is the transpose of the 3x3 northwest 3x3 submatrix of your A.

If all you want are expected numbers of tosses, you don't need matrix powers (although that would be one way to do it). In fact, if x = expected number of transitions to reach state 3, starting from state i = 0 or i = 1 we have: x[0] = 1 + P[0,0]*x[0] + P[0,1]*x[1] and x[1] = 1 + P[1,0]*x[0] + P[1,1]*x[1] = 1 + P[1,1]*x[1]. Solve these to get x[0].

For more on this, see
http://www.dartmouth.edu/~chance/teaching_aids/books_articles/probability_book/Chapter11.pdf , especially section 11.5.

RGV
 

Similar threads

  • · Replies 53 ·
2
Replies
53
Views
10K
Replies
2
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 11 ·
Replies
11
Views
4K
Replies
2
Views
3K
  • · Replies 14 ·
Replies
14
Views
5K
Replies
11
Views
3K
  • · Replies 12 ·
Replies
12
Views
3K
Replies
1
Views
3K