Edit: I should probably say the motivation: I was interested in modeling the probability of winning a heads-up poker match if the players will play until one player goes bust. Because the game is zero sum (given that either player is the big blind with equal probability), the assumptions given in my answer show that the probability of winning is indeed just proportional to stack size.
This may be a duplicate, but I've done some searching and I can't find exactly this problem setting, probably due to not knowing the right terminology for how to refer to the transition matrix.
I'm considering absorbing random walks $\{X_t\}$ which have symmetric transition probabilities inside a window of size $k$. For example, on $\{0, 1, 2, \dots, 100\}$, with $k=3$ if $X_t = 5$ \begin{align*} P[X_{t+1} = 4] &= P[X_{t+1} = 6]\\ P[X_{t+1} = 3] &= P[X_{t+1} = 7]\\ P[X_{t+1} = 2] &= P[X_{t+1} = 8]\\ \end{align*}
When the walk is within $k$ of the endpoint, the allowable transitions are truncated on both sides, e.g. if $X_t = 1$, $P[X_t = 3] = 0$.
I wanted to figure out the probability of the walk being absorbed at the upper endpoint, so I did some numerical experiments with walks on the integers from 0-100. I calculated $T^n$ for the transition matrix $T$ and a large $n$. I then looked at $(T^n)_{i, 100}$ to see the probability of being absorbed at 100. It appears that the value is always equal to $i/100$, regardless of how I set the transition distribution or window-size.
The transition matrix for a walk on the integers in $[0, N]$ has the following properties (Edit: This list is missing an important assumption so the conjecture is not true):
- $T$ is (row) stochastic
- $T$ is a band matrix with upper and lower band size $k$
- $T_{i, j} = 0$ if $|i - j| > \max (i, N - i)$
- $T_{i,i + r} = T_{i, i - r}$ (this is the main property I don't know the name of)
- $T_{0, 0} = T_{1, 1} = 1$
I would like a proof or counterexample of the following statement: \begin{equation*} \lim\limits_{n \to \infty} (T^n)_{i, N} = i/N \end{equation*}
If the statement above is true, is it still true if the transition distributions are no longer left-right symmetric, but it's still the case that $E[X_{t + 1}] = X_t$?
As soon as I got around to posting my initial solution, I thought of a solution which only relies on elementary probability, so I think the linear algebra point of view isn't very helpful for this problem.
Two assumptions:
Using assumption 2: \begin{align*} \lim\limits_{t\to\infty} E[X_t | X_0 = i] &= X_0 + \sum\limits_{t=0}^\infty E[X_t - X_{t - 1} | X_0 = i]\\ &= i\\ \end{align*}
Define $A = \lim\limits_{t \to \infty} X_t$. If you exchange the limit and expectation above (which I think it's easy to show you can), this shows that $E[A | X_0 = i] = i$.
But since $A \in \{0, N\}$ by assumption 1, this implies \begin{align*} E[ A | X_0 = i] &= N P(A = N | X_0 = i)\\ i &= N P(A = N | X_0 = i)\\ \frac{i}{N} &= P(A = N | X_0 = i)\\ \end{align*}