Probability

Random Variables

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

status: publishedimportance: criticaldifficulty 2/5math: undergraduateread: 14mlive demo
Editorial probability illustration of raw outcomes flowing through a measurement map into a discrete value distribution.

Concept Structure

Random Variables

01Intuition

Start with the picture, metaphor, or geometric mechanism.

02Math

Make the objects explicit and connect them with notation.

03Code

Mirror the equations with runnable implementation details.

04Interactive Demo

Manipulate the mechanism and watch the idea respond.

1prerequisites
1next concepts
3related links

Learning map

Random Variables
BeforeProbability BasicsNow4/4 sections readyTryManipulate one control and predict the visible change.NextDistributions

Object flow

4/4 sections readyAsk about thisResearch room
ConceptRandom VariablesProbability
1 source attachedLocal snapshot ready
concept:probability/random-variables

Conceptual Bridge

What should feel connected as you move through this page.

Carry inProbability Basics

Bring the mental model from Probability Basics; this page will reuse it instead of restarting from zero.

Work hereRandom Variables

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

Carry outDistributions

The next edge should feel earned: use the demo prediction here before following Distributions.

Test the linkManipulate one control and predict the visible change.Then continue to Distributions
01

01

Intuition

Build the mental picture first so the rest of the page has something to attach to.

Section prompt

A tilted die produces one raw outcome, say ω=5\omega=5. What number did you actually measure: the face value 55, the high-roll indicator 11, the parity 11, or the squared miss (65)2=1(6-5)^2=1?

The phrase "random variable" sounds as if the variable itself is a little random object. It is more useful to think of it as a measurement you decide to take from an uncertain situation.

The world produces raw outcomes:

  • a sequence of coin flips
  • an image sampled from a dataset
  • a user clicking or not clicking
  • a training example with an input and label

A random variable turns each raw outcome into a number:

  • XX = number of heads in 10 coin flips
  • YY = pixel intensity at one location
  • LL = model loss on a sampled training example

Once the raw world has been measured numerically, probability can move from outcomes to values. That moved probability is the distribution of the random variable. From there we can talk about average behavior, spread, likelihood, and the noisy estimates that appear during training.

The distinction is small but load-bearing: the outcome might be a whole image or sentence, while the random variable might be one scalar loss, one token count, or one feature activation.

"Measurement" is a metaphor, not a requirement that there is a physical instrument. The important fact is that XX is a rule: once the raw outcome ω\omega is known, the value X(ω)X(\omega) is determined.

02

02

Math

Translate the story into symbols, assumptions, and a derivation you can inspect.

Section prompt

Let (Ω,F,P)(\Omega,\mathcal F,P) be a probability space. The sample space Ω\Omega contains raw outcomes ω\omega, the event collection F\mathcal F says which subsets can be assigned probabilities, and PP assigns probability to those events.

A real-valued random variable is a measurable function

X:(Ω,F)(R,B(R)).X:(\Omega,\mathcal F)\to(\mathbb R,\mathcal B(\mathbb R)).

Measurable means that whenever BB is a Borel set of possible values, the set of raw outcomes that land in BB is an event:

X1(B)={ωΩ:X(ω)B}F.X^{-1}(B)=\{\omega\in\Omega:X(\omega)\in B\}\in\mathcal F.

The distribution, or law, of XX is the pushforward of PP through XX. For any Borel set BB(R)B\in\mathcal B(\mathbb R),

PX(B)=P(XB)=P({ωΩ:X(ω)B}).P_X(B)=P(X \in B)=P(\{\omega \in \Omega : X(\omega) \in B\}).

In the finite discrete case, write P(ω)P(\omega) as shorthand for the atomic mass P({ω})P(\{\omega\}). Then all outcomes mapping to the same value get grouped together:

pX(x)=P(X=x)=ω:X(ω)=xP(ω).p_X(x)=P(X=x)=\sum_{\omega : X(\omega)=x} P(\omega).

The support of XX in this finite setting is

supp(X)={x:pX(x)>0}.\operatorname{supp}(X)=\{x:p_X(x)>0\}.

The group of outcomes mapping to one value is the fiber over xx:

X1({x})={ω:X(ω)=x}.X^{-1}(\{x\})=\{\omega:X(\omega)=x\}.

The probability mass of that fiber becomes the PMF value pX(x)p_X(x).

This is the bridge to the next concept, distributions: the random variable is the map, and the distribution is the probability mass after the map.

The expectation can be computed over raw outcomes or over the induced distribution:

E[X]=ωΩX(ω)P(ω)=xxpX(x).\mathbb{E}[X] = \sum_{\omega \in \Omega} X(\omega)P(\omega) = \sum_x x\,p_X(x).

Variance measures squared spread around that expectation:

Var(X)=E[(XE[X])2]=E[X2](E[X])2.\operatorname{Var}(X) = \mathbb{E}[(X-\mathbb{E}[X])^2] = \mathbb{E}[X^2] - (\mathbb{E}[X])^2.

When XX has a density fXf_X, probabilities and expectations are computed by integration:

P(aXb)=abfX(x)dx.P(a\le X\le b)=\int_a^b f_X(x)\,dx. E[X]=xfX(x)dx.\mathbb{E}[X]=\int x\,f_X(x)\,dx.

A density value is not itself a probability, and not every distribution has an ordinary density. The measure PXP_X is the general object; PMFs and densities are common representations of it.

In machine learning, a common random variable is the loss on a sampled example. If ZZ is a random training example and θ\theta are model parameters, then

L=(Z;θ)L=\ell(Z;\theta)

is a random variable because the sampled example ZZ is uncertain. Training tries to reduce E[L]\mathbb{E}[L], while a mini-batch computes a noisy estimate:

L^m=1mi=1m(Zi;θ).\hat L_m=\frac{1}{m}\sum_{i=1}^m \ell(Z_i;\theta).

For independent sampled examples, E[L^m]=E[L]\mathbb E[\hat L_m]=\mathbb E[L] and Var(L^m)=Var(L)/m\operatorname{Var}(\hat L_m)=\operatorname{Var}(L)/m. That is one reason batch size, learning rate, and optimization stability are connected.

This is also the bridge to likelihood and Bayesian inference. Observed data are values of random variables under a model distribution; likelihood scores those observed values, cross-entropy averages their surprise, and Bayesian inference uses likelihoods to update distributions over unknowns.

03

03

Code

Keep the implementation aligned with the notation so the algorithm is legible.

Section prompt
from collections import defaultdict
from math import exp

# Raw outcome space: a tilted six-sided die.
omega = [1, 2, 3, 4, 5, 6]

def tilted_die(tilt):
    weights = {w: exp(tilt * (w - 3.5)) for w in omega}
    total = sum(weights.values())
    return {w: weight / total for w, weight in weights.items()}

transforms = {
    "face value": lambda w: w,
    "high roll": lambda w: 1 if w >= 5 else 0,
    "odd parity": lambda w: 1 if w % 2 == 1 else 0,
    "squared miss": lambda w: (6 - w) ** 2,
}

def pushforward(P, X):
    pmf = defaultdict(float)
    groups = defaultdict(list)

    for w, prob in P.items():
        x = X(w)
        pmf[x] += prob
        groups[x].append(w)

    pmf = dict(sorted(pmf.items()))
    groups = {x: groups[x] for x in pmf}

    mean_from_outcomes = sum(X(w) * prob for w, prob in P.items())
    mean_from_pmf = sum(x * prob for x, prob in pmf.items())
    variance = sum((x - mean_from_pmf) ** 2 * prob for x, prob in pmf.items())

    assert abs(sum(P.values()) - 1.0) < 1e-12
    assert abs(sum(pmf.values()) - 1.0) < 1e-12
    assert abs(mean_from_outcomes - mean_from_pmf) < 1e-12

    return pmf, groups, mean_from_pmf, variance

P = tilted_die(0.35)

for name, X in transforms.items():
    pmf, groups, mean, variance = pushforward(P, X)
    print(f"\n{name}")
    print("support:", list(pmf))
    print("groups:", groups)
    print("pmf:", {x: round(p, 3) for x, p in pmf.items()})
    print("E[X], Var(X):", round(mean, 3), round(variance, 3))
04

04

Interactive Demo

Use direct manipulation to connect the explanation to a moving system.

Section prompt

Change the probability tilt over raw die outcomes, then change what XX measures. Positive tilt favors larger die faces; negative tilt favors smaller die faces.

Before revealing the grouped distribution, use the visible rule and raw probabilities to predict which measured value will collect the most probability mass. The demo hides the support, expectation, variance, and dominant fiber until you commit.

After reveal, compare the winning fiber with the readouts: the same outcome space can produce very different distributions, expectations, and variances depending on the measurement rule.

Live Concept Demo

Explore Random Variables

The stage is code-native and interactive. Use it to test the explanation against the mechanism.

difficulty 2/5undergraduatecode-aligned
Demo Prediction Checkpoint

Manipulate one control and predict the visible change.

Commit to what Random Variables should make visible before reading the result.

After The First Pass

Turn the concept into an inspected object.

Once the invariant is visible in the intuition, math, code, and demo, use these panels to inspect the mechanism visually, check source support, practice the idea, and attach a grounded research question.

Mechanism Storyboard

See the idea move before the page explains it

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

Prediction open01 / Intuition
Editorial probability illustration of raw outcomes flowing through a measurement map into a discrete value distribution.
Prediction lens

Start with the picture, metaphor, or geometric mechanism.

Commit first

Before reading further, choose the kind of change Random Variables should make visible.

Visual Inquiry

Make the image answer a mathematical question

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

4/4 stages readyLive demo connected
Prediction

Which visible object should carry the first intuition?

Commit first

Pick the cue that should make Random Variables easier to reason about before the page gives the answer.

Source Grounding

Canonical references for the mechanism on this page.

book · 2020Mathematics for Machine LearningDeisenroth, Faisal, and Ong

Grounds random variables, expectations, variance, and the bridge from outcomes to numerical features.

Open source

Claim Review

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

Status1 substantive review recorded

Claims without a substantive review badge still need exact source-support review.

Sources1 reference

deisenroth-2020-mml

Witnesses4 local objects

Use equation, code, and demo objects to check whether the source support is operational.

Substantively reviewedA random variable is a measurable map from raw outcomes to values; pushing probability through that map gives its distribution, and expectations can be computed from either raw outcomes or the induced value distribution.Claim metadata: source checked

Mathematics for Machine Learning introduces random variables, distributions, expectations, and variance as the probability vocabulary needed for ML, supporting the page's map-from-outcomes and induced-distribution framing.

Sources: Mathematics for Machine LearningThis checks the standard real-valued and finite teaching framing for random variables, induced laws, expectations, and variance, not full measure-theoretic generality or every stochastic-process setting.A bounded review summary is present; still check caveats and exact source scope.

Checked MML 6.1.2, 6.2, and 6.4.1: MML defines a probability space and target space T, calls a function X:Omega->T a random variable, defines preimages X^-1(S), gives PX(S)=P(X in S)=P(X^-1(S)), and calls PX, equivalently P composed with X^-1, the law/distribution of X. MML also discusses Borel sigma-algebra technicalities and defines expected values by sums/integrals over p(x). The local math/code/demo make the measurable-Borel condition and finite raw-vs-induced-PMF expectation equality explicit.

Reviewer: codex+oracle; reviewed 2026-05-07

Practice Loop

Try the idea before it explains itself

A random variable is a function from outcomes to numbers; its distribution lets you compute expectations, variances, and likelihoods.

Readiness0/3 checks ready
Predict

Before touching the demo, predict one visible change that should happen in Random Variables.

Hint 1

Reveal when your model needs a nudge.

Hint 2

Reveal when your model needs a nudge.

Hint 3

Reveal when your model needs a nudge.

Object research drawerClose
ConceptRandom VariablesProbability

Research Room

Attach the question to an exact object

Pick the concept, equation, source, code witness, claim, misconception, or demo state before asking for help. The handoff stays grounded to that object.
Next local actionNo local draft saved yet

Open the draft below to save one note and next action in this browser.

conceptProbability

Random Variables

Anchored question

What is the smallest example that makes Random Variables click without losing the math?

Local action draftNo local draft saved yetExpand only when ready to capture one local next action
Local action draft

This draft stays locally in this browser for concept:probability/random-variables.

No local draft saved.
Evidence to inspect
  • Source ids to inspect: deisenroth-2020-mml
  • Definition, prerequisite, and contrast concept links
  • The equation or code witness that makes the concept operational
  • One demo state that shows the invariant instead of a slogan
What would resolve this
  • The learner can state the mechanism in their own words
  • The learner can name the prerequisite that would repair confusion
  • The learner can predict how the mechanism changes under one perturbation
Grounded AI handoff

I am working in Continuous Function's research reading room. Object: concept - Random Variables Object key: concept:probability/random-variables Context: Probability Anchor id: concept/concept-notebook/probability/random-variables Open question: What is the smallest example that makes Random Variables click without losing the math? Evidence to inspect: - Source ids to inspect: deisenroth-2020-mml - Definition, prerequisite, and contrast concept links - The equation or code witness that makes the concept operational - One demo state that shows the invariant instead of a slogan What would resolve this: - The learner can state the mechanism in their own words - The learner can name the prerequisite that would repair confusion - The learner can predict how the mechanism changes under one perturbation Answer as a careful research tutor: stay source-grounded, separate verified evidence from assumptions, name the relevant math objects, and end with one next action.

Open source object
concept/concept-notebook/probability/random-variables concept:probability/random-variables