isreducible
Check Markov chain for reducibility
Syntax
Description
Examples
Input Arguments
Output Arguments
More About
Algorithms
The Markov chain
mc
is irreducible if every state is reachable from every other state in at most n – 1 steps, where n is the number of states (mc.NumStates
). This result is equivalent to Q = (I + Z)n – 1 containing all positive elements. I is the n-by-n identity matrix. The zero-pattern matrix of the transition matrix P (mc.P
) is Zij = I(Pij > 0), for all i,j [2]. To determine reducibility,isreducible
computes Q.By the Perron-Frobenius Theorem [2], irreducible Markov chains have unique stationary distributions. Unichains, which consist of a single recurrent class plus transient classes, also have unique stationary distributions (with zero probability mass in the transient classes). Reducible chains with multiple recurrent classes have stationary distributions that depend on the initial distribution.
References
[1] Gallager, R.G. Stochastic Processes: Theory for Applications. Cambridge, UK: Cambridge University Press, 2013.
[2] Horn, R., and C. R. Johnson. Matrix Analysis. Cambridge, UK: Cambridge University Press, 1985.
Version History
Introduced in R2017b