By Kardi Teknomo, PhD .
LinearAlgebra

< Next | Previous | Index >

Orthogonal Matrix

A matrix is orthogonal if the transpose is equal to its inverse , that is Matrix Orthogonal .

Since computing matrix inverse is rather difficult while computing matrix transpose is straightforward, orthogonal matrix make difficult operation easier. Orthogonal matrix is important in many applications because of its properties.

Example:

Is matrix Example Orthogonal matrix an orthogonal matrix?

Answer:

To test whether a matrix is an orthogonal matrix, we multiply the matrix to its transpose. If the result is an identity matrix, then the input matrix is an orthogonal matrix.

example orthogonal matrix

Thus, matrix Matrix Orthogonal is an orthogonal matrix.

To create random orthogonal matrix as in the interactive program below, I created random symmetric matrix and compute the modal matrix from concatenation of the Eigen vectors .

The interactive program below is designed to answers the question whether the given input matrix is an orthogonal matrix. When you click Random Example button, it will create random input matrix to provide you with many examples of both orthogonal and non-orthogonal matrices. You can also try to input your own matrix to test whether it is an orthogonal matrix or not.

Properties

Some important properties of orthogonal matrix are

  • Orthogonal matrix is always a square matrix
  • If Matrix Orthogonal is an orthogonal matrix order Matrix Orthogonal with real entries then
    • The inner product of two row vectors or two column vectors of matrix Matrix Orthogonal is zero
    • The row vector and the column vector of matrix Matrix Orthogonal is orthonormal (the Euclidean vector norm is one)
    • The transpose matrix Matrix Orthogonal is also an orthogonal matrix
    • The inverse matrix Matrix Orthogonal is also an orthogonal matrix
    • The product to its transpose is identity matrix Matrix Orthogonal
    • The absolute magnitude the determinant is one, that is Matrix Orthogonal
    • The eigenvectors of Matrix Orthogonal are real and orthogonal
    • The eigenvalues of Matrix Orthogonal are equal to +1 or -1 (note the theoretical of eigenvalue and eigenvectors of orthogonal matrix is sometimes difficult to obtain numerically due to round off error).
    • If Matrix Orthogonal and Matrix Orthogonal are vector of Matrix Orthogonal dimensions, then
      • Inner product with orthogonal matrix is preserved Matrix Orthogonal
      • Euclidean norm is preserved Matrix Orthogonal
  • For any square matrix Matrix Orthogonal , there exist a unitary matrix Matrix Orthogonal such that matrix Matrix Orthogonal is upper triangular (Schurs theorem).
  • Unitary matrix is generalization of orthogonal matrix with entries of complex numbers
  • Both Hermitian and Unitary matrix (including symmetric and orthogonal matrix) are called normal matrix because the eigen vectors form orthonormal set.

See also : Singular Value Decomposition , orthogonal vector , spectral decomposition

< Next | Previous | Index >

Rate this tutorial or give your comments about this tutorial

This tutorial is copyrighted .