Norms

Work in progress. This note is still being written and incomplete.

3 min read Last updated Mon Jul 20 2026 07:44:46 GMT+0000 (Coordinated Universal Time)

A norm is a real-valued function measuring the size of a vector or a matrix.

Vector Norm

For x=(x1,x2,,xn)T\vec{x} = (x_1, x_2, \ldots, x_n)^T, 3 standard vector norms:

1-norm

Sum of the absolute values of x\vec{x}‘s components. Aka. taxicab norm, since it measures distance travelled along grid lines rather than in a straight line.

x1=i=1nxi\lVert \vec{x} \rVert_1 = \sum_{i=1}^{n} |x_i|

2-norm

Aka. Euclidean norm. Straight-line distance from x\vec{x} to the origin.

x2=(i=1nxi2)1/2\lVert \vec{x} \rVert_2 = \left( \sum_{i=1}^{n} x_i^2 \right)^{1/2}

Infinity norm

Largest absolute value among x\vec{x}‘s components.

x=max1inxi\lVert \vec{x} \rVert_\infty = \max_{1 \leq i \leq n} |x_i|

Equivalent Norms

2 norms v1,v2\lVert \cdot \rVert_{v1}, \lVert \cdot \rVert_{v2} on Rn\mathbb{R}^n are equivalent iff there exist positive constants c1,c2c_1, c_2 such that for all xRn\vec{x} \in \mathbb{R}^n,

c1xv1xv2c2xv1c_1 \lVert \vec{x} \rVert_{v1} \leq \lVert \vec{x} \rVert_{v2} \leq c_2 \lVert \vec{x} \rVert_{v1}

1,2,\lVert \cdot \rVert_1, \lVert \cdot \rVert_2, \lVert \cdot \rVert_\infty are equivalent on Rn\mathbb{R}^n.

xx2nx\lVert \vec{x} \rVert_\infty \leq \lVert \vec{x} \rVert_2 \leq \sqrt{n} \, \lVert \vec{x} \rVert_\infty x2x1nx2\lVert \vec{x} \rVert_2 \leq \lVert \vec{x} \rVert_1 \leq \sqrt{n} \, \lVert \vec{x} \rVert_2 xx1nx\lVert \vec{x} \rVert_\infty \leq \lVert \vec{x} \rVert_1 \leq n \, \lVert \vec{x} \rVert_\infty

Matrix Norm

A matrix norm is a norm on the set of n×nn \times n matrices, additionally satisfying submultiplicativity: ABAB\lVert AB \rVert \leq \lVert A \rVert \, \lVert B \rVert for all n×nn \times n matrices A,BA, B.

Induced Matrix Norm

Aka. operator norm, subordinate norm.

The matrix norm induced by a vector norm v\lVert \cdot \rVert_v on Rn\mathbb{R}^n

AM=supx0Axvxv=supxv=1Axv\lVert A \rVert_M = \sup_{\vec{x} \neq \vec{0}} \frac{\lVert A\vec{x} \rVert_v}{\lVert \vec{x} \rVert_v} = \sup_{\lVert \vec{x} \rVert_v = 1} \lVert A\vec{x} \rVert_v

For A=(aij)A = (a_{ij}), 1i,jn1 \leq i, j \leq n:

A=max1inj=1naij(maximum row sum)\lVert A \rVert_\infty = \max_{1 \leq i \leq n} \sum_{j=1}^{n} |a_{ij}| \quad \text{(maximum row sum)} A1=max1jni=1naij(maximum column sum)\lVert A \rVert_1 = \max_{1 \leq j \leq n} \sum_{i=1}^{n} |a_{ij}| \quad \text{(maximum column sum)}

Spectrum

The spectrum of AA, σ(A)\sigma(A), is the set of all eigenvalues of AA.

σ(A)={λ  ;  Av=λv,vRn,λ is an eigenvalue of A}\sigma(A) = \{ \lambda \; ; \; A\vec{v} = \lambda \vec{v}, \vec{v} \in \mathbb{R}^n, \lambda \text{ is an eigenvalue of } A \}

Spectral Radius

The spectral radius of AA, ρ(A)\rho(A), is the maximum absolute value among the eigenvalues of AA.

ρ(A)=max{λ  ;  λσ(A)}\rho(A) = \max \{ |\lambda| \; ; \; \lambda \in \sigma(A) \}

The matrix norm induced by the 2-norm

A2=ρ(ATA)\lVert A \rVert_2 = \sqrt{\rho(A^TA)}
Was this helpful?