BETA.DIST()/BETADIST()

Syntax. BETA.DIST(x;alpha;beta;cumulative;A;B)

Definition. This function returns the values of the cumulative beta distribution function. The beta distribution is usually used to examine the variance of processes across samples. For example, you can calculate the percentage of time people spend every day on their computers.

Arguments

Note

If one of the arguments isn’t a numeric value, the BETA.DIST() function returns the #VALUE! error. If alpha or beta is less than or equal to 0, the BETA.DIST() function returns the #NUM! error.

If x is smaller than A or greater than B, or A equals B, the BETA.DIST() function returns the #NUM! error.

If you don’t enter values for A and B, the BETA.DIST() function uses the standard distribution, A = 0 and B = 1.

Background. BETA.DIST() calculates the probability of a value (x) given the beta distribution shape parameters (see Figure 12-10). The value x should lie between 0 and 1 unless upper and lower values are given. Either the probability or the cumulative probability will be returned.

The BETA.DIST() function returns the y-value of the distribution function.

Figure 12-10. The BETA.DIST() function returns the y-value of the distribution function.

See Also

You will find more information about beta distributions in the discussion of the BETA.INV()/BETAINV() function.

Example. To practice calculating BETA.DIST(), use the following values:

Figure 12-11 shows the calculation of BETA.DIST().

Calculating BETA.DIST().

Figure 12-11. Calculating BETA.DIST().

The BETA.DIST() function is described by the shape parameters 8 and 10. In the range 1 to 3, what is the cumulative probability of a value of 2? The BETA.DIST() function returns a value of 0.68547.

See Also

BETA.INV(), BETAINV()