In my linear algebra text (Strang), an orthogonal matrix is defined to be a square matrix whose columns are orthonormal. In other words, an orthogonal matrix is a matrix $Q = [q_1 \cdots q_n]$ where each $q_i$ is a unit column vector of length $n$ with $$q_i^Tq_j = \begin{cases} 0 & \text{ when }i \neq j \\ 1 & \text{ when } i = j \end{cases}.$$
My book says that an orthogonal matrix $Q$ has the properties
- $Q^TQ = I$ and
- $QQ^T = I$,
from which it follows that $Q^T = Q^{-1}$. I can see how (1) follows from orthonormal columns, but I don't see why (2) is necessarily true. Can anyone provide some insight?