Mathwords logoMathwords

Variate — Definition, Formula & Examples

A variate is a single particular value taken by a random variable. While a random variable describes the full set of possible outcomes, a variate refers to one specific observed or generated value from that variable's distribution.

A variate is a realized value of a random variable XX. If XX follows a probability distribution FF, then each observation xix_i drawn from FF is called a variate. The term is also used more broadly as a synonym for 'random variable' itself, depending on the statistical tradition.

How It Works

When you sample from a probability distribution, each individual outcome you obtain is a variate. For instance, if you roll a fair die, the random variable XX can take values 1 through 6, and the number you actually roll — say 4 — is a variate. In simulation and Monte Carlo methods, generating variates from a specified distribution (normal, uniform, exponential, etc.) is a core task. Statisticians sometimes also use 'variate' interchangeably with 'random variable,' so context matters.

Worked Example

Problem: A random variable XX follows a normal distribution with mean 50 and standard deviation 10. A researcher draws three observations from this distribution and obtains 42, 55, and 47. Identify the variates.
Step 1: Recognize that XN(50,102)X \sim N(50, 10^2) defines the random variable and its distribution.
XN(50,100)X \sim N(50,\, 100)
Step 2: Each observed value drawn from this distribution is a variate. The three variates are the specific numbers obtained.
x1=42,x2=55,x3=47x_1 = 42,\quad x_2 = 55,\quad x_3 = 47
Answer: The variates are 42, 55, and 47 — three individual realized values of the normally distributed random variable XX.

Why It Matters

Generating random variates is essential in Monte Carlo simulation, bootstrapping, and Bayesian computation. Understanding the distinction between a random variable (the abstract model) and a variate (a concrete realization) helps you read research papers and software documentation more precisely.

Common Mistakes

Mistake: Confusing a variate with a random variable.
Correction: A random variable is the function mapping outcomes to numerical values; a variate is one specific value that function produces. Think of the random variable as the process and the variate as a single result.