Background

Markov transition matrices

EX)

$$ x_{t-1} = [1, 0, 0],\quad Q_t = \begin{bmatrix} 0.8, 0.1, 0.1 \\ 0.1, 0.8, 0.1\\0.1,0.1,0.8\end{bmatrix} $$

$$ x_{t-1}Q_t = [1, 0, 0]\begin{bmatrix} 0.8, 0.1, 0.1 \\ 0.1, 0.8, 0.1\\0.1,0.1,0.8\end{bmatrix} = [0.8, 0.1, 0.1] $$

Doubly stochastic matrix

What we want:

  1. Rows of $\bm{Q}_t$ must sum to one: conserve probability mass
  2. Rows of $\bar{\bm{Q}_t} = \bm{Q}_1\bm{Q}_2\dots\bm{Q}_t$ must converge to a stationary distribution

—> chose $\bm{Q}_t$ as increasing powers of a doubly stochastic base matrix $\bm{Q}$

—> 실제로 implement할 때에는 base matrix에 power로 설정하지는 않고, 기존 방식대로 noise scale을 조금씩 늘려가는 방식을 이용하지만, 이 경우에도 크게 문제 없이 성립.

  1. $\sum_{i=1}^K \bm{Q}_{i,:} = \mathbf{1}$
  2. $\sum_{j=1}^K \bm{Q}_{:,j} = \mathbf{1}$