|
| 1 | +# Table of Symbols {-} |
| 2 | + |
| 3 | +### Important Symbols and Where to Find Them: {-} |
| 4 | + |
| 5 | +| **Symbol** | **Typical Meaning** | **Reference**| |
| 6 | +|:-------|:--------------------|:-------| |
| 7 | +| *a, b, c, α, β, γ* | Scalars (lowercase) | | |
| 8 | +| **x, y, z** | Vectors (bold lowercase) | Section 1.1, 2.0| |
| 9 | +| **A, B, C** | Matrices (bold uppercase) | | |
| 10 | +| \( x^\top, A^\top \) | Transpose of a vector or matrix | | |
| 11 | +| \( A^{-1} \) | Inverse of a matrix | | |
| 12 | +| \( \langle x, y \rangle \) | Inner product of \(x\) and \(y\) | | |
| 13 | +| \( x^\top y \) | Dot product of \(x\) and \(y\) | Section 2.0 | |
| 14 | +| \( B = (b_1, b_2, b_3) \) | Ordered tuple | |
| 15 | +| \( B = [b_1, b_2, b_3] \) | Matrix of column vectors stacked horizontally | |
| 16 | +| \( B = \{b_1, b_2, b_3\} \) | Set of vectors (unordered) | |
| 17 | +| \( \mathbb{Z}, \mathbb{N} \) | Integers and natural numbers | |
| 18 | +| \( \mathbb{R}, \mathbb{C} \) | Real and complex numbers | |
| 19 | +| \( \mathbb{R}^n \) | \(n\)-dimensional vector space of reals | |
| 20 | +| \( \forall x \) | Universal quantifier (“for all \(x\)”) | |
| 21 | +| \( \exists x \) | Existential quantifier (“there exists \(x\)”) | |
| 22 | +| \( a := b \) | \(a\) is defined as \(b\) | |
| 23 | +| \( a =: b \) | \(b\) is defined as \(a\) | |
| 24 | +| \( a \propto b \) | \(a\) is proportional to \(b\) (\(a = \text{constant} \cdot b\)) | |
| 25 | +| \( g \circ f \) | Function composition (“\(g\) after \(f\)”) | |
| 26 | +| \( \Leftrightarrow \) | If and only if | |
| 27 | +| \( \Rightarrow \) | Implies | |
| 28 | +| \( A, C \) | Sets | |
| 29 | +| \( a \in A \) | \(a\) is an element of \(A\) | |
| 30 | +| \( \emptyset \) | Empty set | |
| 31 | +| \( A \setminus B \) | Elements in \(A\) but not in \(B\) | |
| 32 | +| \( D \) | Number of dimensions (\(d = 1, \dots, D\)) | Chapter 8 |
| 33 | +| \( N \) | Number of data points (\(n = 1, \dots, N\)) | Chapter 8 |
| 34 | +| \( I_m \) | Identity matrix of size \(m \times m\) | |
| 35 | +| \( 0_{m,n} \) | Matrix of zeros of size \(m \times n\) | |
| 36 | +| \( 1_{m,n} \) | Matrix of ones of size \(m \times n\) | |
| 37 | +| \( e_i \) | Standard (canonical) basis vector (1 in the \(i\)-th position) | |
| 38 | +| `dim` | Dimensionality of a vector space | |
| 39 | +| `rk(A)` | Rank of matrix \(A\) | |
| 40 | +| `Im(Φ)` | Image of a linear mapping \(Φ\) | |
| 41 | +| `ker(Φ)` | Kernel (null space) of \(Φ\) | |
| 42 | +| `span[b₁]` | Span (generating set) of \(b_1\) | |
| 43 | +| `tr(A)` | Trace of \(A\) | |
| 44 | +| `det(A)` | Determinant of \(A\) | |
| 45 | +| \( | \cdot | \) | Absolute value or determinant (depending on context) | |
| 46 | +| \( \| \cdot \| \) | Norm (Euclidean unless stated otherwise) | |
| 47 | +| \( \lambda \) | Eigenvalue or Lagrange multiplier | |
| 48 | +| \( E_\lambda \) | Eigenspace corresponding to eigenvalue \( \lambda \) | |
| 49 | +| \( x \perp y \) | \(x\) and \(y\) are orthogonal | |
| 50 | +| \( V \) | Vector space | |
| 51 | +| \( V^\perp \) | Orthogonal complement of \(V\) | |
| 52 | +| \( \sum_{n=1}^N x_n \) | Sum: \(x_1 + \dots + x_N\) | |
| 53 | +| \( \prod_{n=1}^N x_n \) | Product: \(x_1 \cdot \dots \cdot x_N\) | |
| 54 | +| \( \theta \) | Parameter vector | |
| 55 | +| \( \frac{\partial f}{\partial x} \) | Partial derivative of \(f\) with respect to \(x\) | |
| 56 | +| \( \frac{df}{dx} \) | Total derivative of \(f\) with respect to \(x\) | |
| 57 | +| \( \nabla \) | Gradient | |
| 58 | +| \( f^* = \min_x f(x) \) | Minimum value of \(f\) | |
| 59 | +| \( x^* \in \arg\min_x f(x) \) | Value \(x^*\) that minimizes \(f\) | |
| 60 | +| \( \mathcal{L} \) | Lagrangian | |
| 61 | +| \( \mathcal{L} \) | Negative log-likelihood | |
| 62 | +|$\binom{n}{k}$ | Binomial coefficient, $n$ choose $k$| |
| 63 | +| \( V_X[x] \) | Variance of \(x\) with respect to the random variable \(X\) | |
| 64 | +| \( E_X[x] \) | Expectation of \(x\) with respect to the random variable \(X\) | |
| 65 | +| \( \mathrm{Cov}_{X,Y}[x, y] \) | Covariance between \(x\) and \(y\) | |
| 66 | +| \( X \perp\!\!\!\perp Y \mid Z \) | \(X\) is conditionally independent of \(Y\) given \(Z\) | |
| 67 | +| \( X \sim p \) | Random variable \(X\) is distributed according to \(p\) | |
| 68 | +| \( \mathcal{N}(\mu, \Sigma) \) | Gaussian distribution with mean \(\mu\) and covariance \(\Sigma\) | |
| 69 | +| \( \mathrm{Ber}(\mu) \) | Bernoulli distribution with parameter \(\mu\) | |
| 70 | +| \( \mathrm{Bin}(N, \mu) \) | Binomial distribution with parameters \(N, \mu\) | |
| 71 | +| \( \mathrm{Beta}(\alpha, \beta) \) | Beta distribution with parameters \(\alpha, \beta\) | |
| 72 | + |
| 73 | +--- |
| 74 | + |
| 75 | +### Table of Abbreviations and Acronyms {-} |
| 76 | + |
| 77 | +| Acronym | Meaning | |
| 78 | +|:---------|:---------| |
| 79 | +| e.g. | *Exempli gratia* (Latin: “for example”) | |
| 80 | +| GMM | Gaussian mixture model | |
| 81 | +| i.e. | *Id est* (Latin: “this means”) | |
| 82 | +| i.i.d. | Independent, identically distributed | |
| 83 | +| MAP | Maximum a posteriori | |
| 84 | +| MLE | Maximum likelihood estimation/estimator | |
| 85 | +| ONB | Orthonormal basis | |
| 86 | +| PCA | Principal component analysis | |
| 87 | +| PPCA | Probabilistic principal component analysis | |
| 88 | +| REF | Row-echelon form | |
| 89 | +| SPD | Symmetric, positive definite | |
| 90 | +| SVM | Support vector machine | |
0 commit comments