My stat book has an index of values relating to the t-distribution.

And Excel has a bunch of apparently related functions:
- T.DIST (x, deg_freedom, cumulative)
- T.DIST.2T (x, deg_freedom)
- T.DIST.RT (x, deg_freedom)
- T.INV (probability, deg_freedom)
- T.INV.2T (probability, deg_freedom)
- T.TEST (array1, array2, tails, type)
I cannot figure out the relationship between the values on the table and the values that Excel returns with these functions. Does one of these Excel functions return the table values?
For a given df and a given alpha, the value given in the table can be found either by
T.INV(1-alpha,df)(for the one-sided value of alpha)T.INV.2T(alpha,df)(for the two-sided value of alpha)I.e., for
T.INVthe table is based on the probability of the tail, while Excel is based on the CDF, hence 1-alpha. ForT.INV.2Thowever the argument is alpha as in your table.For instance: