A symmetric matrix is a square matrix that is equal to its transpose, meaning its elements are mirrored across the main diagonal. In simple terms, if element aij = aji, the matrix is symmetric. These matrices often arise in mathematics, physics, and data science due to their elegant properties, such as real eigenvalues, orthogonal eigenvectors, and diagonalizability. Symmetric matrices play a key role in simplifying computations and modeling real-world systems efficiently.
Let’s begin with the symmetric matrix definition:
A symmetric matrix is a square matrix that is equal to its transpose. That is,
This means that the elements are symmetric with respect to the main diagonal. Mathematically, for a matrix A = [aij], it is symmetric if:
aij = aji for all i,j
To summarize, the symmetric matrix condition is simple:
Symmetric matrices have several important and useful properties:
where D is a diagonal matrix, and P is an orthogonal matrix containing the eigenvectors of the symmetric matrix.
The determinant of a symmetric matrix is calculated the same way as for any square matrix. However, symmetric matrices often allow simplifications due to their structure. For instance:
A symmetric matrix may or may not be invertible. It is invertible if and only if its determinant is non-zero. Interestingly:
Example:
So A is invertible and symmetric.
A remarkable property of symmetric matrices is that they always have real eigenvalues and orthogonal eigenvectors.
Why is this important?
Example:
For a symmetric matrix A, if and are eigenvectors corresponding to distinct eigenvalues, then:
This orthogonality of eigenvectors is crucial in applications such as Principal Component Analysis (PCA).
As noted earlier, a symmetric matrix is diagonalizable using an orthogonal matrix. That is, for symmetric matrix A:
Where:
This decomposition is known as spectral decomposition.
Q1. Given the matrix:
Is this a symmetric matrix?
Ans: Yes, the matrix is symmetric because . The element a12 = a21 = 1, which satisfies the condition aij = aji.
Q2. Find the eigenvalues of matrix A.
Ans:
Q3. Are the eigenvectors of this symmetric matrix orthogonal?
Ans: Yes. For a symmetric matrix, eigenvectors corresponding to distinct eigenvalues are always orthogonal.
Q4. Is this symmetric matrix diagonalizable?
Ans: Yes, every symmetric matrix is diagonalizable using an orthogonal matrix. So, matrix AA is diagonalizable.
Q5. What is the determinant of the matrix A?
Ans: Since the determinant is non-zero, matrix A is also invertible.
(Session 2025 - 26)