What is this?
A population has a mean of 75 and a standard deviation equal to 21. Find the mean and standard deviation of a sampling distribution of a sample means with a sample size of 49.
with(Statistics): X:=RandomVariable(Normal(75,21)): T:=Vector[row]([seq(Mean(Sample(X,49)),i=1..10000)]): Mean(T); 74.96692326 StandardDeviation(T); 2.990235020
So my guess is that the mean is 75 and the standard deviation is 21/sqrt(49)=3.
Alec
Statistics in Maple
with(Statistics): X:=RandomVariable(Normal(75,21)): T:=Vector[row]([seq(Mean(Sample(X,49)),i=1..10000)]): Mean(T); 74.96692326 StandardDeviation(T); 2.990235020So my guess is that the mean is 75 and the standard deviation is 21/sqrt(49)=3.
Alec