The BETA.DIST function returns the probability of a given value as defined by the beta distribution function.

Parts of a BETA.DIST function

BETA.DIST(value, alpha, beta, lower_bound, upper_bound)

PartDescriptionNotes
valueThe value at which to evaluate the probability function.* The given value must be a number from the given lower boundary to the given upper boundary.
alphaThe first shape parameter of the distribution.* The given alpha must be a positive number.
betaThe second shape parameter of the distribution.* The given beta must be a positive number.
lower_boundThe lower boundary of the function.* The default lower boundary is 0.
upper-boundThe upper boundary of the function.* The default upper boundary is 1.

Sample formulas

BETA.DIST(0.65, 1.234, 7, 0.5, 3)

BETA.DIST(0.42, 3, 8)

BETA.DIST(0.92, 0.5, 0.7)

BETA.DIST(A5, 0.5, 0.7, -1, 1)

Note

  • You can use BETADIST or BETA.DIST to perform this function.

Example

In this example, the cumulative probability of beta distribution at 0.3 is parameterized by an alpha of 5 and a beta of 1, defined over [-1, 1]:

ABCDEF
1ValueAlphaBetaLower boundUpper bound
20.351-11
30.351-11
40.351-11

BETAINV: The BETA.INV function returns the value of the inverse beta distribution function for a given probability.