Created:October 5, 2024
Last Updated:March 26, 2025
This calculator allows you to calculate the probability of a beta distribution falling within a specified range or being greater than or less than a certain value. It also provides a chart and accompanying R code that you can run locally. Simply input the alpha (α) and beta (β) parameters, the comparison type, and the value(s) to compare against to get started.
Calculator
Parameters
Distribution Chart
Click Calculate to view the distribution chart
Learn More
Beta Distribution: Definition, Formula, and Applications
Beta Distribution
Definition: The beta distribution is a family of continuous probability distributions defined on the interval [0, 1]. It is characterized by two positive shape parameters, α (alpha) and β (beta), which determine its shape and properties.
Formula:The probability density function (PDF) is given by:where:
Where:
- is the first shape parameter
- is the second shape parameter
- is the gamma function
Properties
Key Statistics:
- Mean:
- Variance:
- Mode:
- for
- 0 when
- 1 when
- Undefined when
Special Cases:
- : Uniform distribution on [0,1]
- : Symmetric distribution around 0.5
- : U-shaped distribution
- : Unimodal distribution
How to Calculate Beta Distribution in R?
R
library(tidyverse)
alpha <- 2
beta <- 5
# Calculate probability between two values
x1 <- 0.2
x2 <- 0.6
prob <- pbeta(x2, shape1 = alpha, shape2 = beta) - pbeta(x1, shape1 = alpha, shape2 = beta)
print(str_glue("P({x1} < X < {x2}) = {round(prob, 4)}"))
# P(0.2 < X < 0.6) = 0.6144
How to Calculate Beta Distribution in Python?
Python
import numpy as np
import pandas as pd
from scipy import stats
alpha = 2
beta = 5
# Calculate probability between two values
x1, x2 = 0.2, 0.6
prob = stats.beta.cdf(x2, alpha, beta) - stats.beta.cdf(x1, alpha, beta)
print(f"P({x1} < X < {x2}) = {prob:.4f}")