15  Notation

15.1 Random variables, vectors, and matrices

  • Random variables are capital letters such as XX and YY.
  • A particular value of XX is xx.
  • Vectors are bold lowercase symbols (e.g., a\boldsymbol{a}, θ\boldsymbol{\theta}) or italic lowercase with arrows (e.g., a\vec{a}, θ\vec{\theta}).
  • Matrices are bold uppercase symbols (e.g., A\boldsymbol{A}, Θ\boldsymbol{\Theta}).
Expression Meaning
A\boldsymbol{A'} The transpose of matrix A\boldsymbol{A}
A1\boldsymbol{A}^{-1} The inverse of matrix A\boldsymbol{A}
diag(A)\mathtt{diag}(\boldsymbol{A}) The vector formed from the diagonal of matrix A\boldsymbol{A}
diag(a)\mathtt{diag}(\boldsymbol{a}) The diagonal matrix formed from vector a\boldsymbol{a}
1k\boldsymbol{1}_k A column vector of kk ones. If kk is absent, the length of 1\boldsymbol{1} can be inferred by context.
Ik\boldsymbol{I}_k A k×kk \times k identity matrix. If kk is absent, the dimensions of I\boldsymbol{I} can be inferred by context.

15.2 Sets and intervals

A set is a collection of distinct objects.

Expression Meaning
{a,b}\{a,b\} A set consisting of two numbers, aa and bb
[a,b]\lbrack a,b\rbrack The set of real numbers in the interval between aa and bb, inclusive
(a,b)(a,b) The set of real numbers in the interval between aa and bb, exclusive
(a,b](a,b\rbrack The set of real numbers in the interval between aa and bb, excluding aa but including bb
R\mathbb{R} The set of all real numbers [,][-\infty,\infty]
Z\mathbb{Z} The set of all integers {,2,1,0,1,2,}\{\ldots,-2,-1,0,1,2,\ldots\}
N0\mathbb{N}_0 The set of all non-negative integers: {0,1,2,...}\{ 0,1,2,...\}
N1\mathbb{N}_1 The set of all positive integers: {1,2,3,...}\{ 1,2,3,...\}
\in Is a member of (i.e., X(a,b)X \in (a,b) means that XX is a member of the set of numbers between aa and bb)

15.3 Summation

There are several ways to show that a variable is to be summed. The summation sign looks like a really big Σ, the capital Greek letter sigma. If x\boldsymbol{x} is a vector with kk elements, the sum of all kk in x\boldsymbol{x} is:

i=1kxi\sum_{i = 1}^k x_i

With matrix algebra,

i=1kxi=1x\sum_{i = 1}^k x_i=\boldsymbol{1}'\boldsymbol{x}

15.4 Statistics

Expression Meaning
μX,mX\mu_X, m_X The population and sample mean of XX
σX,sX\sigma_X, s_X The population and sample standard deviation of XX
σX2,sX2\sigma_X^2, s_X^2 The population and sample variance of XX
γ1,g1\gamma_1, g_1 The population and sample skewness
γ2,g2\gamma_2, g_2 The population and sample kurtosis

15.5 Other

Expression Meaning
(nk)\binom{n}{k} The binomial coefficient. It is just a shortcut notation for (nk)=n!k!(nk)!\binom{n}{k}=\frac{n!}{k!\left(n-k\right)!}. Read aloud, (nk)\binom{n}{k} is ``nn choose kk’’ or the number of combinations that nn things have when taken kk at a time.
fX(x;θ)f_X(x;\boldsymbol{\theta}) The probability density function or probability mass function of XX with parameters θ\boldsymbol{\theta}
FX(x;θ)F_X(x;\boldsymbol{\theta}) The cumulative distribution function of XX with parameters θ\boldsymbol{\theta}
E(X)\mathcal{E}\left(X\right) The expected value of XX