Inverse Matrices
In the case of a square matrix, the matrix is invertible if the determinant of that Matrix is not equal to zero. The inverse of a matrix is unique. The inverse of the product of matrices is in reverse order,
i.e,
if you have three matrices A, B, C, the inverse of
Checking for correct row reduction
You can check if a matrix is invertible by row reducing and checking if it has a pivot in every column and every row, effectively becoming the identity matrix.
You can multiply the matrix by it’s inverse and you should find a form of rref?
If there exists a Vector x != 0 and Ax = 0, the null space of a is not just the zero Vector. As such A cannot be invertible
By contradiction, if A is invertible then there exists inverse of a such that A-1 x A = Identity matrix
An n by m matrix is invertible if
- The determinant of A != 0
- Rank(A) = n
- RREF(A) = In
- There is a pivot in each row and each column of ref(A)
- All columns are LI
- All rows are LI
- Nul(A) = Nul(A^t) = {0} that t is supposed to be transposed?
- The matrix transformation T(x) = Ax is one-to-one and onto.
If a square matrix A is one-to-one and onto, then A is invertible with inverse A
such that A^-1 such that
By RREF.
In a square matrix of the form
Special Cases
The inverse of a diagonal matrix is simply the same matrix, with each value being 1/value.
The inverse of a permutation matrix is its transpose.