Given the Markov transition matrix
$$P=\left( \begin{array}{ccccccc} 0 & 0 & 1 & 0 & 0\\ 0 & 0.3 & 0 & 0 & 0.7\\ 1 & 0 & 0 & 0 & 0\\ 0.4 & 0 & 0 & 0.2 & 0.4\\ 0 & 0.7 & 0 & 0 & 0.3 \\ \end{array} \right)$$
write these two limits:
- $\lim \limits_{n\to \infty} P^n$
- $\lim \limits_{n\to \infty} \frac1n \sum_{k=1}^n P^k$
Is there a systematic way to calculate these matrixes without computing every single entry?
I added a aswer, but it is incomplete.
I have an idea. By rearranging rows (and columns to have the same chain, just states relabeled), we are getting two block matrices for recurrent classes and one row for transient state \begin{pmatrix} 0 & 1 & 0 & 0 & 0\\ 1 & 0 & 0 & 0 & 0 \\ 0.4 & 0 & 0.2 & 0 & 0.4 \\ 0 & 0 & 0 & 0.3 & 0.7 \\ 0 & 0 & 0 & 0.7 & 0.3 \\ \end{pmatrix} Now, the third row of $\lim\limits_{n \to \infty}P^n$ should be all zeros, because the state is transient, so the probability of finding chain in this state, given non-zero probability distribution of starting in this state is $0$. The Left-Upper block, due to periodicity, have no limit, it either \begin{pmatrix}0 & 1\\1 & 0\\\end{pmatrix} or \begin{pmatrix}1 & 0\\0 & 1\end{pmatrix}. Hence the $\lim$ itself doesn't exist. But, the second block matrix plays it good and have a $\lim$ \begin{pmatrix} \frac{1}{2} & \frac{1}{2} \\ \frac{1}{2} & \frac{1}{2} \end{pmatrix}
Thus, the second question make sense, as LU block could be averaged and the answer is \begin{pmatrix} \frac{1}{2} & \frac{1}{2} & 0 & 0 & 0\\ \frac{1}{2} & \frac{1}{2} & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & \frac{1}{2} & \frac{1}{2} \\ 0 & 0 & 0 & \frac{1}{2} & \frac{1}{2} \\ \end{pmatrix}