[Math] Spectral gap of mixture of Markov chains

graph theorymarkov chainsprobabilityspectral-graph-theory

Context

Let $P$ be the transition matrix of an irreducible, aperiodic, discrete-time Markov chain. The spectral gap is given by

$$\xi = 1 – \lambda_\max$$

where $\lambda_\max = \max\{\lambda_2, -\lambda_n\}$, i.e. the second largest eigenvalue of the transition matrix $P$.

This is related to the mixing time of the Markov chain; the bigger the spectral gap, the faster the convergence to the stationary distribution.

Problem

Now suppose I have two such chains on the same state space, with transition matrices $P_1$ and $P_2$, and spectral gaps $\xi_1$ and $\xi_2$.

Furthermore, let me define a new Markov chain with transition matrix:

$$
P' = \alpha P_1 + (1-\alpha) P_2
$$

in other words, each transition is done according to $P_1$ with probability $\alpha$, and according to $P_2$ with probability $1 – \alpha$.

Now the question is, what can I say about the spectral gap of $P'$? Intuitively, I would guess that the spectral gap is concave, i.e.

$$\xi' \ge \alpha \xi_1 + (1-\alpha) \xi_2$$

But I have no idea how to show this… Any help is appreciated!

Best Answer

This is not an easy thing to prove and in general the spectral gap of a matrix does not exceed the convex combination of its component gaps. It's a hard problem and an active area of research. However, if one of your Markov chains happens to be rank 1, you can apply Corollary 1 of http://arxiv.org/pdf/math/0307056v1.pdf. The earlier results in this paper can help you prove additional useful results, too.

One can prove your conjecture in the case that both chains share the same limiting distribution. (Sort of trivial and left as exercise.)

Related Question