A square matrix is said to be invertible if there exists another square matrix that, when multiplied with it, yields the Identity matrix. In symbols, A is invertible n×n matrix if there exists another n×n matrix A−1 such that
AA−1=A−1A=In
A−1 is known as the inverse of A.
Characterization#
There are a lot of ways to determine if a matrix is invertible. The following are a few and all equivalent to each other and to the definition above:
- A has a full rank A.
- The transpose of A, AT, is invertible.
- The determinant of A is nonzero, detA=0.
- All of the columns of A are linearly independent.
- All of the rows of A are linearly independent.
- The number 0 is not an eigenvalue of A.
Properties#
- (A−1)−1=A
- (cA)−1=c−1A−1
- (AT)−1=(A−1)T
- det(A−1)=(detA)−1
- If A and B are both invertible n×n matrices, (AB)−1=A−1B−1
Diagonalization#
If A can be eigendecomposed into A=SΛS−1 then the inverse can be found by inverting the eigenvalue matrix only:
A−1=SΛ−1S−1