matrix inverse
1 Matrix Inverse
The inverse of an matrix is denoted by . The inverse is defined so that
where is the identity matrix.
It should be stressed that only square matrices have inverses proper– however, a matrix of any size may have “left” and “right” inverses (which will not be discussed here).
A precondition for the existence of the matrix inverse (i.e. the matrix is invertible) is that (the determinant is nonzero), the reason for which we will see in a second.
The general form of the inverse of a matrix is
where is the adjugate of (the matrix formed by the cofactors of , i.e. with ).11Some other sources call the adjugate the adjoint; however on PM the adjoint is reserved for the conjugate transpose. This can also be thought of as a generalization of the formula given in the next section. However, due to the inclusion of the determinant in the expression, it is impractical to actually use this to calculate inverses.
This general form also explains why the determinant must be nonzero for invertibility; as we are dividing through by its value.
An invertible matrix is also said to be nonsingular.
2 Calculating the Inverse By Hand
Method 1:
An easy way to calculate the inverse of a matrix by hand is to form an augmented matrix from and , then use Gaussian elimination to transform the left half into . At the end of this procedure, the right half of the augmented matrix will be (that is, you will be left with ).
Method 2:
One can calculate the th element of the inverse by using the general formula; i.e.
where is the th cofactor expansion of the matrix .
Note that the indices on the left-hand side are swapped relative to the right-hand side.
2.1 2-by-2 case:
For the case, the general formula reduces to a memorable shortcut. For the matrix
The inverse is always
where is simply .
2.2 Remarks
Some caveats: computing the matrix inverse for ill-conditioned matrices is error-prone; special care must be taken and there are sometimes special algorithms to calculate the inverse of certain classes of matrices (for example, Hilbert matrices).
3 Avoiding the Inverse and Numerical Calculation
The need to find the matrix inverse depends on the situation– whether done by hand or by computer, and whether the matrix is simply a part of some equation or expression or not.
Instead of computing the matrix as part of an equation or expression, it is nearly always better to use a matrix factorization instead. For example, when solving the system , actually calculating to get is discouraged. LU-factorization is typically used instead.
We can even use this fact to speed up our calculation of the inverse by itself. We can cast the problem as finding in
For matrices , , and (where and ). To solve this, we first find the decomposition of , then iterate over the columns, solving and each time (). The resulting values for are then the columns of .
4 Elements of Invertible Matrices
Typically the matrix elements are members of a field when we are speaking of inverses (i.e. the reals, the complex numbers). However, the matrix inverse may exist in the case of the elements being members of a commutative ring, provided that the determinant of the matrix is a unit in the ring.
References
- 1 Golub and Van Loan, “Matrix Computations,” Johns Hopkins Univ. Press, 1996.
- 2 “Matrix Math,” http://easyweb.easynet.co.uk/ mrmeanie/matrix/matrices.htmhttp://easyweb.easynet.co.uk/ mrmeanie/matrix/matrices.htm
Title | matrix inverse |
---|---|
Canonical name | MatrixInverse |
Date of creation | 2013-03-22 13:04:25 |
Last modified on | 2013-03-22 13:04:25 |
Owner | akrowne (2) |
Last modified by | akrowne (2) |
Numerical id | 18 |
Author | akrowne (2) |
Entry type | Definition |
Classification | msc 15A09 |
Synonym | inverse |
Synonym | matrix inversion |
Defines | invertible |
Defines | adjugate |
Defines | adjugate of a matrix |