Distributions
We first introduce some notation for probability distributions:
Mathematical | Description | Programmatic |
---|---|---|
A distribution. | p:Distribution<X> |
|
Evaluate the probability density (mass) function associated with the probability distribution |
||
Evaluate the logarithm of the probability density (mass) function associated with the distribution |
x ~> p |
|
Simulate a variate |
x <~ p |
This notation may be unfamiliar, particularly as many texts rely on context, rather than notation, to distinguish between a probability distribution
Tip
You may recognize the notation
In Birch code, a distribution is represented by an object of the Distribution class. This is a generic class: we use it as Distribution<X>
, where X
is the domain of the distribution, e.g. Distribution<Real>
(over Distribution<Integer>
(over Real[_]
(over Distribution<X>
directly. Instead we use one of its derived classes, such as GaussianDistribution, GammaDistribution, BetaDistribution, UniformDistribution. The idiom is to use a function for the particular distribution of interest in combination with a probabilistic operator. For example, we can simulate from a distribution with the simulate operator (<~
):
x:Real;
x <~ Gaussian(0.0, 4.0);
The function Gaussian creates an object of class GaussianDistirbution
, which derives from class Distribution<Real>
. The <~
operator then simulates a variate from it, and assigns the value of that variate to the variable x
. We can instead use code such as the following:
x:Real;
p:Distribution<Real> <- Gaussian(0.0, 4.0);
x <~ p;
We can observe a variate with the observe operator (~>
). For example, to observe a variate of value 1.5823
from a Gaussian distribution with mean 0.0
and variance 4.0
:
1.5823 ~> Gaussian(0.0, 4.0);
let x <- 1.5823;
x ~> Gaussian(0.0, 4.0);