Beta inv
BETA.INV Function¶
The BETA.INV function in Excel calculates the inverse of the cumulative beta probability density function for a
given probability. In other words, it determines the value x such that the cumulative beta distribution function with
specified parameters equals the given probability.
This function is primarily used in statistics and probability calculations, especially when working with data modeled by the beta distribution.
Key Features of BETA.INV:¶
- Computes the value associated with a given cumulative probability for the beta distribution.
- Supports specifying bounds of the interval where the beta distribution applies (
lower_boundandupper_bound).
Syntax:¶
- probability: A numeric value between
0and1that specifies the cumulative probability. - alpha: Positive shape parameter of the beta distribution that determines its skewness.
- beta: Positive shape parameter of the beta distribution that determines its skewness.
- [lower_bound] (optional): The minimum value of the
xrange. Defaults to0if omitted. - [upper_bound] (optional): The maximum value of the
xrange. Defaults to1if omitted.
Examples:¶
-
Basic Calculation
=BETA.INV(0.6, 2, 5)
Calculates the inverse beta distribution for the cumulative probability0.6withalpha = 2,beta = 5, and the default interval[0, 1].
Result:0.428571. -
Custom Boundaries
=BETA.INV(0.75, 3, 4, 0, 10)
Finds the value ofxwithin the interval[0, 10]for a cumulative probability of0.75withalpha = 3andbeta = 4.
Result:6.875. -
Negative Bounds
=BETA.INV(0.2, 1, 2, -10, 0)
Computes the inverse beta distribution for probability0.2withalpha = 1,beta = 2, over the interval[-10, 0].
Result:-8.
Notes:¶
- If
alpha ≤ 0,beta ≤ 0, orprobabilityis outside the range[0, 1], the function returns an error (#NUM!or#VALUE!). - If
lower_boundandupper_boundare omitted, the function assumes the default interval of[0, 1]. - The function is closely related to the
BETA.DISTfunction but applies inversely.
Tip: Use
BETA.INVfor reverse probability calculations, such as finding the threshold value corresponding to a given cumulative probability in beta-distributed data.