Identity Matrix
Definition: Identity Matrix
The -identity matrix over some field is the square matrix which has the multiplicative identity of as its entries on the diagonal and whose other entries are the additive identity of :
Theorem: Multiplication with the Identity Matrix
The product of any -matrix with the identity matrix on the left or the identity matrix is itself.
PROOF
TODO
Matrix Invertibility
Definition: Invertible Matrix
A square matrix is invertible if there exists a square matrix such that the matrix products and are equal to the identity matrix .
The matrices and are called inverses of each other.
Theorem: The Invertible Matrix Theorem
The following statements are equivalent for every square matrix :
is invertible.
Thetranspose of is invertible.
The determinant of is not zero, i.e. .
The reduced row echelon form of is the identity matrix .
The system of linear equations has a single solution for each .
The column space of is the vector space .
The row space of is the vector space .
The rank of is .
PROOF
TODO
Theorem: Antidistributivity of Matrix Inversion
Matrix inversion is antidistributive over matrix products - if and their matrix product are invertible, then:
PROOF
TODO
Finding Inverses
Algorithm: Matrix Inversion
To find the inverse of an invertible matrix :
Notate an -matrix by sticking the identity matrix to the right of .
Perform Gauss-Jordan elimination on . If is indeed invertible, the final result will be .
EXAMPLE
Theorem: Inverting -Matrices