Throwing dice twice, with unlike probability of occourence?

1.3k Views Asked by At

A loaded dice has the property that when the dice is thrown the probability of showing a given number is proportional to the number. For example $2$ is twice as likely to show up compared to $1$ and $3$ is thrice as likely to show up compared to $1$, And so on. What is the probability that when the dice is thrown twice the sum is $4$ or less. $$ P = \frac 36 \cdot \frac 16 +\frac 16 \cdot \frac 36 + \frac 26 \cdot \frac 26 + \frac 16 \cdot \frac 26 + \frac 26 \cdot \frac 16 + \frac 16 \cdot \frac 16 = \frac{15}{36} $$ Where I am getting it wrong?

2

There are 2 best solutions below

3
On BEST ANSWER

Since $1+2+\cdots+6=21$, the probabilities of $1,2,3,4,5,6$ in $1$ toss are respectively $\frac{1}{21}$, $\frac{2}{21}$, and so on up to $\frac{6}{21}$.

The probability of a sum of $2$ in $2$ throws is $\frac{1}{21}\cdot\frac{1}{21}$.

The probability of a sum of $3$ is $2\cdot \frac{1}{21}\cdot\frac{2}{21}$.

The probability of a sum of $4$ is $2\cdot \frac{1}{21}\cdot\frac{3}{21}+\frac{2}{21}\cdot\frac{2}{21}$.

Add up.

Remark: Your numerator, and therefore the basic analysis, was right. The denominators were not.

0
On

This is the sum of combinations for 4 or less. When a sum to a number with elements that arent bounded (like in this case because 4 is a number into the values of the dice,i.e., $4\leq 6\ or\ X\leq D$. For others sums where is a bound on the elements of composition see this)

The sums on pairs will go from $(x-1)+1$ to $(\lfloor\frac{x}{2}\rfloor+\lceil\frac{x}{2}\rceil)$ and for any pair the probability will be

$$p_j=\frac{1+j}{\frac{(D+1)D}{2}}\frac{x{-}1{-}j}{\frac{(D+1)D}{2}}2^{1-\delta_{(j+1,x/2)}}=\frac{4(j+1)(x-j-1)}{(D+1)^2D^2}2^{1-\delta_{(j+1,x/2)}}$$

The exponent is a way to track the multiplicity of pairs that can be 2 or 1, i.e., you can sum 4 as 3+1 or 1+3 but you only have one 2+2 combination (the $\delta_{(j+1,x/2)}$ of exponent value 0 or 1, it is the Kronecker delta function that compare the vale of $j+1$ and $x/2$). D is the number of sides of the dice. The denominator is the sum of values from 1 to D.

This double sum over $p_j$ give the probabilities with your conditions

$$P(x\leq X)=\sum_{x=2}^{X}\sum_{j=0}^{\lfloor\frac{x}{2}\rfloor}\frac{p_j}{x-1}; only\ valid\ for\ X\leq D$$

The denominator $x{-}1$ is the total of different ordered pairs that sum x. This come from $\binom{n-1}{k-1}$ that is the amount of combinations to sum n with groups of k (where the k elements are naturals excluding zero and are not bounded), for pairs this is just n-1 because if k=2 then the denominator on the binomial coefficient is 1.

I know that this is a complicated (unnecessary complex) way to resolve the question... but I like to leave any answer on symbolic terms instead of just brute-force/numeric solutions.

A more interesting thing (and complex) can be the same case but for any sum on the dice (not just where $X\leq D$) and any number of dice (not just sum of pairs). I hope this maybe interesting/funny for you.

P.S.: of course an alternative to Kronecker delta is to make the full sum to x instead of $\lfloor\frac{x}{2}\rfloor$ and quit the factor 2.