Differences between revisions 1 and 2
Revision 1 as of 2026-02-02 18:41:27
Size: 1200
Comment: Initial commit
Revision 2 as of 2026-03-01 02:51:21
Size: 1208
Comment: Typo
Deletions are marked like this. Additions are marked like this.
Line 22: Line 22:
The third property is called the '''triangle inequality''', and it follows from the '''Cauchy-Schwartz inequality''' (''⟨u, v⟩^2^ ≤ ⟨u, u⟩⟨v, v⟩'') which itself is a property of inner products. The third property is called the '''triangle inequality''', and it follows from the '''Cauchy-Schwartz inequality''' (i.e., ''|⟨u, v⟩|^2^ ≤ ⟨u, u⟩⟨v, v⟩'') which itself is a property of inner products.

Norm

A norm is a generalized distance.

Contents

  1. Norm
    1. Description


Description

In Euclidean spaces, the Euclidean distance describes the magnitude of a vector.

The idea of distance is generalized for inner product spaces as the norm. The natural norm for an inner product space is defined using the inner product: ||a|| = √⟨a, a⟩.

This is not the only feasible norm. A norm must satisfy these properties:

  • ||a|| ≥ 0

  • ||ca|| = |c| ||a|| for any scalar c

  • ||a + b|| ≤ ||a|| + ||b||

The third property is called the triangle inequality, and it follows from the Cauchy-Schwartz inequality (i.e., |⟨u, v⟩|2 ≤ ⟨u, u⟩⟨v, v⟩) which itself is a property of inner products.

Other feasible norms include:

  • The p-norm
    • If a = [x y z], then ||a||p = p√(|x|p + |y|p + |z|p).

    • Note that Euclidean distance is equivalent to the 2-norm. The absolute value operators are unnecessary for even ps.

  • Max norm
    • If a = [x y z], then ||a|| = max{|x|, |y|, |z|}.


CategoryRicottone

LinearAlgebra/Norm (last edited 2026-03-01 03:27:31 by DominicRicottone)