Discussion 13B

Markov Chains

A Markov chain is irreducible when you can go from any state to any other state. 
In general directed graphs, this is called strongly connected. A set of vertices that is strongly connected is a strongly connected component. A directed graph can be decomposed into what’s called a SCC metagraph, which is a graph where each vertex represents a strongly connected component in the original graph.
This is why a Markov chain that doesn’t satisfy the above property is called reducible. 

  • If a Markov chain is finite and irreducible, then there exists a unique stationary distribution.

A Markov chain is periodic with period dd if the greatest common divisor of all tour lengths is dd.

  • If a Markov chain is finite, irreducible, and aperiodic, then the distribution of XnX_n approaches the stationary distribution as nn increases. 

Absorption Probabilities

What’s the probability of reaching state AA before state BB?
Define α(i)\alpha(i) as the probability of reaching AA before BB if you start at ii. Then α(i)=jPi,jα(j)\alpha(i) = \sum_j P_{i,j} \alpha(j).
This can be extended to deal with sets of states A\mathcal{A} and B\mathcal{B}.

Hitting Times

What’s the expected number of transitions required to reach state AA?
Define β(i)\beta(i) as the expected number of transitions required to reach AA if you start at ii. Then β(i)=jPi,j(1+β(j))=1+jPi,jβ(j)\beta(i) = \sum_j P_{i,j} (1 + \beta(j)) = 1 + \sum_j P_{i,j} \beta(j).
This can be extended to deal with a set of states A\mathcal{A}.