T-Tests


One-Group T-test

Here, you are dealing with one group, and you want to study the behavior of its sample mean (not the population mean sigma; else you'd use a z-test).

Two Independent Groups T-test

Compare the sample means for two independent groups taken from the same population.

Two Dependent Groups T-test

This is done exactly the same as the two independent groups t-test (above) except for one difference: there is an extra term in the square root, which is the correlation of the two groups. Hence, sem is:
sem = sqrt (s1**2/n1 + s2**2/n2 - correlation).
Naturally, this term drops out when there is no correlation between groups. This test is often used for pretest/posttest situations.

Assumptions

The t-test is a parametric test. That means it has assumptions. There are three assumptions:
  1. The two groups are completely independent. No crossover.
  2. The scores are normally distributed. Actually this doesn't have to be true in practice - it's OK if they're not normal.
  3. Homogeneity of variance - both populations have equal variance. It's OK to violate this too - provided the n's are equal. But if they are not, then you need to test for the actual variance.

Homogeneity of variance

These apply to independent 2-group T-tests. Tests (like Fmax) for homogeneity of variance are needed if n1 is not equal to n2 and s1 is not equal to s2. Here are the ground rules, for alpha = .05

For equal n's:

  1. if n1 = n2, if xbar1 > xbar2, and if the alternate hypothesis says mu1 > mu2, then YOU MAY HAVE A PROBLEM REJECTING THE NULL HYPOTHESIS (this is because both means are varying in the SAME DIRECTION.)
  2. if n1 = n2 and the mus and xbars vary oppositely, then NO PROBLEM.
For unequal n's:
  1. if n1 is not equal to n2, but s1 = s2, NO PROBLEM.
  2. if the n's and the s's are both unequal, there may be a problem.

Hartley's Fmax test

In the liberal/conservative cases above, you need to test for homogeneity of variance. You want to satisfy hzero, i.e. all variances are equal. The statistic you use is Fmax.

[back arrow]Back to Statistics course


Lorraine Sherry
lsherry@carbon.cudenver.edu
Updated October 7, 1996