Solved – Understanding the proof of sample mean being unbiased estimator of population mean in Simple Random Sampling Without Replacement (SRSWOR)

sampling

I was reading about the proof of the sample mean being the unbiased estimator of population mean. Here is the concerned derivation:

Let us consider the simple arithmetic mean $\bar y = \frac{1}{n}\,\sum_{i=1}^{n} y_i$ as an unbiased estimator of population mean $\overline Y = \frac{1}{N}\,\sum_{i=1}^{N} Y_i$.

Simple Random Sampling Without Replacement

Let $t_i = \sum_{i=1}^n y_i\;.$

\begin{align}\mathrm E(\bar y)&= \frac{1}{n}\,\mathrm E{\left(\sum_{i=1}^n y_i\right)}\\&= \frac{1}{n}\,\mathrm E(t_i)\\ &= \frac{1}{n}\color{red}{\left(\frac{1}{N \choose n}\,\sum_{i=1}^{N \choose n}t_i\right)}\\ &= \frac{1}{n}\left(\frac{1}{N \choose n}\,\sum_{i=1}^{N \choose n}\left(\sum y_i\right)\right)\\ &= \frac{1}{n}\left(\frac{1}{N \choose n}\,\color{red}{{N-1\choose n-1}\sum_{i=1}^N y_i}\right)\\ &=\frac{1}{N}\sum_{i=1}^{N}y_i\\ &= \overline Y\;.\end{align}

I couldn't understand the derivation; I really couldn't conceive how the red coloured terms came from nowhere.

Can anyone please help me explain the derivation by showing how the red coloured terms came in the concerned steps?

Best Answer

The author's derivation is pretty strange. The fact that $\bar{y}$ is an unbiased estimate of $\mu$ the population mean when sampling without replacement is true due to linearity of expectation alone:

\begin{align} \text{E}(\bar{y}) &= \text{E} \left ( \frac{1}{n} \sum_{i=1}^{n} y_i \right ) \\ &= \frac{1}{n} \sum_{i=1}^{n} \text{E}(y_i) \\ &= \frac{1}{n} \sum_{i=1}^{n} \mu \\ &= \mu . \end{align}

There's no reason to bother with combinatorics.

Related Question