Small sample tests for a population mean

In this section wil ladjust our statistical test for the population mean to apply to small sample situations. Fortunately (sic!), this will be easy (in fact, once you understand one statistical test, additional tests are easy since they all follow a similar procedure.

With that new Excel function our test procedure for a sample mean, small sample size, is as follows:

Statistical Test for the Mean (small sample size N < 30):

Fix an error level you are comfortable with (something like 10%, 5%, or 1% is most common). Denote that "comfortable error level" by the letter "A". Then setup the test as follows:

Null Hypothesis H0: mean = M, i.e. The mean is a known number M Alternative Hypothesis Ha: mean ≠ M, i.e. mean is different from M (2-tailed test)
Test Statistics: Select a random sample of size N, compute its sample mean X and the standard deviation S. Then compute the corresponding t-score as follows: T= (X - M) / ( S / sqrt(N) )

Rejection Region (Conclusion)

Compute p = 2*(1 - P(t > |T|)) = TDIST(ABS(T), N-1, 2)

If the probability p computed in the above step is less than A (the error level you were comfortable with inititially, you reject the null hypothesis H0 and accept the alternative hypothesis. Otherwise you declare your test inconclusive.

Comments:

Example 1: A group of secondary education student teachers were given 2 1/2 days of training in interpersonal communication group work. The effect of such a training session on the dogmatic nature of the student teachers was measured y the difference of scores on the "Rokeach Dogmatism test given before and after the training session. The difference "post minus pre score" was recorded as follows:

-16, -5, 4, 19, -40, -16, -29, 15, -2, 0, 5, -23, -3, 16, -8, 9, -14, -33, -64, -33

Can we conclude from this evidence that the training session makes student teachers less dogmatic (at the 5% level of significance) ?

This is of course the same example as before, where we incorrectly used the normal distribution to compute the probability in the last step. This time, we will do it correctly, which is fortunately almost identical to the previous case (except that we use TDIST instead of NORMDIST):

T = (-10.9 - 0) / (21.33 / sqrt(20) ) = -2.28
149, 165, 150, 158, 153

Should they adjust their line of clothing or they ship them without change? Make sure to decide at the 0.05-level.

T = (155 - 162) / ( 6.59 / sqrt(5) ) = -2.37

If you compare the T values in example 1 and 2 you see that they are very similar. Yet, the associated probabilities are very different. That is due to the fact that in example 1 we used a 1-tail test with a relatively high degree of freedom while in example 2 we had a 2-tail test with a very small degree of freedom. Both factors make the probabilities so different.