This D20 has nineteen of its sides labelled as {1}, and the last one labelled as {20}. If this die is rolled 8 times, there are 25,600,000,000 possible different outcomes. Please confirm, prove or show that there are 25,599,203,481 out of all possible cases, which have at least two {1} rolled next to each other.
Two or more {20} do not satisfy this. For example, the rolls {1,20,1,20,20,20,1,20} is a false instance, because there are no two consecutive rolls with {1} in this string.
The method that I used to get this answer was not brute forced, but I am wanting to compare my method with maybe a simpler method that may exist.
I am only an amateur mathematician, but also help people in doing the math of their board game designs, and while this math problem seems like a fringe question, I have constructed it as a fringe case of a project that I have been working on.
Here is a way to proceed. I will replace the outcomes $1$ and $20$ by $1$ and $0$. We consider the following Markov chain with states $0,1,2$:
which counts the consecutive ones.
Let $p=19/20$ be the probability to "read" an one, and $q=1-p=1/20$ the opposite probability. The transition matrix for this chain is $$ A = \begin{bmatrix} q & p & 0\\ q & 0 & p\\ 0 & 0 & 1 \end{bmatrix} \ . $$ Then we can compute easily (with a computer of course) the value of $A^8$.
So the probability to get from $0$ to $2$ in eight steps is that entry
25599203481/25600000000.