Probability Distribution
  • describes the real-world behavior of one or more random variables. These random variables can be either: discrete, continuous, or a mixture of the two
  • describes how probabilities are distributed over the values of a random variable:
  • is a distribution function that:
    • outputs a value between 0 and 1
    • all values sum/integrate to 1

Probability Distribution - Population vs Sample

see: Empirical Distribution

Probability Distribution - How They are Modeled/Represented

see Representations

Probability Distribution - Main Types

Probability Distributions & Description

Syntax Examples

univariate probability distribution (sometimes just called probability distribution)

  • is a model that describes the probability of a random variable
  • is essentially a “list” of all possible outcomes (of the random variable) along with their corresponding probability value
  • a variety of phenomena can be described by relatively few families of probability distribution models
Link to original

  • 𝐏(𝑋)
  • 𝐏(𝑌)
  • 𝐏(𝑍)

Link to original

  • 𝐏(𝑋,𝑌)
  • 𝐏(𝑋,𝑌,𝑍)
  • 𝐏(𝑌,𝑍)

marginal probability distribution

Link to original

  • 𝐏(𝑋) = 𝛴𝑦∈𝑌𝐏(𝑋,𝑌=𝑦)
  • 𝐏(𝑋,𝑌) = 𝛴𝑧∈𝑍𝐏(𝑋,𝑌,𝑍=𝑧)
  • 𝐏(𝑋) = 𝛴𝑦∈𝑌,𝑧∈𝑍𝐏(𝑋,𝑌=𝑦,𝑍=𝑧)

conditional probability distribution (CPD) of event 𝑋 given event 𝑌 is the probability distribution that 𝑋 occurs when 𝑌 is known to occur (denoted as 𝐏(𝑋|𝑌=𝑦)), 𝑋 and 𝑌 are jointly distributed random variables

Link to original

  • 𝐏(𝑋|𝑌)
  • 𝐏(𝑋|𝑌,𝑍)

Probability Distribution - Other Types

Estimating Parameters of a Parametric Distribution

Given:

Estimate:

  • the probability distribution function’s parameters that best reflect the sample training data

See: Model (Population Parameters - Sample Statistics)

Generating Random Variable(s) that Simulate a Specific Probability Distribution

see: Probability - Generating Random Variable(s) that Simulates a Distribution

Resources