Estimate
| # | Information available | Estimator |
|---|---|---|
| 1 |
|
Blind — |
| 2 |
|
Conditional — |
| 3 |
Optimal MMSE — |
|
| 4 | Linear MMSE | |
| 5 |
MAP — |
|
| 6 |
ML — |
- Generate
$X \sim \mathcal{N}(0,1)$ via Box-Muller from$U(0,1)$ pairs. - Draw
$(X, Y)$ from a bivariate Gaussian with sample$\mu_X,\sigma_X^2$ and chosen$\mu_Y=0.01$ ,$\sigma_Y^2=1.3$ ,$\rho=0.9$ . - Compute each estimator and its empirical MSE.
Blind MSE = 0.9841
X > μ_Y/2 MSE = 0.3538
Optimal MMSE | Y MSE = 0.0165
Linear MMSE | Y MSE = 0.0165
MAP | Y MSE = 0.0165
ML | Y MSE = 0.0198
- For jointly Gaussian
$(X, Y)$ : MMSE = MAP = Linear estimator — all equal$E[X\mid Y]$ . -
ML discards the prior on
$X$ , so it is biased and incurs higher MSE. - Observing
$Y$ shrinks MSE by ~60× over the blind estimate at$\rho=0.9$ .
python main.py # prints all six MSEs
jupyter notebook estimation.ipynb # notebook with figures



