The T.DIST function in Google Sheets returns the right-tailed Student's t-distribution for a given value, which is widely used in hypothesis testing when working with small sample sizes. Dive into our comprehensive guide to learn how it works.
Parameters
x: The value at which to evaluate the distribution.degrees_freedom: The number of degrees of freedom.cumulative: A logical value —TRUEto return the cumulative distribution function,FALSEto return the probability density function.
Step-by-Step Tutorial
-
Calculating the cumulative t-distribution:
- Example:
=T.DIST(1.5, 10, TRUE) - Result: approximately
0.9178
- Example:
-
Calculating the probability density:
- Example:
=T.DIST(1.5, 10, FALSE) - Result: approximately
0.1336
- Example:
Use Cases and Scenarios
- Hypothesis Testing: Determine p-values for t-tests when sample sizes are small and the population standard deviation is unknown.
- Confidence Interval Estimation: Build confidence intervals for sample means using the t-distribution.
- Academic Research: Perform statistical analysis in fields that rely on small-sample inference.
Related Functions
T.DIST.RT: Returns the right-tailed Student's t-distribution.T.DIST.2T: Returns the two-tailed Student's t-distribution.T.INV: Returns the left-tailed inverse of the Student's t-distribution.