2

I need to prove that in a set of $N$ data $x_1, x_2, \ldots, x_n$, for all $i$ between 1 and $N$, we have

$$\mu-\sigma \sqrt N \leq x_i \leq \mu+\sigma \sqrt N$$

where $\mu$ is the average and $\sigma$ the standard deviation.

I know I need to use Chebyshev's inequality

$$\Pr(\mu-k\sigma \leq X \leq \mu+k\sigma) > 1-1/k^2.$$

I did notice the $X$ changing to $x_i$, which from my understanding means that what I am trying to prove is about one data ($x_i$) whereas Chebichev's inequality is about a set of data.

Justin D.
  • 745

1 Answers1

2

If $X$ is the random variable gotten by selecting a random $i$ with equal probability from $1$ to $N$ and then selecting $x_i$, then for any $a,b$, the value of:

$$P(a\leq X\leq b)$$

Is of the form: $$\frac{M}{N}$$ for some $M\in\{0,1,2,\dots,N\}$.

Now, use this with Chebyshev's inequality when $k=\sqrt{N}$ to conclude that the probability that $X$ is in this range is equal to $1$, and therefore that all of the $x_i$ are in this range.

Thomas Andrews
  • 177,126