Last modified: April 01, 2023

This article is written in: 🇺🇸

Beta Distribution (Continuous)

A continuous random variable X follows a beta distribution if it is used to model the behavior of random variables that are constrained to intervals of finite length, often [0,1]. The beta distribution is characterized by two shape parameters, α and β, and is denoted as XBeta(α,β).

Probability Density Function (PDF)

The PDF of a beta distribution is given by:

f(x;α,β)=xα1(1x)β1B(α,β)

for 0x1 and α,β>0, where B(α,β) is the beta function.

output(3)

Cumulative Distribution Function (CDF)

The CDF of a beta distribution, F(x;α,β), does not have a simple closed-form expression but is the integral of the PDF over its domain.

output(4)

Expected Value and Variance

The expected value (mean) of a beta distribution is:

E[X]=αα+β

The variance of a beta distribution is:

Var(X)=αβ(α+β)2(α+β+1)

Example: Quality Control in Manufacturing

In a manufacturing process, the proportion of defective items produced is assumed to follow a beta distribution with α=2 and β=5.

Given:

Using the beta distribution formulas:

I. What is the expected proportion of defective items?

Expected proportion of defective items:

E[X]=22+50.2857

II. What is the variance of this proportion?

Variance of the proportion:

Var(X)=2×5(2+5)2(2+5+1)0.0408

Applications

Beta distributions are widely used in Bayesian statistics, project management for modeling the completion time of tasks, and in reliability engineering to model the failure rate of systems. It is also used in genetics and ecology to model variability in proportions and rates.

Table of Contents

    Beta Distribution (Continuous)
    1. Probability Density Function (PDF)
    2. Cumulative Distribution Function (CDF)
    3. Expected Value and Variance
    4. Example: Quality Control in Manufacturing
    5. Applications