x∈A
Element of
Read it: "x is in A"
x is a member of the set A.
A⊂B
Proper subset
Read it: "A is a proper subset of B"
Every element of A is in B, and A=B.
A∪B
Union
Read it: "A union B"
Elements that are in A, in B, or in both.
A∩B
Intersection
Read it: "A intersect B"
Elements that are in both A and B.
∅
Empty set
Read it: "the empty set"
The set with no elements.
∀x∈A
For all
Read it: "for all x in A"
The statement holds for every x in A.
∃x∈A
There exists
Read it: "there exists x in A"
At least one x∈A satisfies the condition.
N
Natural numbers
Read it: "the natural numbers"
{0,1,2,3,…} (or {1,2,…} depending on convention).
R
Real numbers
Read it: "the reals"
All numbers on the continuous number line.
Rn
n-dim Euclidean space
Read it: "R-n"
All ordered n-tuples of reals.
f:X→Y
Function notation
Read it: "f from X to Y"
f is a function with domain X and codomain Y.
f∘g
Composition
Read it: "f composed with g"
(f∘g)(x)=f(g(x)).
x→alimf(x)
Limit
Read it: "limit as x goes to a of f(x)"
Value f(x) approaches as x gets arbitrarily close to a.
x
Vector (bold lowercase)
Read it: "vector x" (or "bold x")
Convention: bold lowercase letters are vectors. x∈Rd.
xi
i-th component
Read it: "x sub i"
Scalar coordinate i of vector x.
∥x∥
Norm
Read it: "norm of x"
A measure of length. Defaults to L2 unless subscripted.
∥x∥2
L2 norm (Euclidean)
Read it: "L2 norm of x"
∑ixi2 — the geometric length.
⟨x,y⟩
Inner product
Read it: "inner product of x and y"
Scalar measure of similarity between two vectors.
x⋅y
Dot product
Read it: "x dot y"
∑ixiyi — the standard inner product on Rn.
x⊤
Transpose (vector)
Read it: "x transpose"
Switches a column vector to a row vector. x⊤y is the dot product.
A
Matrix (bold uppercase)
Read it: "matrix A"
Convention: bold uppercase letters are matrices. A∈Rm×n.
Aij
Matrix entry
Read it: "A sub i j"
Element in row i, column j.
A⊤
Transpose
Read it: "A transpose"
Swap rows and columns: (A⊤)ij=Aji.
A−1
Inverse
Read it: "A inverse"
Matrix with AA−1=I — exists iff det(A)=0.
det(A)
Determinant
Read it: "determinant of A"
Scalar measuring the signed volume scaling of the linear map A.
tr(A)
Trace
Read it: "trace of A"
Sum of diagonal entries: ∑iAii. Also equals the sum of eigenvalues.
In
Identity matrix
Read it: "identity"
n×n diagonal matrix with all 1s. Ix=x.
dxdf
Derivative
Read it: "d f over d x"
Instantaneous rate of change of f with respect to x.
∂xi∂f
Partial derivative
Read it: "partial f partial x i"
Derivative with respect to one variable, others held fixed.
∇f
Gradient
Read it: "gradient of f" or "nabla f"
Vector of partial derivatives — points in direction of steepest ascent.
∫abf(x)dx
Definite integral
Read it: "integral from a to b of f of x dx"
Signed area between f and the x-axis on [a,b].
i=1∑nai
Sum
Read it: "sum from i=1 to n of a sub i"
a1+a2+⋯+an.
i=1∏nai
Product
Read it: "product from i=1 to n of a sub i"
a1⋅a2⋯an.
P(A)
Probability of event
Read it: "probability of A"
A number in [0,1] measuring how likely event A is.
p(x)
PDF / PMF
Read it: "p of x"
Density (continuous) or mass (discrete) of a random variable at x.
p(x∣y)
Conditional
Read it: "p of x given y"
Density of X given that Y=y is observed.
E[X]
Expectation
Read it: "expected value of X"
Average value of X under its distribution.
Var(X)
Variance
Read it: "variance of X"
E[(X−E[X])2] — squared spread around the mean.
X∼D
Distributed as
Read it: "X distributed as D"
X has distribution D.
N(μ,σ2)
Gaussian / Normal
Read it: "normal with mean mu and variance sigma squared"
Symmetric bell-shaped distribution with mean μ and variance σ2.
xargminf(x)
Argmin
Read it: "argmin over x of f"
The x that minimises f (not the minimum value).
xargmaxf(x)
Argmax
Read it: "argmax over x of f"
The x that maximises f.
L(θ)
Loss / objective
Read it: "loss of theta"
Function we minimise during training.
η
Learning rate
Read it: "eta"
Step size in gradient-based optimisation.
θ
Parameters
Read it: "theta"
Generic name for the parameters of a model.
w
Weights
Read it: "weights"
Linear coefficients of a model.
b
Bias
Read it: "bias"
Additive offset in y^=w⊤x+b.
y^
Predicted output
Read it: "y hat"
Model's prediction (the hat marks 'estimated').
σ(z)
Sigmoid
Read it: "sigmoid of z"
1+e−z1 — squashes any real number into (0,1).
softmax(z)i
Softmax
Read it: "softmax of z, i-th component"
∑jezjezi — converts logits to a probability vector.
O(f(n))
Big-O
Read it: "big O of f"
Upper bound: grows no faster than f.
α
Alpha
Read it: "alpha"
Often: prior parameter (Beta/Dirichlet), learning rate (older texts), Type-I error.
ε
Epsilon
Read it: "epsilon"
Small constant, error term, exploration rate in RL.
η
Eta
Read it: "eta"
Most common letter for the learning rate.
θ
Theta
Read it: "theta"
Generic parameter vector. Also: angle.
λ
Lambda
Read it: "lambda"
Eigenvalue, regularisation strength, rate of an exponential / Poisson.
μ
Mu
Read it: "mu"
Mean (statistics), step size in some optimisers.
π
Pi
Read it: "pi"
Mixture weights, RL policy, and the constant ≈3.14159.
σ
Sigma
Read it: "sigma"
Standard deviation, sigmoid (yes, the same letter is reused).
Ω
Big Omega (sample space)
Read it: "big omega"
Sample space — the set of all possible outcomes.