Beta Distribution Calculator
Find PDF, CDF, mean, variance, mode, median, skewness, and kurtosis for any Beta(α, β) distribution on [0, 1].
📊 What is the Beta Distribution Calculator?
The beta distribution is a continuous probability distribution defined on the closed interval [0, 1] and parameterized by two positive shape parameters, alpha and beta. Because its support is bounded between 0 and 1, it is a natural choice for modeling quantities that are themselves proportions, probabilities, or rates. This calculator handles both probability queries (what is the chance that a Beta-distributed variable falls below a given x?) and full distribution characterization (what are the mean, variance, mode, median, skewness, and kurtosis?).
The applications of the beta distribution span many disciplines. In Bayesian statistics, the beta distribution is the conjugate prior for the binomial likelihood. If a coin has an unknown bias modeled as Beta(alpha, beta) and you observe s heads and f tails, the posterior distribution is Beta(alpha + s, beta + f). This clean update rule makes the beta distribution foundational in Bayesian inference. In project management, the PERT technique uses a beta distribution to model the time needed to complete a task, where optimistic, most likely, and pessimistic estimates define the shape. In A/B testing, conversion rates for two variants are each modeled as beta distributions, and the probability that one variant is better than the other is computed analytically. In quality control, defect rates per lot are bounded in [0, 1] and often follow a beta distribution.
The shape of the distribution changes dramatically with alpha and beta. When both parameters exceed 1, the density is bell-shaped with a single interior peak. When both equal 1, the result is a flat uniform distribution. When alpha equals beta, the distribution is symmetric about 0.5. When both parameters fall below 1, the density becomes U-shaped, with large probability mass near the boundaries 0 and 1. When alpha is much larger than beta, the density concentrates near 1; when beta dominates, it concentrates near 0.
A common misunderstanding is that the PDF value represents a probability. For continuous distributions, the PDF f(x) is a probability density, not a probability. It can exceed 1 for narrow, concentrated distributions (for example, Beta(10, 10) has a PDF value above 3 near x = 0.5). The probability of falling in an interval [a, b] is the integral of f(x) from a to b, which this calculator computes as the difference of CDF values.