I was hoping for some help with this question:
Using a fair 6 sided dice If you are given a board which goes in circles, it has 20 steps and you have a starting position. Each roll of the die moves you the amount of positions shown on the die forward, but as it is a circle if you near the end and you roll past the 20th position then you would just be back at the start, but you overshoot based on your roll.
So for example you are on the 18th step and you roll a 4, you would be on the 2nd square again.
How would you calculate the exact probability of landing on the say 15th square after you have already done a four full laps of the entire board? Not too sure how to use markov chains in this context especially since if you roll a number near the end of the board you may not land exactly on go and you may overshoot it.
Let's say that we want the probability of doing exactly 4 laps and then landing on the 15th square after $n$ rolls of the die.
Note that the number of steps you have moved forward is simply the total of all $n$ die rolls. In other words, if $X_i$ denotes the result of the $i$th roll of the die, then we wan the probability that $$ X_1 + X_2 + \cdots + X_n = 4 \cdot 20 + 14 = 94. $$ Each $X_i$ is an i.i.d. uniform variable over $\{1,2,\dots,6\}$. If we write $Y = X_1 + X_2 + \cdots + X_n$, where looking for the probability that $Y = y = 94$. If you're interested in an exact formula for this probability, see this paper, for instance.
For large $n$, however, this can be nicely approximated using the central limit theorem. In particular, each $X_i$ has mean $7/2$ and variance $\frac{6^2 - 1}{12} = \frac{35}{12}$. With that established, the probability that $Y = y$ is approximately equal to $$ P \approx \Pr \left(\frac{y - \frac 12 - \frac{7n}{2}}{\sqrt{\frac{35n}{12}}} \leq Z \leq \frac{y - \frac 12 - \frac{7n}{2}}{\sqrt{\frac{35n}{12}}}\right), $$ where $Z$ is normally distributed with mean $0$ and standard deviation $1$.