In the Metropolis–Hastings algorithm for sampling a target distribution. let
- $\pi_{i}$ be the target density at state $i$,
- $\pi_j$ be the target density at the proposed state $j$,
- $h_{ij}$ be the proposal density for transition to state $j$ given current state $i$,
- $a_{ij}$ be the accept probability of proposed state $j$ given current state $i$.
Then by the detailed balance equation, after choosing the proposal density $h$, the accept probabilities $a$ is computed as $$ a_{ij} = \min(1, \frac{\pi_{j} h_{ji}}{\pi_{i} h_{ij}}). $$
If $h$ is symmetric, i.e. $h_{ij}=h_{ji}$, then $$ a_{ij} = \min(1, \frac{\pi_{j}}{\pi_{i}}). $$
When $h_i$ is a Guassian distribution centered at state $i$ and has the same variance $\sigma^2$ for all $i$, $h$ is symmetric. From Wikipedia:
If $\sigma^2 \,$ is too large, almost all steps under the MH algorithm will be rejected. On the other hand, if $\sigma^2 \,$ is too small, almost all steps will be accepted.
I wonder why the accept probability changes in the reverse direction of the change of variance of the proposal density, as mentioned in the above quote?
Thanks!
