Beta Distribution Calculator

Calculate probability density, cumulative probability, mean, and variance for the Beta distribution with parameters alpha and beta.

PDF VALUE
--
CDF P(X ≤ x)
--
Mean
--
Variance
--
Mode
--

What Is the Beta Distribution?

The Beta distribution is a continuous probability distribution defined on [0,1], parameterized by two shape parameters alpha and beta. It is incredibly versatile and can model a wide variety of shapes including uniform, U-shaped, J-shaped, and bell-shaped distributions.

Common applications include Bayesian statistics (as a conjugate prior for binomial proportions), modeling probabilities, project management (PERT estimation), and A/B testing.

Formulas

PDF: f(x) = x^(α-1)(1-x)^(β-1) / B(α,β)
Mean = α / (α + β)
Variance = αβ / ((α+β)²(α+β+1))
Mode = (α-1) / (α+β-2) when α,β > 1

Shape Parameters

αβShape
11Uniform
25Right-skewed
52Left-skewed
55Bell-shaped
0.50.5U-shaped

FAQ

Why is Beta used in Bayesian statistics?

It is the conjugate prior for binomial likelihood. If your prior is Beta(α,β) and you observe k successes in n trials, the posterior is Beta(α+k, β+n-k). This makes updating beliefs computationally elegant.

What does Beta(1,1) represent?

Beta(1,1) is the uniform distribution on [0,1], representing complete ignorance about a probability parameter.