CHISQ.DIST function
Summary
Returns the cumulative beta probability density function
Syntax
CHISQ.DIST(x,deg_freedom,cumulative)
The CHISQ.DIST function syntax has the following arguments:
• X Required. The value at which you want to evaluate the distribution.
• Deg_freedom Required. The number of degrees of freedom.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
• X Required. The value at which you want to evaluate the distribution.
• Deg_freedom Required. The number of degrees of freedom.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, CHISQ.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
Example
=CHISQ.DIST(0.5,1,TRUE)
=CHISQ.DIST(2,3,FALSE)
=CHISQ.DIST(2,3,FALSE)