Linear Algebra
The mathematics of data structures and transformations.
Vectors
Definition
An ordered list of numbers:
\[\mathbf{v} = \begin{pmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{pmatrix} \in \mathbb{R}^n\]
Matrices
Definition
An m × n array of numbers:
\[A = \begin{pmatrix}
a_{11} & a_{12} & \cdots & a_{1n} \\
a_{21} & a_{22} & \cdots & a_{2n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m1} & a_{m2} & \cdots & a_{mn}
\end{pmatrix}\]
Linear Transformations
Eigenvalues and Eigenvectors
Singular Value Decomposition (SVD)
Any matrix A can be decomposed:
\[A = U \Sigma V^T\]
Where:
-
U: Left singular vectors (orthonormal)
-
Σ: Diagonal matrix of singular values
-
V: Right singular vectors (orthonormal)
Related
-
Applied Mathematics — Overview
-
Cloud — ML infrastructure
-
Signal Processing — Matrix methods in DSP