Using orthonormal matrices is highly rewarding in all domains of linear algebra as it simplifies calculations a lot. Every in satisfies (normal vectors) and (perpendicular to all other columns in ).

q\_{i}^Tq\_{j} = \left{\begin{matrix} 0 & i \ne j \\ 1 & i = j \end{matrix}\right.

The most transformative properties of are

Projection

Projection is are simplified significantly by .

Gram-Schmidt

Gram-Schmidt constructs an orthonormal matrix out of a matrix with independent columns using projection. For the set of vectors in , we generate in , where a newly formed vector is orthonormal to all other earlier vectors .

For columns in we choose our first vector as given. We now must find such that . The solution is to find the error of the Projection of onto , as per definition any vector projected onto space splits into with . The error of projecting onto , and thus our is . Then .

We next need to create such that . The formula is similar in that we deduct projections of onto and from c to arrive at .

We then normalize all orthogonal vectors to be orthonormal. For example . We thus arrive at orthonormal vectors .These are the columns of and they are orthonormal.

Factorization of

relates original matrix and orthonormal matrix .

A = QR \hspace{1cm} \begin{bmatrix} a\_{1} & a\_{2} \end{bmatrix} \= \begin{bmatrix} q\_{1} & q\_{2} \end{bmatrix} \begin{bmatrix} a\_{1}^Tq\_{1} & \ \\ \underbrace{ a\_{1}^Tq\_{2} }_{\text{must} = 0 } & a_{2}^Tq\_{2} \end{bmatrix}

Due to the method we used to create , every vector of must be perpendicular to all earlier vectors that were used to create previous ‘s. Therefore entries and is in upper triangular form .