Symmetric Matrices and Positive Definiteness
June 12, 2019
Symmetric matrices are good – their eigenvalues are real and each has a complete set of orthonormal eigenvectors. Positive definite matrices are even better.
A real symmetric (square) matrix
- The eigenvalues are REAL
- The eigenvectors can be chosen perpendicularly
Then a symmetric matrix can be factored into
where is an orthogonal (orthonormal if A is not square) matrix.
(Book p234, p338)
Real Eigenvalues
Why all the eigenvalues are real? Suppose , and suppose there’re complex eigenvalues and complex eigenvectors, we can take the conjugate of all components in the equation, this leads to . Since is a real matrix, , this gives
Now let’s transpose e.q. (1), we get . Since is symmetric, . is just a constant so Then multiplying both side by to the right:
And multiply both side of by to the left:
Now we see the left-hand side of (2) and (3) are equal, therefore, as long as ,
then is real. Why ? First and foremost, an eigenvector is non-zero. Then
Since is not equal to zero vector, then . If is not a real matrix, the proof follows the same pattern because .
Information about eigenvalues
For very large matrices like , it’s very impractical to compute eigenvalues using the way we learned. One information we can learn is
Let’s bring up the definition for pivots again. It’s the first non-zero value in each row in the row-echelon form, not the reduced one (require the pivots to be 1 and entries above the pivots should be 0).
Also, from note 21,
Orthogonal Eigenvalues
Since $A$ is symmetric, then $A=A^\top$. Given it’s symmetric, it’s square, if it’s diagonalizable(doesn’t have to), then we can write $A=X\Lambda X^{-1}$, and $A^\top=X^{-1\top}\Lambda X^\top$. Since they two are equal, on the rightmost term, we can have $X^{-1}=X^\top$. The $X$ is the eigenvector matrix. $X^{-1}=X^\top\Rightarrow X^{-1}X=I=X^{\top}X$. Therefore the eigenvector matrix can be orthogonal(by the definition of orthogonal matrix and orthonormal vectors). Therefore we can write $X$ as $Q$ to amplify it’s an orthogonal matrix. And thus $A=Q\Lambda Q^\top$.
Positive Definite Matrices
Positive Definite Matrices is technically Positive Definite symmetric Matrices. Symmetric matrices are good. A positive definite matrix is a symmetric matrix for which all of its eigenvalues are positive. A good way to check this is to see if all of its pivots are positive. It’s important to know that This is true because $A=LU$ and $L$ is matrix with all ones on the diagonal, and then by property 7 from note 18, determinant of $U$ is equal to its products of diagonals.
One consequence from all eigenvalues are positive is the determinant must also be positive. But the reverse is not true. Positive determinant does not bring to all positive eigenvalues.