Answer
- MCMC: build a Markov chain whose stationary distribution is the posterior.
- Given current θ, propose θ' ~ q(θ∣θ).
- Accept with probability α=min(1,[p(θ∣D)q(θ∣θ)]/[p(θ∣D)q(θ∣θ)]).
- Symmetric q simplifies to α=min(1,p(θ∣D)/p(θ∣D)).
- Only needs the posterior up to a constant → dodges intractable evidence.
- Weaknesses: slow mixing in high dims; sensitive to proposal scale.
Check yourself — multiple choice
- Random
- Propose θ' ~ q(θ∣θ), accept with α=min(1,[p(θ∣D)q(θ∣θ)]/[p(θ∣D)q(θ∣θ)]); needs posterior up to constant only
- Same as Gibbs
- Not MCMC
Metropolis-Hastings: propose + accept with α; needs unnormalized posterior only.
#bayesian#mcmc
Practise Statistics Fundamentals
215 interview questions in this topic.