I came across this question that kind of motivated comparing this $\sigma^2$ estimator $$S^2 = \frac {\sum_{i=1}^n (Y_i - \bar{Y})^{2}}{n-1}$$ with this other $\sigma^2$ estimator $$S'^2 = \frac {\sum_{i=1}^n (Y_i - \bar{Y})^{2}}{n}$$
where $Y_1, \ldots, Y_n$ is a random sample.
First, it asked for $\operatorname{E}(S^2)$ and $\operatorname{E}(S'^2)$, and then it asked to compare $\operatorname{Var}(S^2)$ and $\operatorname{Var}(S'^2)$.
To find the expectations, I feel like it can go two ways here:
One potential way is using that $\frac{(n-1)S^2}{\sigma^2} \sim \chi^2(n-1)$ and somehow deriving a distribution for $S^2$ and then the expectation. But I feel like this won't work for $S'^2$.
The other potential way is to just apply
$$\operatorname{E}(S'^2) = \operatorname{E}\Biggl(\frac {\sum_{i=1}^n (Y_i - \bar{Y})^{2}}{n}\Biggr) = \frac{1}{n} \operatorname{E} \biggl({\sum_{i=1}^n (Y_i - \bar{Y})^{2}}\biggr) = \frac{1}{n} \biggl({\sum_{i=1}^n \operatorname{E} \bigr((Y_i - \bar{Y})^{2}\bigr)}\biggr) = \frac{1}{n} {\sum_{i=1}^n \operatorname{E}(Y_i^2) - 2 \bar{Y} \mu + \bar{Y}^2}$$
If I let $n$ be large, I can simplify it further using $\bar{Y} = \mu$:
$$= \frac{1}{n} {\sum_{i=1}^n \operatorname{E}(Y_i^2) - 2\mu^2 + \mu^2} = \frac{1}{n} {\sum_{i=1}^n \operatorname{E}(Y_i^2) - \mu^2} = \frac{1}{n} {\sum_{i=1}^n \operatorname{Var}(Y_i)} = \frac{1}{n} {\sum_{i=1}^n \sigma^2} = \frac{n\sigma^2}{n} = \sigma^2$$
I am not sure about this derivation though, because it does not really work for $S^2$.
Any help is appreciated.