Linear Algebra_Symmetric Matrix

Symmetric matrices are a very important matrix structure in linear algebra and have many unique properties and applications. The following is a detailed description of the symmetric matrix:
### Definition
A symmetric matrix, that is, a symmetric square matrix, refers to an n-order square matrix A, whose transpose matrix is ​​equal to itself, that is, A^T = A. This means that the elements in the square matrix A satisfy the commutative law, that is, for any i and j (i ≤ j), A[i][j] = A[j][i].
### Property
1. **Real number property**: All elements of a symmetric matrix are real numbers.
2. **Orthogonal Property**: The eigenvectors of a symmetric matrix are orthogonal.
3. **Diagonalizable**: A real symmetric matrix must be diagonalizable, that is, a set of orthogonal eigenvectors can be found to diagonalize the matrix into a diagonal matrix.
4. **Spectral Theorem**: The eigenvalues ​​of a real symmetric matrix are all real numbers, and the eigenvectors corresponding to different eigenvalues ​​are orthogonal.
### Classification
1. **Positive definite matrix**: In addition to satisfying symmetry, it also satisfies that all eigenvalues ​​are greater than zero.
2. **Negative definite matrix**: In addition to satisfying symmetry, it also satisfies that all eigenvalues ​​are less than zero.
3. **Positive semi-definite matrix**: In addition to satisfying symmetry, it also satisfies that all eigenvalues ​​are greater than or equal to zero.
4. **Semi-negative definite matrix**: In addition to satisfying symmetry, it also satisfies that all eigenvalues ​​are less than or equal to zero.
### Application
1. **Physics**: In physics, symmetric matrices often represent the measured value of a certain physical quantity, such as angular momentum, energy, etc.
2. **Optimization problem**: In fields such as optimization and convex optimization, symmetric matrices, especially positive definite matrices, are widely used.
3. **Data processing**: In the fields of data processing, image processing, signal processing and other fields, methods such as eigenvalue decomposition and singular value decomposition of symmetric matrices have important applications.
### Compressed storage
Due to its special properties, symmetric matrices can be stored in a compressed manner. Only the elements of the lower triangular part are stored. The elements of the upper triangular part can be obtained from the information of the elements of the lower triangular part. This method can save storage space and improve storage efficiency.
In short, the symmetric matrix is ​​a very important matrix structure in linear algebra. It has many unique properties and applications. It is widely used not only in the field of mathematics, but also in many fields such as physics, engineering, and optimization.

おすすめ

転載: blog.csdn.net/HYSliuliuliu/article/details/135305662