Stephen Tashi said:
You also need the theorems:
If {X1,X2,..X_n} are uncorrelated random variables and Y is the random variable Y = \sum_{i=1}^n X_i then Var(Y) = \sum_{i=1}^n Var(X_i).
and
If Y is a random variable and k is a constant and W is the random variable W = kY then Var(W) = k^2 Var(Y).
You problem asks about the variance of the sample mean. The sample mean can be viewed as k = (1/100) times the sum of 100 uncorrelated random variables.
Right. I seem to be getting the answer I was expecting. Or maybe Ray Vickson is right and my math is faulty. Have a look:
The variance of a sample mean is:
Var( \bar{X} ) = Var( \frac{1}{n} \sum_{i=1}^{n} X_{i})
Since there are 1000 sample means of 100 observations each:
Var(1000 \bar{X} ) = Var( (\frac{1}{100} \sum_{i=1}^{100} X_{i})*1000)
, which becomes:
Var( 1000 \bar{X} ) = Var( 10 \sum_{i=1}^{100} X_{i})
Using the theorem of the variance of a constant:
1000000 Var( \bar{X} ) = 100 Var( \sum_{i=1}^{100} X_{i})
1000000 Var( \bar{X} ) = 100 (Var(X_{1}) + Var(X_{2}) + ... + Var(X_{100}))
Assuming the random variables are independent and identically distributed:
1000000 Var( \bar{X} ) = 100 ( \sigma^2 + \sigma^2 + ... + \sigma^2)
1000000 Var( \bar{X} ) = 100 * 100\sigma^2
1000000 Var( \bar{X} ) = 10000 \sigma^2
Var( \bar{X} ) = \frac{\sigma^2}{100 }
And so the standard deviation of the sample means is:
\sqrt{ \frac{\sigma^2}{100}} = \sqrt{ \frac{\frac{1}{12}}{100 }} = \sqrt{ \frac{1}{12 * 100} } = \frac{1}{\sqrt{12 * 100}}
, which is the seemingly correct answer. But regardless of how many sample means there are, the variance of a sample mean will always be \frac{ \sigma ^2}{n} due to the properties of the variance of a constant! (Because they will always cancel each other out!)
BvU said:
Dear Frederic,
I think your reasoning is just fine. If I read the exercise correctly, the 1000 just stands for 'a big enough number' so that your ##\sigma_m = {\sigma\over \sqrt n}## shows up well enough ('about') as the standard deviation of these means (of 100 observations each) .
Ray Vickson said:
I thought that at first, but that led to an incorrect answer that did not fit with what was actually asked (which, IMHO is a somewhat silly question). I think the simplest translation of the problem into plain English is: "what is the standard deviation of the mean of an independent sample of size 100 from the distribution U(0,1)". The 1000 samples really have nothing much to do with the problem.
Stephen Tashi said:
That's a good interpretation. "You take the standard deviation of the 1,000 sample means." implies we compute a single number. What does that number estimate? The sample standard deviation estimates the standard deviation of the random variable being sampled. The random variable being sampled is the mean of samples of size 100. If we assume the estimate is approximately correct, it should be near the actual mean of samples of size 100.
It's temping to extrapolate "You take the standard deviation of the 1,000 sample means" to imply further calculations such as "We estimate the standard deviation of a sample of size 1000 of those means by using ...[whatever information one might use] ".
Given how exercises are written, let's hope the skill of interpreting language is correlated with the accomplishment of acquiring new mathematical knowledge.
These are great explanations on their own without the math, which are made all the more clearer with the math (which I hope is right).
Thank you. Tell me what you think.