convergence rate for expected value of sample mean

645 Views Asked by At

Let $X_1,...,X_n$ be a sample of i.i.d. random variables with mean 0 and finite variance, and let $\bar X$ denote the sample mean. How to show $E(|\bar X|)=O(1/\sqrt{n})$? Thanks.

1

There are 1 best solutions below

1
On

This is actually Exercise 1.1.3 in Vershynin's "high-dimensional probability":

Let $X_1, X_2, \ldots$ be a sequence of iid random variables with mean $\mu$ and a finite variance. Then, $${\rm I\!E}\left|\frac{1}{N}\sum_{i=1}^{N}X_i - \mu\right| {}={} O\left(\frac{1}{\sqrt{N}}\right).$$

Without loss of generality we shall assume that $\mu=0$.

Firstly, we will get rid of that annoying absolute value as follows: Let us define $$\bar{X}_N = \frac{1}{N}\sum_{i=1}^{N}X_i.$$ Then, $${\rm I\!E}|\bar{X}_N| = {\rm I\!E} \sqrt{\bar{X}_N^2} \leq \sqrt{{\rm I\!E}[\bar{X}_N^2]},$$ where we used Jensen's inequality (using the fact that the square root is a concave function).

Now for ${\rm I\!E}[\bar{X}_N^2]$ we have $${\rm I\!E}[\bar{X}_N^2] = \frac{1}{N^2} {\rm I\!E}\left(\sum_{i=1}^{N}X_i\right)^2 = \frac{1}{N^2} {\rm I\!E}\left[\sum_{i=1}^{N}X_i^2\right] =\frac{1}{N^2} N\sigma^2 = \frac{\sigma^2}{N}.$$

As a result $${\rm I\!E}\left|\frac{1}{N}\sum_{i=1}^{N}X_i\right| {}\leq{} \sqrt{{\rm I\!E}[\bar{X}_N^2]} = \frac{\sigma}{\sqrt{N}},$$ which proves the assertion.

I tried to prove it starting from the Lindeberg-Lévy CLT and trying to use an argument based on uniform integrability, but I couldn't make it and I tend to believe that it's not possible. I would be very interested in a proof that leverages CLT if possible.