Starting from 0, each time one rolls 2 fair dice and moves forward by $k$ steps, $k$ is the sum of the two dice, what is the probability of ending at $N$? as $N$ towards infinity.
I guess this can be shown as recursion, depending on the last roll (sum $k_n = 2, 3, ... 12$), $$P(N) = \sum_{k_n = 2}^{12}P(N-k_n)P(k_n)$$ and take limits on both sides to solve for $P(N)$ but seems not right...