Probability distributions are mathematical functions that describe the likelihood of different outcomes for a random variable. They provide a complete description of the probability structure of random phenomena and are fundamental to statistical analysis and machine learning.

Overview

Probability distributions can be classified based on the nature of the random variable: discrete (countable outcomes), continuous (uncountable outcomes within intervals), or mixed (combinations). Each distribution is characterized by its support (possible values), probability function (PMF for discrete, PDF for continuous), cumulative distribution function, parameters, and moments.

DefinitionProbability Distribution

A probability distribution is a function or rule that assigns probabilities to the outcomes of a random experiment or, more generally, to the events in a sample space. Let XX be a random variable, then the probability distribution of XX is defined by its probability mass function (PMF) for discrete variables or probability density function (PDF) for continuous variables.

Without loss of generality, we can define the distribution of a random variable XX as follows: P(X=x)=f(x)P(X = x) = f(x) for discrete variables, where f(x)f(x) is the PMF, and P(Xx)=F(x)P(X \leq x) = F(x) for continuous variables, where F(x)F(x) is the cumulative distribution function (CDF). The PMF and PDF must satisfy the properties of non-negativity and normalization:

  • For discrete variables: xP(X=x)=1\sum_{x} P(X = x) = 1
  • For continuous variables: f(x)dx=1\int_{-\infty}^{\infty} f(x) dx = 1

Discrete Probability Distributions

Bernoulli Distribution

Models a single trial with two possible outcomes (success/failure)

Parameters: pp (probability of success), where 0p10 \leq p \leq 1

Support: x{0,1}x \in \{0, 1\}

PMF: P(X=x)=px(1p)1xP(X = x) = p^x(1-p)^{1-x}

Moment Calculations:

For the expected value:

E[X]=x=01xP(X=x)=0(1p)+1p=p\begin{aligned} \mathbb{E}[X] &= \sum_{x=0}^{1} x \cdot P(X = x) \\ &= 0 \cdot (1-p) + 1 \cdot p \\ &= p \end{aligned}

For the second moment:

E[X2]=x=01x2P(X=x)=02(1p)+12p=p\begin{aligned} \mathbb{E}[X^2] &= \sum_{x=0}^{1} x^2 \cdot P(X = x) \\ &= 0^2 \cdot (1-p) + 1^2 \cdot p \\ &= p \end{aligned}

Therefore, the variance is:

V(X)=E[X2](E[X])2=pp2=p(1p)\begin{aligned} \mathbb{V}(X) &= \mathbb{E}[X^2] - (\mathbb{E}[X])^2 \\ &= p - p^2 \\ &= p(1-p) \end{aligned}

Applications: Coin flips, binary outcomes, indicator variables


Binomial Distribution

Models the number of successes in nn independent Bernoulli trials

Parameters: nn (number of trials), pp (success probability)

Support: x{0,1,2,...,n}x \in \{0, 1, 2, ..., n\}

PMF: P(X=x)=(nx)px(1p)nxP(X = x) = \binom{n}{x} p^x(1-p)^{n-x}

Moment Calculations:

The expected value can be derived using the linearity of expectation. Since X=i=1nXiX = \sum_{i=1}^{n} X_i where XiBernoulli(p)X_i \sim \text{Bernoulli}(p):

E[X]=E[i=1nXi]=i=1nE[Xi]=i=1np=np\begin{aligned} \mathbb{E}[X] &= \mathbb{E}\left[\sum_{i=1}^{n} X_i\right] \\ &= \sum_{i=1}^{n} \mathbb{E}[X_i] \\ &= \sum_{i=1}^{n} p \\ &= np \end{aligned}

For the variance, since the XiX_i are independent:

V(X)=V(i=1nXi)=i=1nV(Xi)=i=1np(1p)=np(1p)\begin{aligned} \mathbb{V}(X) &= \mathbb{V}\left(\sum_{i=1}^{n} X_i\right) \\ &= \sum_{i=1}^{n} \mathbb{V}(X_i) \\ &= \sum_{i=1}^{n} p(1-p) \\ &= np(1-p) \end{aligned}

Alternatively, we can compute directly:

E[X]=x=0nx(nx)px(1p)nx=npx=1n(n1x1)px1(1p)nx=np\begin{aligned} \mathbb{E}[X] &= \sum_{x=0}^{n} x \binom{n}{x} p^x(1-p)^{n-x} \\ &= np\sum_{x=1}^{n} \binom{n-1}{x-1} p^{x-1}(1-p)^{n-x} \\ &= np \end{aligned}

Applications: Quality control, survey sampling, clinical trials


Hypergeometric Distribution

Models the number of successes in nn draws without replacement from a finite population

Parameters: NN (population size), KK (number of success states), nn (number of draws)

Support: x{max(0,n(NK)),,min(n,K)}x \in \{\max(0, n-(N-K)), \ldots, \min(n, K)\}

PMF: P(X=x)=(Kx)(NKnx)(Nn)P(X = x) = \frac{\binom{K}{x}\binom{N-K}{n-x}}{\binom{N}{n}}

Moment Calculations:

For the expected value, we use indicator variables. Let Ij=1I_j = 1 if the jj-th draw is a success, 00 otherwise. Then X=j=1nIjX = \sum_{j=1}^{n} I_j.

The probability that any particular draw is a success is P(Ij=1)=KNP(I_j = 1) = \frac{K}{N}, so:

E[X]=E[j=1nIj]=j=1nE[Ij]=j=1nKN=nKN\begin{aligned} \mathbb{E}[X] &= \mathbb{E}\left[\sum_{j=1}^{n} I_j\right] \\ &= \sum_{j=1}^{n} \mathbb{E}[I_j] \\ &= \sum_{j=1}^{n} \frac{K}{N} \\ &= n\frac{K}{N} \end{aligned}

For the variance, we need to account for the dependence between draws:

V(X)=V(j=1nIj)=j=1nV(Ij)+2j<kCov(Ij,Ik)\begin{aligned} \mathbb{V}(X) &= \mathbb{V}\left(\sum_{j=1}^{n} I_j\right) \\ &= \sum_{j=1}^{n} \mathbb{V}(I_j) + 2\sum_{j < k} \text{Cov}(I_j, I_k) \end{aligned}

Since V(Ij)=KN(1KN)\mathbb{V}(I_j) = \frac{K}{N}(1-\frac{K}{N}) and Cov(Ij,Ik)=K(NK)N2(N1)\text{Cov}(I_j, I_k) = -\frac{K(N-K)}{N^2(N-1)} for jkj \neq k:

V(X)=nKN(1KN)+n(n1)(K(NK)N2(N1))=nKNNKNn(n1)K(NK)N2(N1)=nK(NK)N2(1n1N1)=nK(NK)N2(NnN1)\begin{aligned} \mathbb{V}(X) &= n\frac{K}{N}\left(1-\frac{K}{N}\right) + n(n-1)\left(-\frac{K(N-K)}{N^2(N-1)}\right) \\ &= n\frac{K}{N}\frac{N-K}{N} - n(n-1)\frac{K(N-K)}{N^2(N-1)} \\ &= n\frac{K(N-K)}{N^2}\left(1 - \frac{n-1}{N-1}\right) \\ &= n\frac{K(N-K)}{N^2}\left(\frac{N-n}{N-1}\right) \end{aligned}

Applications: Sampling without replacement, quality control, ecological studies


Poisson Distribution

Models the number of events occurring in a fixed interval

Parameters: λ\lambda (rate parameter), where λ>0\lambda > 0

Support: x{0,1,2,...}x \in \{0, 1, 2, ...\}

PMF: P(X=x)=eλλxx!P(X = x) = \frac{e^{-\lambda}\lambda^x}{x!}

Moment Calculations:

For the expected value:

E[X]=x=0xeλλxx!=eλx=1λx(x1)!=eλλx=1λx1(x1)!\begin{aligned} \mathbb{E}[X] &= \sum_{x=0}^{\infty} x \cdot \frac{e^{-\lambda}\lambda^x}{x!} \\ &= e^{-\lambda}\sum_{x=1}^{\infty} \frac{\lambda^x}{(x-1)!} \\ &= e^{-\lambda}\lambda\sum_{x=1}^{\infty} \frac{\lambda^{x-1}}{(x-1)!} \end{aligned}

Let k=x1k = x-1:

E[X]=eλλk=0λkk!=eλλeλ=λ\begin{aligned} \mathbb{E}[X] &= e^{-\lambda}\lambda\sum_{k=0}^{\infty} \frac{\lambda^k}{k!} \\ &= e^{-\lambda}\lambda e^{\lambda} \\ &= \lambda \end{aligned}

For the second moment:

E[X2]=x=0x2eλλxx!=eλx=1xλx(x1)!\begin{aligned} \mathbb{E}[X^2] &= \sum_{x=0}^{\infty} x^2 \cdot \frac{e^{-\lambda}\lambda^x}{x!} \\ &= e^{-\lambda}\sum_{x=1}^{\infty} x \cdot \frac{\lambda^x}{(x-1)!} \end{aligned}

Let k=x1k = x-1:

E[X2]=eλk=0(k+1)λk+1k!=eλλk=0(k+1)λkk!=eλλ(k=0kλkk!+k=0λkk!)=eλλ(λeλ+eλ)=λ(λ+1)\begin{aligned} \mathbb{E}[X^2] &= e^{-\lambda}\sum_{k=0}^{\infty} (k+1) \cdot \frac{\lambda^{k+1}}{k!} \\ &= e^{-\lambda}\lambda\sum_{k=0}^{\infty} (k+1) \cdot \frac{\lambda^k}{k!} \\ &= e^{-\lambda}\lambda\left(\sum_{k=0}^{\infty} k \cdot \frac{\lambda^k}{k!} + \sum_{k=0}^{\infty} \frac{\lambda^k}{k!}\right) \\ &= e^{-\lambda}\lambda(\lambda e^{\lambda} + e^{\lambda}) \\ &= \lambda(\lambda + 1) \end{aligned}

Therefore:

V(X)=E[X2](E[X])2=λ(λ+1)λ2=λ\begin{aligned} \mathbb{V}(X) &= \mathbb{E}[X^2] - (\mathbb{E}[X])^2 \\ &= \lambda(\lambda + 1) - \lambda^2 \\ &= \lambda \end{aligned}

Properties: The Poisson distribution is the limit of Binomial(nn, pp) as nn \to \infty, p0p \to 0 with np=λnp = \lambda.

Applications: Call centers, traffic flow, radioactive decay, rare events

Continuous Probability Distributions

Normal (Gaussian) Distribution

The most important continuous distribution in statistics

Parameters: μ\mu (mean), σ2\sigma^2 (variance)

Support: x(,)x \in (-\infty, \infty)

PDF: f(x)=1σ2πe(xμ)22σ2f(x) = \frac{1}{\sigma\sqrt{2\pi}} e^{-\frac{(x-\mu)^2}{2\sigma^2}}

Moment Calculations:

For the standard normal distribution ZN(0,1)Z \sim N(0,1):

The expected value is:

E[Z]=z12πez2/2dz=0\begin{aligned} \mathbb{E}[Z] &= \int_{-\infty}^{\infty} z \cdot \frac{1}{\sqrt{2\pi}} e^{-z^2/2} dz \\ &= 0 \end{aligned}

This follows because the integrand is an odd function and the integral converges.

For the variance:

E[Z2]=z212πez2/2dz\begin{aligned} \mathbb{E}[Z^2] &= \int_{-\infty}^{\infty} z^2 \cdot \frac{1}{\sqrt{2\pi}} e^{-z^2/2} dz \end{aligned}

Using integration by parts with u=zu = z, dv=zez2/2dzdv = z e^{-z^2/2} dz:

E[Z2]=12π[zez2/2]+12πez2/2dz=0+1=1\begin{aligned} \mathbb{E}[Z^2] &= \frac{1}{\sqrt{2\pi}} \left[ -z e^{-z^2/2} \right]_{-\infty}^{\infty} + \frac{1}{\sqrt{2\pi}} \int_{-\infty}^{\infty} e^{-z^2/2} dz \\ &= 0 + 1 \\ &= 1 \end{aligned}

Therefore, V(Z)=E[Z2](E[Z])2=10=1\mathbb{V}(Z) = \mathbb{E}[Z^2] - (\mathbb{E}[Z])^2 = 1 - 0 = 1.

For the general normal distribution X=μ+σZX = \mu + \sigma Z:

E[X]=E[μ+σZ]=μ+σE[Z]=μ\begin{aligned} \mathbb{E}[X] &= \mathbb{E}[\mu + \sigma Z] \\ &= \mu + \sigma \mathbb{E}[Z] \\ &= \mu \end{aligned} V(X)=V[μ+σZ]=σ2V(Z)=σ2\begin{aligned} \mathbb{V}(X) &= \mathbb{V}[\mu + \sigma Z] \\ &= \sigma^2 \mathbb{V}(Z) \\ &= \sigma^2 \end{aligned}

Properties: Central Limit Theorem states that sums of random variables approach normality. Linear combinations of normal variables are normal.

Additivity Property: If XN(μ1,σ12)X \sim N(\mu_1, \sigma_1^2) and YN(μ2,σ22)Y \sim N(\mu_2, \sigma_2^2) are independent, then: X+YN(μ1+μ2,σ12+σ22)X + Y \sim N(\mu_1 + \mu_2, \sigma_1^2 + \sigma_2^2)

ProofAdditivity

Let XN(μ1,σ12)X \sim N(\mu_1, \sigma_1^2) and YN(μ2,σ22)Y \sim N(\mu_2, \sigma_2^2) be independent normal random variables.

We can write X=μ1+σ1Z1X = \mu_1 + \sigma_1 Z_1 and Y=μ2+σ2Z2Y = \mu_2 + \sigma_2 Z_2, where Z1,Z2N(0,1)Z_1, Z_2 \sim N(0,1) are independent standard normal variables.

Then: X+Y=(μ1+μ2)+σ1Z1+σ2Z2X + Y = (\mu_1 + \mu_2) + \sigma_1 Z_1 + \sigma_2 Z_2

Since Z1Z_1 and Z2Z_2 are independent, the linear combination σ1Z1+σ2Z2\sigma_1 Z_1 + \sigma_2 Z_2 is also normally distributed with:

  • Mean: E[σ1Z1+σ2Z2]=σ10+σ20=0\mathbb{E}[\sigma_1 Z_1 + \sigma_2 Z_2] = \sigma_1 \cdot 0 + \sigma_2 \cdot 0 = 0
  • Variance: V(σ1Z1+σ2Z2)=σ121+σ221=σ12+σ22\mathbb{V}(\sigma_1 Z_1 + \sigma_2 Z_2) = \sigma_1^2 \cdot 1 + \sigma_2^2 \cdot 1 = \sigma_1^2 + \sigma_2^2

Therefore: σ1Z1+σ2Z2N(0,σ12+σ22)\sigma_1 Z_1 + \sigma_2 Z_2 \sim N(0, \sigma_1^2 + \sigma_2^2)

And: X+Y=(μ1+μ2)+(σ1Z1+σ2Z2)N(μ1+μ2,σ12+σ22)X + Y = (\mu_1 + \mu_2) + (\sigma_1 Z_1 + \sigma_2 Z_2) \sim N(\mu_1 + \mu_2, \sigma_1^2 + \sigma_2^2)

ProofUsing Moment Generating Functions

The MGF of XN(μ,σ2)X \sim N(\mu, \sigma^2) is: MX(t)=eμt+12σ2t2M_X(t) = e^{\mu t + \frac{1}{2}\sigma^2 t^2}

For independent XX and YY: MX+Y(t)=MX(t)MY(t)=eμ1t+12σ12t2eμ2t+12σ22t2=e(μ1+μ2)t+12(σ12+σ22)t2M_{X+Y}(t) = M_X(t) \cdot M_Y(t) = e^{\mu_1 t + \frac{1}{2}\sigma_1^2 t^2} \cdot e^{\mu_2 t + \frac{1}{2}\sigma_2^2 t^2} = e^{(\mu_1 + \mu_2)t + \frac{1}{2}(\sigma_1^2 + \sigma_2^2)t^2}

This is the MGF of N(μ1+μ2,σ12+σ22)N(\mu_1 + \mu_2, \sigma_1^2 + \sigma_2^2), proving the result.

Applications: Natural phenomena, measurement errors, statistical inference


Exponential Distribution

Models time between events in a Poisson process

Parameters: λ\lambda (rate parameter), where λ>0\lambda > 0

Support: x[0,)x \in [0, \infty)

PDF: f(x)=λeλxf(x) = \lambda e^{-\lambda x} for x0x \geq 0

Moment Calculations:

For the expected value:

E[X]=0xλeλxdx\begin{aligned} \mathbb{E}[X] &= \int_{0}^{\infty} x \lambda e^{-\lambda x} dx \end{aligned}

Using integration by parts with u=xu = x, dv=λeλxdxdv = \lambda e^{-\lambda x} dx:

E[X]=[xeλx]0+0eλxdx=0+[1λeλx]0=1λ\begin{aligned} \mathbb{E}[X] &= \left[ -x e^{-\lambda x} \right]_{0}^{\infty} + \int_{0}^{\infty} e^{-\lambda x} dx \\ &= 0 + \left[ -\frac{1}{\lambda} e^{-\lambda x} \right]_{0}^{\infty} \\ &= \frac{1}{\lambda} \end{aligned}

For the second moment:

E[X2]=0x2λeλxdx\begin{aligned} \mathbb{E}[X^2] &= \int_{0}^{\infty} x^2 \lambda e^{-\lambda x} dx \end{aligned}

Using integration by parts with u=x2u = x^2, dv=λeλxdxdv = \lambda e^{-\lambda x} dx:

E[X2]=[x2eλx]0+02xeλxdx=0+2λ0xλeλxdx=2λ1λ=2λ2\begin{aligned} \mathbb{E}[X^2] &= \left[ -x^2 e^{-\lambda x} \right]_{0}^{\infty} + \int_{0}^{\infty} 2x e^{-\lambda x} dx \\ &= 0 + \frac{2}{\lambda} \int_{0}^{\infty} x \lambda e^{-\lambda x} dx \\ &= \frac{2}{\lambda} \cdot \frac{1}{\lambda} \\ &= \frac{2}{\lambda^2} \end{aligned}

Therefore:

V(X)=E[X2](E[X])2=2λ2(1λ)2=1λ2\begin{aligned} \mathbb{V}(X) &= \mathbb{E}[X^2] - (\mathbb{E}[X])^2 \\ &= \frac{2}{\lambda^2} - \left(\frac{1}{\lambda}\right)^2 \\ &= \frac{1}{\lambda^2} \end{aligned}

Properties: Memoryless property: P(X>s+tX>s)=P(X>t)P(X > s+t | X > s) = P(X > t)

Applications: Reliability engineering, queuing theory, survival analysis


Gamma Distribution(optional)

Generalizes exponential distribution, models waiting times

Parameters: α\alpha (shape), β\beta (rate), both >0> 0

Support: x[0,)x \in [0, \infty)

PDF: f(x)=βαΓ(α)xα1eβxf(x) = \frac{\beta^\alpha}{\Gamma(\alpha)} x^{\alpha-1} e^{-\beta x} for x0x \geq 0

Moment Calculations:

The moment generating function is:

MX(t)=E[etX]=0etxβαΓ(α)xα1eβxdx=βαΓ(α)0xα1e(βt)xdx=βαΓ(α)Γ(α)(βt)α=(ββt)α for t<β\begin{aligned} M_X(t) &= \mathbb{E}[e^{tX}] \\ &= \int_{0}^{\infty} e^{tx} \frac{\beta^\alpha}{\Gamma(\alpha)} x^{\alpha-1} e^{-\beta x} dx \\ &= \frac{\beta^\alpha}{\Gamma(\alpha)} \int_{0}^{\infty} x^{\alpha-1} e^{-(\beta-t)x} dx \\ &= \frac{\beta^\alpha}{\Gamma(\alpha)} \cdot \frac{\Gamma(\alpha)}{(\beta-t)^\alpha} \\ &= \left(\frac{\beta}{\beta-t}\right)^\alpha \text{ for } t < \beta \end{aligned}

Using the MGF to find moments:

E[X]=MX(0)=αβα(βt)α1t=0=αβαβα1=αβ\begin{aligned} \mathbb{E}[X] &= M_X'(0) \\ &= \alpha \beta^{\alpha} (\beta-t)^{-\alpha-1} \Big|_{t=0} \\ &= \alpha \beta^{\alpha} \beta^{-\alpha-1} \\ &= \frac{\alpha}{\beta} \end{aligned} E[X2]=MX(0)=α(α+1)βα(βt)α2t=0=α(α+1)β2\begin{aligned} \mathbb{E}[X^2] &= M_X''(0) \\ &= \alpha(\alpha+1)\beta^{\alpha} (\beta-t)^{-\alpha-2} \Big|_{t=0} \\ &= \frac{\alpha(\alpha+1)}{\beta^2} \end{aligned}

Therefore:

V(X)=E[X2](E[X])2=α(α+1)β2α2β2=αβ2\begin{aligned} \mathbb{V}(X) &= \mathbb{E}[X^2] - (\mathbb{E}[X])^2 \\ &= \frac{\alpha(\alpha+1)}{\beta^2} - \frac{\alpha^2}{\beta^2} \\ &= \frac{\alpha}{\beta^2} \end{aligned}

Properties: Sum of α\alpha independent Exponential(β\beta) variables

Applications: Bayesian statistics, rainfall modeling, insurance


Logistic Distribution(optional)

Models growth curves and binary choice models

Parameters: μ\mu (location), ss (scale), where s>0s > 0

Support: x(,)x \in (-\infty, \infty)

PDF: f(x)=e(xμ)/ss(1+e(xμ)/s)2f(x) = \frac{e^{-(x-\mu)/s}}{s(1+e^{-(x-\mu)/s})^2}

Moment Calculations:

The cumulative distribution function is: F(x)=11+e(xμ)/sF(x) = \frac{1}{1+e^{-(x-\mu)/s}}

For the standard logistic distribution where μ=0\mu = 0 and s=1s = 1: f(x)=ex(1+ex)2f(x) = \frac{e^{-x}}{(1+e^{-x})^2}

The expected value can be found using symmetry:

E[X]=xex(1+ex)2dx\begin{aligned} \mathbb{E}[X] &= \int_{-\infty}^{\infty} x \cdot \frac{e^{-x}}{(1+e^{-x})^2} dx \end{aligned}

Let u=xu = -x, then:

E[X]=(u)eu(1+eu)2(du)=(u)eu(1+eu)2du\begin{aligned} \mathbb{E}[X] &= \int_{\infty}^{-\infty} (-u) \cdot \frac{e^{u}}{(1+e^{u})^2} (-du) \\ &= \int_{-\infty}^{\infty} (-u) \cdot \frac{e^{u}}{(1+e^{u})^2} du \end{aligned}

Using the identity eu(1+eu)2=eu(1+eu)2\frac{e^{u}}{(1+e^{u})^2} = \frac{e^{-u}}{(1+e^{-u})^2}:

E[X]=ueu(1+eu)2du=E[X]\begin{aligned} \mathbb{E}[X] &= -\int_{-\infty}^{\infty} u \cdot \frac{e^{-u}}{(1+e^{-u})^2} du \\ &= -\mathbb{E}[X] \end{aligned}

Therefore, E[X]=0\mathbb{E}[X] = 0.

For the variance:

E[X2]=x2ex(1+ex)2dx\begin{aligned} \mathbb{E}[X^2] &= \int_{-\infty}^{\infty} x^2 \cdot \frac{e^{-x}}{(1+e^{-x})^2} dx \end{aligned}

Using the substitution u=11+exu = \frac{1}{1+e^{-x}}, which gives x=ln(u1u)x = \ln\left(\frac{u}{1-u}\right) and dx=duu(1u)dx = \frac{du}{u(1-u)}:

E[X2]=01[ln(u1u)]2du\begin{aligned} \mathbb{E}[X^2] &= \int_{0}^{1} \left[\ln\left(\frac{u}{1-u}\right)\right]^2 du \end{aligned}

This integral evaluates to π23\frac{\pi^2}{3}, so V(X)=π23\mathbb{V}(X) = \frac{\pi^2}{3}.

For the general logistic distribution X=μ+sZX = \mu + sZ where ZLogistic(0,1)Z \sim \text{Logistic}(0,1):

E[X]=μ+sE[Z]=μ\begin{aligned} \mathbb{E}[X] &= \mu + s\mathbb{E}[Z] \\ &= \mu \end{aligned} V(X)=s2V(Z)=s2π23\begin{aligned} \mathbb{V}(X) &= s^2\mathbb{V}(Z) \\ &= \frac{s^2\pi^2}{3} \end{aligned}

Properties: Similar shape to normal distribution but with heavier tails. The difference of two Gumbel distributions follows a logistic distribution.

Applications: Logistic regression, choice modeling, growth curves


For more details on random variables and their properties, see Random Variable.

For expectation and variance calculations, see Expectation and Variance.