🏠
Guest Not signed in

Monte Carlo variance reduction: antithetic and control variates

Plain MC error scales as $1/\sqrt{N}$. Two tricks — antithetic pairs (negatively correlated samples) and control variates (a related closed-form anchor) — can drop the variance by an order of magnitude at the same compute cost.

Method · Monte Carlo Variance Reduction
Intro

Standard Monte Carlo for a barrier option needs 100,000 paths to get a stable price — variance reduction can hit the same tolerance in 10,000. That is not a coincidence; it is the point. Antithetic variates pair each simulated path with its mirror image so that overestimates on one cancel underestimates on the other. Control variates anchor the estimator to a known closed-form price and remove the shared simulation noise. Importance sampling tilts the distribution so more paths land where the payoff actually matters. Stratified sampling forces paths to cover the probability space evenly rather than clustering by chance. Either of the first two tricks routinely cuts variance by $5{-}20\times$; combined they reach $50{-}100\times$. The math behind all four is covariance arithmetic — no new theory, just cleverer bookkeeping of the randomness you already have.

βœ“ Intro Β· expand
Independent · Legal