Chisq inv
CHISQ.INV Function¶
The CHISQ.INV function in Excel calculates the inverse of the left-tailed probability of the Chi-Square
distribution. It is often used in statistical hypothesis testing to determine critical values for Chi-Square tests, such
as goodness-of-fit tests or tests of independence.
This function essentially finds the value of the Chi-Square statistic corresponding to a specified cumulative probability (left-tailed probability) and a given number of degrees of freedom.
Key Features of CHISQ.INV:¶
- Computes the Chi-Square statistic (critical value) for a given left-tailed probability.
- Helps determine threshold values for statistical hypothesis testing.
- Used widely in statistical analyses involving Chi-Square distribution.
Syntax:¶
- probability: The cumulative probability (left-tailed) for which you want to find the Chi-Square critical value. Must be between 0 and 1.
- degrees_freedom: The number of degrees of freedom. Must be a positive integer.
Examples:¶
-
=CHISQ.INV(0.95, 3)
Finds the Chi-Square critical value that corresponds to a left-tailed probability of0.95with3degrees of freedom.
Result:0.215795283. -
=CHISQ.INV(0.5, 5)
Finds the Chi-Square value corresponding to a left-tailed probability of0.5with5degrees of freedom.
Result:4.351460191. -
=CHISQ.INV(0.85, 2)
Calculates the Chi-Square critical value for0.85cumulative probability with2degrees of freedom.
Result:4.999L82602.
Notes:¶
- The function is particularly useful when determining critical values for Chi-Square tests, which help decide whether to reject the null hypothesis.
- If
probabilityis ≤ 0 or > 1, or ifdegrees_freedomis not a positive integer, the function returns an error (#NUM!or#VALUE!). - For large degrees of freedom, the Chi-Square distribution begins to resemble a normal distribution.
Tip: Use
CHISQ.INVto compute the critical thresholds against which you compare observed Chi-Square statistics in your hypothesis tests. This can help determine the statistical significance of your results.