Key focus : Essential matrix algebra: formation of matrices, determinants, rank, inverse & transpose of matrix and solving simultaneous equations.
I thought of making a post on Cholesky Decomposition, which is a very essential technique in digital signal processing applications like generating correlated random variables, solving linear equations, channel estimation etc.., But jumping straight to the topic of Cholesky Decomposition will leave many flummoxed/confused. So I decided to touch on some essentials in basic matrix algebra before taking up advanced topics.
Prerequisite:
Basic knowledge on topics like formation of matrices, determinants, rank of a matrix, inverse & transpose of matrix, solving a system of simultaneous equation using matrix algebra.
The prerequisites listed above being fulfilled, you will learn different types of matrices in this post.
1. Vector
A matrix with only one row or one column.
2. Transpose of a Matrix
Transpose of a matrix is formed by interchanging the elements from row to columns. For example, the first row of the matrix becomes first column in the transpose matrix, second row of the matrix becomes second column in the transpose matrix and so on.
3. Square Matrix:
Matrix with equal number of rows and columns.
(Note: The sample matrices shown below are of 3×3 dimension. They can be readily extended to nxn dimension)
Square Matrix is further classified into
4. Symmetric Matrix :
If a square matrix and its transpose are equal, then it is called a symmetric square matrix or simply symmetric matrix.
5. Diagonal Matrix
A special kind of symmetric matrix, with zeros in off-diagonal locations.
6. Scalar matrix
A special kind of diagonal matrix, with the equal values at the diagonal
7. Identity Matrix
It is a special type of scalar matrix, where the leading diagonals are one. It is denoted by I
8. Inverse of a Matrix or the notion of non-Singular Matrix:
Inverse matrices are defined for square matrices. For non-square matrices, inverses do not exist. The product of a square matrix and its inverse yields an identity matrix.
For a square matrix A.
Here
It is possible to have a square matrix but not invertible. Such non-invertible square matrices are called
Singular Matrices. Matrix that are invertible are called non-singular matrices.
9. Singular Matrix:
A non-invertible square matrix. Inverse does not exist.
10. Orthogonal Matrix
An invertible square matrix, whose transpose and inverse are equal. If for an invertible square matrix A,
then, the matrix
11. Complex Matrix :
A matrix with complex elements.
12. Complex Square Matrix
A complex matrix with with equal number of rows and columns
13. Conjugate Transpose or Hermitian Transpose:
Similar to the transpose of a matrix defined above. But the only difference is : put the complex conjugate form of the element when interchanging from rows to columns. For a complex square matrix
14. Hermitian Matrix:
A complex square matrix whose conjugate transpose is equal to its own. For a complex square matrix
That is,
15. Triangular Matrix:
A special type of square matrix. Further classified into : lower triangular and upper triangular matrix. For a lower triangular matrix, all the elements above the main diagonal are zeros.For an upper triangular matrix, all the elements below the main diagonal are zeros.
16. Positive-Definite Matrix:
It is defined for both real matrices and complex matrices. It is matrix equivalent to positivity of real numbers. For example, the numbers +3,+5 and +6 are definitely positive. Similarly a positive definite matrix is defined to be definitely positive if it satisfies the following condition.
For real case: A n x n symmetric square real matrix –
For complex case: A n x n symmetric square complex matrix –
17. Positive-semi-definite Matrix:
It is defined for both real matrices and complex matrices. It is matrix equivalent to semi-positivity of real numbers. For example, the numbers +3,+5 and +6 are definitely positive. But the set
For real case: A n x n symmetric square real matrix –
For complex case: A n x n symmetric square complex matrix –
Note : The notation
18. Negative-Definite Matrix:
It is defined for both real matrices and complex matrices. It is matrix equivalent to negativity of real numbers. For example, the numbers -3,-5 and -6 are definitely negative. Similarly a negative definite matrix is defined to be definitely negative if it satisfies the following condition.
For real case: A n x n symmetric square real matrix –
For complex case: A n x n symmetric square complex matrix –
Note : The notation
19. Negative-semi-definite Matrix:
It is defined for both real matrices and complex matrices. It is matrix equivalent to semi-negativity of real numbers. For example, the numbers -3,-5 and -6 are definitely negative. But the set
For real case: A n x n symmetric square real matrix –
For complex case: A n x n symmetric square complex matrix –
Note : The notation
20. Indefinite Matrix :
A Matrix, that is neither positive definite, positive semi-definite, negative definite nor negative semi-definite is called an indefinite Matrix.
Rate this article: Note: There is a rating embedded within this post, please visit this post to rate it.
External References:
[1] Vector
[2] Transpose of a Matrix
[3] Square Matrix
[4] Symmetric Matrix
[5] Diagonal Matrix
[6] Scalar Matrix
[7] Identity Matrix
[8] Inverse Matrix
[9] Singular Matrix
[10] Orthogonal Matrix
[11] Complex Matrix
[12] Complex Square Matrix
[13] Conjugate Transpose
[14] Hermitian Matrix
[15] Triangular Matirx
[16] Positive definite, negative definite and semi-definite Matrices