Everipedia Logo
Everipedia is now IQ.wiki - Join the IQ Brainlist and our Discord for early access to editing on the new platform and to participate in the beta testing.
Invertible matrix

Invertible matrix

In linear algebra, an n-by-n square matrix A is called invertible (also nonsingular or nondegenerate) if there exists an n-by-n square matrix B such that

where In denotes the n-by-n identity matrix and the multiplication used is ordinary matrix multiplication. If this is the case, then the matrix B is uniquely determined by A and is called the inverse of A, denoted by A−1.

A square matrix that is not invertible is called singular or degenerate. A square matrix is singular if and only if its determinant is 0. Singular matrices are rare in the sense that a square matrix randomly selected from a continuous uniform distribution on its entries will almost never be singular.

Non-square matrices (m-by-n matrices for which mn) do not have an inverse. However, in some cases such a matrix may have a left inverse or right inverse. If A is m-by-n and the rank of A is equal to n (nm), then A has a left inverse: an n-by-m matrix B such that BA = In. If A has rank m (mn), then it has a right inverse: an n-by-m matrix B such that AB = Im.

Matrix inversion is the process of finding the matrix B that satisfies the prior equation for a given invertible matrix A.

While the most common case is that of matrices over the real or complex numbers, all these definitions can be given for matrices over any ring. However, in the case of the ring being commutative, the condition for a square matrix to be invertible is that its determinant is invertible in the ring, which in general is a stricter requirement than being nonzero. For a noncommutative ring, the usual determinant is not defined. The conditions for existence of left-inverse or right-inverse are more complicated since a notion of rank does not exist over rings.

The set of n × n invertible matrices together with the operation of matrix multiplication form a group, the general linear group of degree n.

Properties

The invertible matrix theorem

Let A be a square n by n matrix over a field K (for example the field R of real numbers). The following statements are equivalent, that is, for any given matrix they are either all true or all false:

A is invertible, that is, A has an inverse, is nonsingular, or is nondegenerate.A isrow-equivalentto the n-by-nidentity matrixIn.A iscolumn-equivalentto the n-by-nidentity matrixIn.A has npivot positions.detA ≠ 0. In general, a square matrix over acommutative ringis invertible if and only if itsdeterminantis aunitin that ring.A has full rank; that is,rankA = n.The equationAx = 0has only the trivial solution x = 0.Thekernelof A is trivial, that is, it contains only the null vector as an element, ker(A) = {0}.NullA = {0}.The equation Ax = b has exactly one solution for each b in *Kn*.The columns of A arelinearly independent.The columns of Aspan*Kn*.ColA = *Kn
.The columns of A form abasisof *Kn*.The linear transformation mapping x to Ax is abijectionfrom *Kn
  • to *K
n*.There is an n-by-n matrix B such thatAB = In= BA.ThetransposeATis an invertible matrix (hence rows of A arelinearly independent, span *Kn*, and form abasisof *Kn*).The number 0 is not aneigenvalueof A.The matrix A can be expressed as a finite product ofelementary matrices.The matrix A has a left inverse (that is, there exists a B such thatBA = I) or a right inverse (that is, there exists a C such thatAC = I), in which case both left and right inverses exist andB = C = A−1.

Other properties

Furthermore, the following properties hold for an invertible matrix A:

  • (A−1)−1 = A;

  • (kA)−1 = k−1A−1 for nonzero scalar k;

  • (Ax)+ = x+A−1 where + denotes the Moore–Penrose inverse and x is a vector;

  • (AT)−1 = (A−1)T;

  • For any invertible n-by-n matrices A and B, (AB)−1 = B−1A−1. More generally, if A1, ..., Ak are invertible n-by-n matrices, then (A1A2⋅⋅⋅Ak−1Ak)−1 = A−1kA−1k−1⋯A−12A−11;

  • det A−1 = (det A)−1.

The rows of the inverse matrix V of a matrix U areorthonormalto the columns of U (and vice versa interchanging rows for columns). To see this, suppose that UV = VU = I where we write the rows of V asand the columns of U asfor. Then clearly, theEuclidean inner productof any two. This property can also be useful in constructing the inverse of a square matrix in some instances where a set oforthogonalvectors (but not necessarily orthonormal vectors) to the columns of U are known and then applying the iterativeGram–Schmidt processto this initial set to determine the rows of the inverse V.

A matrix that is its own inverse, that is, such that A = A−1 and A2 = I, is called an involutory matrix.

In relation to its adjugate

Theadjugateof a matrixcan be used to find the inverse ofas follows:
Ifis aninvertible matrix, then
.

In relation to the identity matrix

It follows from the associativity of matrix multiplication that if

for finite square matrices A and B, then also

Density

Over the field of real numbers, the set of singular n-by-n matrices, considered as a subset of Rn×n, is a null set, that is, has Lebesgue measure zero. This is true because singular matrices are the roots of the determinant function. This is a continuous function because it is a polynomial in the entries of the matrix. Thus in the language of measure theory, almost all n-by-n matrices are invertible.

Furthermore, the n-by-n invertible matrices are a dense open set in the topological space of all n-by-n matrices. Equivalently, the set of singular matrices is closed and nowhere dense in the space of n-by-n matrices.

In practice however, one may encounter non-invertible matrices. And in numerical calculations, matrices which are invertible, but close to a non-invertible matrix, can still be problematic; such matrices are said to be ill-conditioned.

Examples

Consider the following 2-by-2 matrix:

The matrixis invertible. To check this, one can compute that, which is non-zero.

As an example of a non-invertible, or singular, matrix, consider the matrix

The determinant ofis 0, which is a necessary and sufficient condition for a matrix to be non-invertible.

Methods of matrix inversion

Gaussian elimination

Gauss–Jordan elimination is an algorithm that can be used to determine whether a given matrix is invertible and to find the inverse. An alternative is the LU decomposition, which generates upper and lower triangular matrices, which are easier to invert.

Newton's method

A generalization of Newton's method as used for a multiplicative inverse algorithm may be convenient, if it is convenient to find a suitable starting seed:

Victor Pan and John Reif have done work that includes ways of generating a starting seed.[2][3] Byte magazine summarised one of their approaches.[4]

Newton's method is particularly useful when dealing with families of related matrices that behave enough like the sequence manufactured for the homotopy above: sometimes a good starting point for refining an approximation for the new inverse can be the already obtained inverse of a previous matrix that nearly matches the current matrix, for example, the pair of sequences of inverse matrices used in obtaining matrix square roots by Denman–Beavers iteration; this may need more than one pass of the iteration at each new matrix, if they are not close enough together for just one to be enough. Newton's method is also useful for "touch up" corrections to the Gauss–Jordan algorithm which has been contaminated by small errors due to imperfect computer arithmetic.

Cayley–Hamilton method

TheCayley–Hamilton theoremallows the inverse ofto be expressed in terms of det(), traces and powers of:[5]
whereis dimension of, andis thetraceof matrixgiven by the sum of the main diagonal. The sum is taken overand the sets of allsatisfying the linearDiophantine equation
The formula can be rewritten in terms of completeBell polynomialsof argumentsas

Eigendecomposition

If matrix A can be eigendecomposed, and if none of its eigenvalues are zero, then A is invertible and its inverse is given by

where Q is the square (N×N) matrix whose i-th column is the eigenvectorof A, and Λ is thediagonal matrixwhose diagonal elements are the corresponding eigenvalues, that is,. Furthermore, because Λ is a diagonal matrix, its inverse is easy to calculate:

Cholesky decomposition

If matrix A is positive definite, then its inverse can be obtained as

where L is the lower triangular Cholesky decomposition of A, and L* denotes the conjugate transpose of L.

Analytic solution

Writing the transpose of the matrix of cofactors, known as an adjugate matrix, can also be an efficient way to calculate the inverse of small matrices, but this recursive method is inefficient for large matrices. To determine the inverse, we calculate a matrix of cofactors:

so that

where |A| is the determinant of A, C is the matrix of cofactors, and CT represents the matrix transpose.

Inversion of 2 × 2 matrices

The cofactor equation listed above yields the following result for 2 × 2 matrices. Inversion of these matrices can be done as follows:[6]

This is possible because 1/(adbc) is the reciprocal of the determinant of the matrix in question, and the same strategy could be used for other matrix sizes.

The Cayley–Hamilton method gives

Inversion of 3 × 3 matrices

A computationally efficient 3 × 3 matrix inversion is given by

(where the scalar A is not to be confused with the matrix A). If the determinant is non-zero, the matrix is invertible, with the elements of the intermediary matrix on the right side above given by

The determinant of A can be computed by applying the rule of Sarrus as follows:

The Cayley–Hamilton decomposition gives

The general3 × 3inverse can be expressed concisely in terms of thecross productandtriple product. If a matrix(consisting of three column vectors,,, and) is invertible, its inverse is given by
The determinant of A,, is equal to the triple product of,, and—the volume of theparallelepipedformed by the rows or columns:
The correctness of the formula can be checked by using cross- and triple-product properties and by noting that for groups, left and right inverses always coincide. Intuitively, because of the cross products, each row ofis orthogonal to the non-corresponding two columns of(causing the off-diagonal terms ofbe zero). Dividing by
causes the diagonal elements ofto be unity. For example, the first diagonal is:

Inversion of 4 × 4 matrices

With increasing dimension, expressions for the inverse of A get complicated. For n = 4, the Cayley–Hamilton method leads to an expression that is still tractable:

Blockwise inversion

Matrices can also be inverted blockwise by using the following analytic inversion formula:

**(1)**

where A, B, C and D are matrix sub-blocks of arbitrary size. (A must be square, so that it can be inverted. Furthermore, A and DCA−1B must be nonsingular.[7]) This strategy is particularly advantageous if A is diagonal and DCA−1B (the Schur complement of A) is a small matrix, since they are the only matrices requiring inversion.

This technique was reinvented several times and is due to Hans Boltz (1923), who used it for the inversion of geodetic matrices, and Tadeusz Banachiewicz (1937), who generalized it and proved its correctness.

The nullity theorem says that the nullity of A equals the nullity of the sub-block in the lower right of the inverse matrix, and that the nullity of B equals the nullity of the sub-block in the upper right of the inverse matrix.

The inversion procedure that led to Equation (1) performed matrix block operations that operated on C and D first. Instead, if A and B are operated on first, and provided D and ABD−1C are nonsingular,[8] the result is

**(2)**

Equating Equations (1) and (2) leads to

**(3)**

where Equation (3) is the Woodbury matrix identity, which is equivalent to the binomial inverse theorem.

Since a blockwise inversion of an n × n matrix requires inversion of two half-sized matrices and 6 multiplications between two half-sized matrices, it can be shown that a divide and conquer algorithm that uses blockwise inversion to invert a matrix runs with the same time complexity as the matrix multiplication algorithm that is used internally.[9] There exist matrix multiplication algorithms with a complexity of O(n2.3727) operations, while the best proven lower bound is Ω(n2 log n).[10]

This formula simplifies significantly when the upper right block matrixis the zero matrix. This formulation is useful when the matricesandhave relatively simple inverse formulas (orpseudo inversesin the case where the blocks are not all square. In this special case, the block matrix inversion formula stated in full generality above becomes

By Neumann series

If a matrix A has the property that

then A is nonsingular and its inverse may be expressed by a Neumann series:[11]

Truncating the sum results in an "approximate" inverse which may be useful as a preconditioner. Note that a truncated series can be accelerated exponentially by noting that the Neumann series is a geometric sum. As such, it satisfies

.
Therefore, onlymatrix multiplications are needed to computeterms of the sum.

More generally, if A is "near" the invertible matrix X in the sense that

then A is nonsingular and its inverse is

If it is also the case that AX has rank 1 then this simplifies to

P-adic approximation

If A is a matrix with integer or rational coefficients and we seek a solution inarbitrary-precisionrationals, then ap-adicapproximation method converges to an exact solution in, assuming standardmatrix multiplication is used.[12] The method relies on solving n linear systems via Dixon's method of p-adic approximation (each in) and is available as such in software specialized in arbitrary-precision matrix operations, for example, in IML.[13]

Derivative of the matrix inverse

Suppose that the invertible matrix A depends on a parameter t. Then the derivative of the inverse of A with respect to t is given by

To derive the above expression for the derivative of the inverse of A, one can differentiate the definition of the matrix inverseand then solve for the inverse of A:
Subtractingfrom both sides of the above and multiplying on the right bygives the correct expression for the derivative of the inverse:
Similarly, ifis a small number then

More generally, if

then,

Given a positive integer,

Therefore,

Generalized inverse

Some of the properties of inverse matrices are shared by generalized inverses (for example, the Moore–Penrose inverse), which can be defined for any m-by-n matrix.

Applications

For most practical applications, it is not necessary to invert a matrix to solve a system of linear equations; however, for a unique solution, it is necessary that the matrix involved be invertible.

Decomposition techniques like LU decomposition are much faster than inversion, and various fast algorithms for special classes of linear systems have also been developed.

Regression/least squares

Although an explicit inverse is not necessary to estimate the vector of unknowns, it is the easiest way to estimate their accuracy, found in the diagonal of a matrix inverse (the posterior covariance matrix of the vector of unknowns). However, faster algorithms to compute only the diagonal entries of a matrix inverse are known in many cases.[14]

Matrix inverses in real-time simulations

Matrix inversion plays a significant role in computer graphics, particularly in 3D graphics rendering and 3D simulations. Examples include screen-to-world ray casting, world-to-subspace-to-world object transformations, and physical simulations.

Matrix inverses in MIMO wireless communication

Matrix inversion also plays a significant role in the MIMO (Multiple-Input, Multiple-Output) technology in wireless communications. The MIMO system consists of N transmit and M receive antennas. Unique signals, occupying the same frequency band, are sent via N transmit antennas and are received via M receive antennas. The signal arriving at each receive antenna will be a linear combination of the N transmitted signals forming a NxM transmission matrix H. It is crucial for the matrix H to be invertible for the receiver to be able to figure out the transmitted information.

See also

  • Binomial inverse theorem

  • LU decomposition

  • Matrix decomposition

  • Matrix square root

  • Pseudoinverse

  • Singular value decomposition

  • Woodbury matrix identity

References

[1]
Citation Linkopenlibrary.orgHorn, Roger A.; Johnson, Charles R. (1985). Matrix Analysis. Cambridge University Press. p. 14. ISBN 978-0-521-38632-6..
Sep 24, 2019, 8:34 PM
[2]
Citation Linkopenlibrary.orgPan, Victor; Reif, John (1985), Efficient Parallel Solution of Linear Systems, Proceedings of the 17th Annual ACM Symposium on Theory of Computing, Providence: ACM
Sep 24, 2019, 8:34 PM
[3]
Citation Linkopenlibrary.orgPan, Victor; Reif, John (1985), Harvard University Center for Research in Computing Technology Report TR-02-85, Cambridge, MA: Aiken Computation Laboratory
Sep 24, 2019, 8:34 PM
[4]
Citation Linkopenlibrary.org"The Inversion of Large Matrices". Byte Magazine. 11 (4): 181–190. April 1986.
Sep 24, 2019, 8:34 PM
[5]
Citation Link//doi.org/10.1007%2FBF01291027A proof can be found in the Appendix B of Kondratyuk, L. A.; Krivoruchenko, M. I. (1992). "Superconducting quark matter in SU(2) color group". Zeitschrift für Physik A. 344: 99–115. doi:10.1007/BF01291027.
Sep 24, 2019, 8:34 PM
[6]
Citation Linkbooks.google.comStrang, Gilbert (2003). Introduction to linear algebra (3rd ed.). SIAM. p. 71. ISBN 978-0-9614088-9-3., Chapter 2, page 71
Sep 24, 2019, 8:34 PM
[7]
Citation Linkopenlibrary.orgBernstein, Dennis (2005). Matrix Mathematics. Princeton University Press. p. 44. ISBN 978-0-691-11802-4.
Sep 24, 2019, 8:34 PM
[8]
Citation Linkopenlibrary.orgBernstein, Dennis (2005). Matrix Mathematics. Princeton University Press. p. 45. ISBN 978-0-691-11802-4.
Sep 24, 2019, 8:34 PM
[9]
Citation Linkopenlibrary.orgT. H. Cormen, C. E. Leiserson, R. L. Rivest, C. Stein, Introduction to Algorithms, 3rd ed., MIT Press, Cambridge, MA, 2009, §28.2.
Sep 24, 2019, 8:34 PM
[10]
Citation Linkdoi.orgRan Raz. On the complexity of matrix product. In Proceedings of the thirty-fourth annual ACM symposium on Theory of computing. ACM Press, 2002. doi:10.1145/509907.509932.
Sep 24, 2019, 8:34 PM
[11]
Citation Linkopenlibrary.orgStewart, Gilbert (1998). Matrix Algorithms: Basic decompositions. SIAM. p. 55. ISBN 978-0-89871-414-2.
Sep 24, 2019, 8:34 PM
[12]
Citation Link//doi.org/10.1016%2Fj.cam.2008.07.044Haramoto, H.; Matsumoto, M. (2009). "A p-adic algorithm for computing the inverse of integer matrices". Journal of Computational and Applied Mathematics. 225: 320–322. doi:10.1016/j.cam.2008.07.044.
Sep 24, 2019, 8:34 PM
[13]
Citation Linkcs.uwaterloo.ca"IML - Integer Matrix Library". cs.uwaterloo.ca. Retrieved 14 April 2018.
Sep 24, 2019, 8:34 PM
[14]
Citation Link//doi.org/10.4310%2FCMS.2009.v7.n3.a12Lin, Lin; Lu, Jianfeng; Ying, Lexing; Car, Roberto; E, Weinan (2009). "Fast algorithm for extracting the diagonal of the inverse matrix with application to the electronic structure analysis of metallic systems". Communications in Mathematical Sciences. 7 (3): 755–777. doi:10.4310/CMS.2009.v7.n3.a12.
Sep 24, 2019, 8:34 PM
[15]
Citation Linkwww.encyclopediaofmath.org"Inversion of a matrix"
Sep 24, 2019, 8:34 PM
[16]
Citation Linkbooks.google.comMatrix Mathematics: Theory, Facts, and Formulas
Sep 24, 2019, 8:34 PM
[17]
Citation Linkwww2.imm.dtu.dk"The Matrix Cookbook"
Sep 24, 2019, 8:34 PM
[18]
Citation Linkwww.youtube.com"Inverse Matrices, Column Space and Null Space"
Sep 24, 2019, 8:34 PM
[19]
Citation Linkocw.mit.edu"Linear Algebra Lecture on Inverse Matrices"
Sep 24, 2019, 8:34 PM
[20]
Citation Linknetlib.orgLAPACK
Sep 24, 2019, 8:34 PM