A two-state Markov chain uses the row-stochastic transition matrix
\(T=\begin{pmatrix}0.75&0.25\\0.25&0.75\end{pmatrix}.\)
The initial row state is \(\mathbf p_0=(1,0)\), and \(\mathbf p_{n+1}=\mathbf p_nT\).
a) Find \(\mathbf p_1,\mathbf p_2,\mathbf p_3\).
b) Let \(d_n=p_{n,A}-p_{n,B}\). Derive a recurrence for \(d_{n+1}\) in terms of \(d_n\), and then give a formula for \(d_n\).
c) Use part b to prove the limiting state as \(n\to\infty\).
d) Verify directly that the limiting state is stationary.
Hints
- Compute the first states by row-vector multiplication.
- Subtract the two component update equations to obtain a recurrence for their difference.
- Combine the limiting difference with the fact that the two probabilities always sum to \(1\).
- A stationary state is unchanged by multiplication by \(T\).
Solution
1. \(\mathbf p_1=(0.75,0.25)\), \(\mathbf p_2=(0.625,0.375)\), and \(\mathbf p_3=(0.5625,0.4375)\).
2. If \(\mathbf p_n=(a_n,b_n)\), then \(d_n=a_n-b_n\). The update gives
\(d_{n+1}=(0.75a_n+0.25b_n)-(0.25a_n+0.75b_n)=0.5(a_n-b_n)=0.5d_n\).
3. Since \(d_0=1\), \(d_n=(0.5)^n\to0\). Also \(a_n+b_n=1\), so \(a_n=\frac{1+d_n}{2}\to\frac12\) and \(b_n=\frac{1-d_n}{2}\to\frac12\).
4. Finally, \((0.5,0.5)T=(0.5,0.5)\), so the limiting state is stationary.
Answer
a) \(\mathbf p_1=(0.75,0.25)\), \(\mathbf p_2=(0.625,0.375)\), \(\mathbf p_3=(0.5625,0.4375)\)
b) \(d_{n+1}=0.5d_n\), so \(d_n=(0.5)^n\)
c) \(\mathbf p_n\to(0.5,0.5)\)
d) \((0.5,0.5)T=(0.5,0.5)\)