T.INV

The T.INV function returns the inverse of the left-tailed Student's t-distribution.

Syntax

T.INV(
    Probability,
    Deg_freedom
)

Parameters
  • Probability: Probability associated with Student's t-distribution.
  • Deg_freedom: Number of degrees of freedom to consider in the distribution.
Returned value

The T.INV function returns a real number.

Examples

We can calculate the inverse of the Student's t-distribution for a probability of 0.75 and 3 degrees of freedom with the following measure:

d = T.INV(0.75, 3)

T.INV function. Example of use
Related functions
Category
Statistical
Submitted by admin on Sun, 01/20/2019 - 12:20