A norm is a real-valued function measuring the size of a vector or a matrix.
Vector Norm
For x=(x1,x2,…,xn)T, 3 standard vector norms:
1-norm
Sum of the absolute values of x‘s components. Aka. taxicab norm, since it measures distance travelled along grid lines rather than in a straight line.
∥x∥1=i=1∑n∣xi∣
2-norm
Aka. Euclidean norm. Straight-line distance from x to the origin.
∥x∥2=(i=1∑nxi2)1/2
Infinity norm
Largest absolute value among x‘s components.
∥x∥∞=1≤i≤nmax∣xi∣
Equivalent Norms
2 norms ∥⋅∥v1,∥⋅∥v2 on Rn are equivalent iff there exist positive constants c1,c2 such that for all x∈Rn,
c1∥x∥v1≤∥x∥v2≤c2∥x∥v1
∥⋅∥1,∥⋅∥2,∥⋅∥∞ are equivalent on Rn.
∥x∥∞≤∥x∥2≤n∥x∥∞
∥x∥2≤∥x∥1≤n∥x∥2
∥x∥∞≤∥x∥1≤n∥x∥∞
Matrix Norm
A matrix norm is a norm on the set of n×n matrices, additionally satisfying submultiplicativity: ∥AB∥≤∥A∥∥B∥ for all n×n matrices A,B.
Induced Matrix Norm
Aka. operator norm, subordinate norm.
The matrix norm induced by a vector norm ∥⋅∥v on Rn
∥A∥M=x=0sup∥x∥v∥Ax∥v=∥x∥v=1sup∥Ax∥v
For A=(aij), 1≤i,j≤n:
∥A∥∞=1≤i≤nmaxj=1∑n∣aij∣(maximum row sum)
∥A∥1=1≤j≤nmaxi=1∑n∣aij∣(maximum column sum)
Spectrum
The spectrum of A, σ(A), is the set of all eigenvalues of A.
σ(A)={λ;Av=λv,v∈Rn,λ is an eigenvalue of A}
Spectral Radius
The spectral radius of A, ρ(A), is the maximum absolute value among the eigenvalues of A.
ρ(A)=max{∣λ∣;λ∈σ(A)}
The matrix norm induced by the 2-norm
∥A∥2=ρ(ATA)