BETA.INV

The BETA.INV function returns the inverse of the cumulative beta probability density function for a given probability.

Syntax

BETA.INV(
    <x>,
    <alpha>,
    <beta>,
    [<A>],
    [<B>]
)

Parameters
  • x: Probability associated with the beta distribution.
  • alpha: Alpha parameter of the distribution.
  • beta: Beta parameter of the distribution.
  • A: Optional. Lower limit of the range in which the result of the function can be found.
  • B: Optional. Upper limit of the range in which the result of the function can be found.
Returned value

The BETA.INV function returns a real number.

Additional Information

If any argument is not a number, the function returns a #VALUE! error.

If any argument is not an integer, it is rounded.

If alpha or beta are less than or equal to zero, the function returns an error of type #NUM!.

If the probability does not belong to the interval (0, 1] -that is, if it is less than or equal to zero or greater than one-, the function returns an error of type #NUM.

If the arguments A and B are omitted, the function uses the default values corresponding to a standard cumulative beta distribution function (A = 0 and B = 1).

Examples

In this example we want to find the inverse of the beta distribution corresponding to a probability of 0.3660 and parameters alpha = 2 and beta = 3:

BETA.INV function. Example of use
Category
Statistical
Submitted by admin on Fri, 02/01/2019 - 12:32