Celeb Glow
general | April 04, 2026

How to solve: Roll a die 3 times. What is probability of getting two sixes in a row? from a counting perspective

$\begingroup$

I understand one way to solve is as follows:

$2\cdot(\frac{5}{6})(\frac{1}{6})^2 + (\frac{1}{6})^3$

  • The first term captures the probability of rolling two sixes in the first and second or second and third terms
  • The second term captures the probability all three rolls as sixes

But I can't seem to solve it with counting in an elegant way.

I thought one way might be to set a denominator as:

${6\choose1}^3$

  • There are 6 possible values for every roll. We have three rolls. So by multiplication rule there are $6^3$ permutations.

Then the numerator gets a bit confusing.

We'd count

$666$
$66X$
$X66$

X here can be one of 5 values.

So it's $5*1 + 5*1 + 1$ as the numerator, again using multiplication law.

Is there a simpler way to get here? I feel like I've jumped through one too many hoops.

$\endgroup$ 4

2 Answers

$\begingroup$

Method 1

To get at least two consecutive sixes, the second roll must be six. Then you win if either the first or last roll is six as well. Using complement:

$$ \frac{1}{6}\cdot\left(1-\left(\frac{5}{6}\right)^{2}\right)=\frac{11}{216} $$

Method 2

Probability of getting consecutive sixes in the first two rolls is $\frac{1}{36}$, the same with consecutive sixes in the last two rolls. The probability of getting all sixes is $\frac{1}{216}$. Using Principle of Inclusion and Exclusion:

$$ \frac{1}{36}+\frac{1}{36}-\frac{1}{216}=\frac{11}{216} $$

Method 3

Say we have two sixes and one non six, there are $5$ possibilities for the non six. Notice that this non six must be the first or the third roll. If we have three sixes there is only one possibilities.

$$ \frac{2\times 5+1}{6^{3}}=\frac{11}{216} $$

Method 4

We will not get two same numbers in a row if both the first roll and third roll differ from the second roll, probability $\frac{5}{6}\times\frac{5}{6}$. The probability of getting two same numbers in a row is then the complement: $1-\frac{25}{36}$. The probability that the same numbers in a row is $6$ is then:

$$ \frac{1}{6}\cdot\left(1-\frac{25}{36}\right)=\frac{11}{216} $$

I believe there are other alternatives as well.

$\endgroup$ $\begingroup$

$$\underbrace{\frac{1}{6}\times \frac{1}{6}\times\frac{5}{6}}+\underbrace{\frac{5}{6}\times\frac{1}{6}\times\frac{1}{6}}+\underbrace{\frac{1}{6}\times\frac{1}{6}\times\frac{1}{6}}=\frac{11}{216}$$

$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy