Statistics

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.  

alec's picture

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.990235020

So my guess is that the mean is 75 and the standard deviation is 21/sqrt(49)=3.

Alec

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}