Norms

1. Vector Norms

Let x=(x1,⋯ ,xn)tx = (x_1, \cdots, x_n)^t be an n×1n \times 1 vector.

  • pp-norm: ∥x∥p=(∑i=1n∣xi∣p)1p\left\| x \right\|_p = \left(\sum_{i=1}^n \vert x_i \vert^p\right)^{\frac{1}{p}}
  • 11-norm: ∥x∥1=∑i=1n∣xi∣\left\| x \right\|_1 = \sum_{i=1}^n \vert x_i \vert
  • 22-norm(Euclidean norm): ∥x∥2=(∑i=1n∣xi∣2)12\left\| x \right\|_2 = \left(\sum_{i=1}^n \vert x_i \vert^2\right)^{\frac{1}{2}}
  • ∞\infty-norm: ∥x∥∞=max⁡∣xi∣\left\| x \right\|_{\infty} = \max \vert x_i \vert
∥x∥∞=lim⁡p→∞(∑i=1n∣xi∣p)1p=lim⁡p→∞(∣xj∣p)1p where j=arg max⁡∣xi∣=max⁡∣xi∣\begin{aligned} \left\| x \right\|_{\infty} &= \lim_{p \to \infty} \left(\sum_{i=1}^n \vert x_i \vert^p\right)^{\frac{1}{p}} = \lim_{p \to \infty} \left(\vert x_j \vert^p\right)^{\frac{1}{p}} \text{ where } j = \argmax \vert x_i \vert \\ &= \max \vert x_i \vert \end{aligned}
  • The graphs of ∥x∥1=∥x∥2=∥x∥∞=1\left\| x \right\|_1 = \left\| x \right\|_2 = \left\| x \right\|_{\infty} = 1 for x∈R2x \in \R^2 are as follows.

PNorms

  • For any vector x‾\overline{x}, ∥x∥∞≤∥x∥2≤∥x∥1\left\| x \right\|_{\infty} \le \left\| x \right\|_2 \le \left\| x \right\|_1. The below image shows this comparison when x‾∈R2\overline{x} \in \R^2.

NormComparison

  • Meanwhile, ∥x∥1≤n∥x∥2\left\| x \right\|_1 \le \sqrt{n} \left\| x \right\|_2, ∥x∥2≤n∥x∥∞\left\| x \right\|_2 \le \sqrt{n} \left\| x \right\|_{\infty}, and ∥x∥1≤n∥x∥∞\left\| x \right\|_1 \le n \left\| x \right\|_{\infty}.
  • If ∥x∥p>0\left\| x \right\|_p > 0, then x≠0x \not = 0.
  • ∥γx∥p=∣γ∣∥x∥p\left\| \gamma x \right\|_p = \vert \gamma \vert \left\| x \right\|_p where γ∈R\gamma \in \mathbb{R}.
  • ∥x+y∥p≤∥x∥p+∥y∥p\left\| x + y \right\|_p \le \left\| x \right\|_p + \left\| y \right\|_p.
  • ∣∥x∥p−∥y∥p∣≤∥x−y∥p\vert \left\| x \right\|_p - \left\| y \right\|_p \vert \le \left\| x - y \right\|_p.

2. Matrix Norms

Suppose that AA is an m×nm \times n matrix and aija_{ij} is the (i,j)(i, j) element of AA. ∥A∥\left\| A \right\| means the maximum stretching of AA to any vector xx. ∥A∥=max⁡x≠0∥Ax∥∥x∥\begin{aligned} \left\| A \right\| = \max_{x \not = 0} \frac{\left\| Ax \right\|}{\left\| x \right\|} \end{aligned}

  • ∥A∥1=max⁡∑i=1m∣aij∣\left\| A \right\|_1 = \max \sum_{i=1}^m \vert a_{ij} \vert, which means the largest column sum of AA.
  • ∥A∥2\left\| A \right\|_2 is the largest singular value of AA, which means the square root of the largest eigenvalue of AtAA^tA.
  • When AA is symmetric, AtAv=A(λv)=λ2vA^tAv = A(\lambda v) = \lambda^2 v where xx and λ\lambda are the eigenvector and eigenvalue of AA. Then
∥A∥2=λmax⁡(AtA)=λmax⁡(A)2=∣λmax⁡(A)∣\begin{aligned} \left\| A \right\|_2 = \sqrt{\lambda_{\max} (A^t A)} = \sqrt{\lambda_{\max} (A)^2} = \vert \lambda_{\max} (A) \vert \end{aligned}
  • ∥A∥∞=max⁡∑i=1n∣aij∣\left\| A \right\|_{\infty} = \max \sum_{i=1}^n \vert a_{ij} \vert, which means the largest row sum of AA.
  • ∥A∥>0\left\| A \right\| > 0, then A≠OA \not = O.
  • ∥γA∥=∣γ∣∥A∥\left\| \gamma A \right\| = \vert \gamma \vert \left\| A \right\| where γ∈R\gamma \in \mathbb{R}.
  • ∥A+B∥≤∥A∥+∥B∥\left\| A + B \right\| \le \left\| A \right\| + \left\| B \right\|.
  • ∥AB∥≤∥A∥∥B∥\left\| AB \right\| \le \left\| A \right\| \left\| B \right\|.
  • ∥Ax∥≤∥A∥∥x∥\left\| Ax \right\| \le \left\| A \right\| \left\| x \right\|.

Reference

[1] Michael T. Heath, Scientific Computing: An Introductory Survey. 2nd Edition, McGraw-Hill Higher Education.


© 2026. All rights reserved.