Orthonormal

1 min read Last updated Sat Jun 27 2026 08:46:52 GMT+0000 (Coordinated Universal Time)

Orthonormal Vectors

A set of nn column vectors is orthonormal iff:

  • They are pairwise orthogonal AND
  • i{1,,n},  vi=1\forall i \in \{1,\dots,n\},\; \|v_i\| = 1

Orthonormal Matrix

A matrix QQ whose columns are orthonormal. For real matrices: QTQ=IQ^T Q = I (orthogonal matrix). For complex matrices: QQ=IQ^* Q = I (unitary matrix).

Key property: Q1=QTQ^{-1} = Q^T (real) or Q1=QQ^{-1} = Q^* (complex).

Why Orthonormal Bases

  • Preserve lengths and angles under transformation: Qx=x\|Qx\| = \|x\|.
  • Coordinates in an orthonormal basis are computed by a simple dot product, no matrix inversion needed.
  • Numerically stable: no accumulation of rounding errors across operations.
Was this helpful?