BETA.DIST function - The function returns the Beta distribution in Excel
The following article introduces you to the Beta.dist function - one of the functions in the group of statistical functions that is very popular in Excel.
Description: The function returns the beta distribution to study the variability of a number of things through a sample. Support functions from Excel 2010 onwards.
Syntax: BETA.DIST (x, alpha, beta, cumulative, [A], [B])
Inside:
- x: The value between A and B used to evaluate the function, is a required parameter.
- alpha: The parameter of the distribution, is a required parameter.
- beta: The parameter of the distribution, is a required parameter.
- cumulative: The logical value determines the form of the function, if the cumulative is True -> the function returns the cumulative distribution, the False value returns the probability density function.
- A: The lower bound of about x, is an optional parameter.
- B: The upper bound of the x interval , is an optional parameter.
Attention:
- If any parameter is not a number -> the function returns the #VALUE! Error value
- If alpha ≤ 0 or beta ≤ 0 -> the function returns the #NUM! Error value
- If x or x> B , or A = B -> the function returns the #NUM! Error value
- If parameters A and B are omitted, the function uses the cumulative distribution to normalize ie A = 0 and B = 1.
For example:
Calculate the value of the beta cumulative distribution function and the probability density function using the Beta.dist function with the figures in the table below:
1. Calculate the value of the beta cumulative distribution function (the value that determines the function is in True).
- In the cell to calculate enter the formula : = BETA.DIST (C6, C7, C8, C9, C11, C12)
- Press Enter -> beta cumulative distribution function value is:
2. Calculate the value of the beta probability density function (the values that determine the function are in False).
- In the cell to calculate enter the formula: = BETA.DIST (C6, C7, C8, C10, C11, C12)
- Press Enter -> beta probability density function value is:
Above are instructions and specific examples when using BETA.DIST function in Excel.
Good luck!
You should read it
- GAMMA.DIST function - The function returns the gamma distribution in Excel
- BETA.INV function - The function returns the inverse of the cumulative distribution function for a specified beta distribution in Excel
- POISSON.DIST function - The function returns the Poisson distribution in Excel
- HYPGEOM.DIST - The function returns the hyperbolic distribution in Excel
- F.DIST - The function returns the probability distribution F in Excel
- T.DIST.RT - The function returns the Student's t-distribution on the right in Excel
- CHISQ.DIST - Function returns the distribution when squared in Excel
- LOGNORM.DIST - Function returns the logarithmic distribution of x in Excel
- T.DIST - The function returns the Student t-distribution on the left in Excel
- T.DIST.2T - The function returns the two-tailed Student distribution in Excel
- The EXPON.DIST function - The function returns the exponential distribution in Excel
- NORM.S.DIST function - The function returns the normalized distribution with a mean of 0 and a standard deviation of 1 in Excel
Maybe you are interested
Difference between function and formula in Excel
8 little-known Excel functions that can save you a lot of work
How to use the NORMDIST function in Excel - Function that returns the distribution in Excel
Date functions in Excel, DAY, WEEKDAY, MONTH
How to use the SUMIF function in Excel to calculate the sum based on conditions
How to use the Round function in Excel to round numbers and process data