There are two kinds of estimates of variance from an iid sample $X1, \dots, X_n$
$1/n * \sum_i (X_i - \bar{X})^2$, which is MLE
$1/(n-1) * \sum_i (X_i - \bar{X})^2$, which is unbiased.
The unbiased estimate has a bigger variance than the MLE, for a given $n$.
So I wonder when to prefer which of the two? Thanks!