CHISQ.INV.RT

The CHISQ.INV.RT function returns the inverse of the chi-square "right tailed" distribution.

Syntax

CHISQ.INV.RT(
    probability,
    deg_freedom
)

Parameters
  • probability: Probability associated with the chi-square distribution.
  • deg_freedom: Number of degrees of freedom to consider in the distribution.
Returned value

The CHISQ.INV.RT function returns a real number.

Additional Information

If any of the arguments are not numeric, the function returns the #VALUE! error.

If probability is less than 0 or greater than 1, CHISQ.INV.RT returns the #NUM! error.

If deg_freedom is a real number, it is rounded.

If deg_freedom is less than 1 or greater than 1010, the function returns the #NUM! error.

Examples

In this example we calculate the inverse of the chi-square distribution for probability 0.85 and 3 degrees of freedom:

CHISQ.INV.RT function. Example of use
Related functions
Category
Statistical
Submitted by admin on Fri, 02/15/2019 - 16:10