There are a number of important special matrices to become familiar with if you are studying a STEM discipline. The transpose of a matrix is important for solving problems in structural mechanics, symmetric matrices can be applied to motion, dynamics and force calculations in physics, and orthogonal matrices have many applications in data analysis, signal processing and even medicine.
Transpose of a matrix
The transpose of a matrix \(A\) is denoted by \(A^{T}\) and is found by interchanging the rows and the columns. The first row becomes the first column, the second row becomes the second column, and so on.
If \(A\) is an \(m\times n\) matrix, then \(A^{T}\) is an \(n\times m\) matrix.
Exercise – determining whether matrices are symmetric
Determine which of the following matrices are symmetric.
\[\begin{align*} A & = \left[ \begin{array}{cc} 3 & -2 \end{array} \right] \quad
B = \left[ \begin{array}{cc} 1 & -3\\
-3 & 0
\end{array} \right]\quad
C = \left[ \begin{array}{ccc} 2 & 0 & 5\\
0 & -2 & 2\\
5 & 2 & 1
\end{array} \right]\\
D & = \left[ \begin{array}{ccc} 2 & -1 & 5\\
5 & -1 & 2
\end{array} \right]\quad
E = \left[ \begin{array}{ccc} 0 & 1 & -1\\
1 & 0 & 1\\
1 & -1 & 0
\end{array} \right]
\end{align*}\]
\(B\) and \(C\) are symmetric
Orthogonal matrix
A square matrix is orthogonal if \(A^{T}A=AA^{T}=I\), where \(I\) is the unit or identity matrix.
Orthogonal matrices can be further classified as rotation or reflection matrices. If the determinant of the orthogonal matrix is \(+1\), it is a rotation matrix. If the determinant is \(-1\), it is a reflection matrix.
Example – determining whether matrices are orthogonal