# Invertible matrix

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Invertible_matrix
> Markdown URL: https://mediated.wiki/source/Invertible_matrix.md
> Source: https://en.wikipedia.org/wiki/Invertible_matrix
> Source revision: 1335811120
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

For matrices with no inverse and for the concept of a matrix, see [Singular matrix](/source/Singular_matrix) and [Matrix](/source/Matrix_(mathematics)).

This article needs more citations. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. Find sources: "Invertible matrix" – news · newspapers · books · scholar · JSTOR (October 2025) (Learn how and when to remove this message)

Matrix with a multiplicative inverse

In [linear algebra](/source/Linear_algebra), an **invertible matrix** (*non-singular*, *non-degenerate* or *regular*) is a [square matrix](/source/Square_matrix) that has an [inverse](/source/Multiplicative_inverse). In other words, if a matrix is invertible, it can be multiplied by its inverse matrix to yield the [identity matrix](/source/Identity_matrix). Invertible matrices are the same size as their inverse.

The inverse of a matrix represents the inverse operation, meaning if a matrix is applied to a particular vector, followed by applying the matrix's inverse, the result is the original vector.

## Definition

An n-by-n [square matrix](/source/Square_matrix) **A** is called **invertible** if there exists an n-by-n square matrix **B** such that A B = B A = I n , {\displaystyle \mathbf {AB} =\mathbf {BA} =\mathbf {I} _{n},} where **I***n* denotes the n-by-n [identity matrix](/source/Identity_matrix) and the multiplication used is ordinary [matrix multiplication](/source/Matrix_multiplication).[1] If this is the case, then the matrix **B** is uniquely determined by **A**, and is called the [*inverse*](/source/Multiplicative_inverse) of **A**, denoted by **A**−1. **Matrix inversion** is the process of finding the matrix which when multiplied by the original matrix gives the identity matrix.[2]

## Examples

Consider the following 2-by-2 matrix:

- A = ( − 1 3 2 1 − 1 ) {\displaystyle \mathbf {A} ={\begin{pmatrix}-1&{\tfrac {3}{2}}\\1&-1\end{pmatrix}}}

The matrix A {\displaystyle \mathbf {A} } is invertible, as it has inverse B = ( 2 3 2 2 ) , {\displaystyle \mathbf {B} ={\begin{pmatrix}2&3\\2&2\end{pmatrix}},} which can be confirmed by computing

A B = ( − 1 3 2 1 − 1 ) ( 2 3 2 2 ) = ( ( − 1 ) × 2 + 3 2 × 2 ( − 1 ) × 3 + 3 2 × 2 1 × 2 + ( − 1 ) × 2 1 × 3 + ( − 1 ) × 2 ) = ( 1 0 0 1 ) = I 2 {\displaystyle \mathbf {A} \mathbf {B} ={\begin{pmatrix}-1&{\tfrac {3}{2}}\\1&-1\end{pmatrix}}{\begin{pmatrix}2&3\\2&2\end{pmatrix}}={\begin{pmatrix}(-1)\times 2+{\tfrac {3}{2}}\times 2&(-1)\times 3+{\tfrac {3}{2}}\times 2\\1\times 2+(-1)\times 2&1\times 3+(-1)\times 2\end{pmatrix}}={\begin{pmatrix}1&0\\0&1\end{pmatrix}}=\mathbf {I} _{2}}

To check that it is invertible without finding an inverse, det A = − 1 2 {\textstyle \det \mathbf {A} =-{\frac {1}{2}}} can be computed, which is non-zero.

On the other hand, this is a non-invertible matrix:

- C = ( 2 4 2 4 ) {\displaystyle \mathbf {C} ={\begin{pmatrix}2&4\\2&4\end{pmatrix}}}

We can see the rank of this 2-by-2 matrix is 1, which is *n* − 1 ≠ *n*, so it is non-invertible. Additionally, we can compute that the [determinant](/source/Determinant) of C {\displaystyle \mathbf {C} } is 0, which is a [necessary and sufficient condition](/source/Necessary_and_sufficient_condition) for a matrix to be non-invertible.

## Methods of matrix inversion

### Gaussian elimination

[Gaussian elimination](/source/Gaussian_elimination) is a useful and easy way to compute the inverse of a matrix. To compute a matrix inverse using this method, an [augmented matrix](/source/Augmented_matrix) is first created with the left side being the matrix to invert and the right side being the [identity matrix](/source/Identity_matrix). Then, Gaussian elimination is used to convert the left side into the identity matrix, which causes the right side to become the inverse of the input matrix.

For example, take the following matrix: A = ( − 1 3 2 1 − 1 ) {\displaystyle \mathbf {A} ={\begin{pmatrix}-1&{\tfrac {3}{2}}\\1&-1\end{pmatrix}}}

The first step to compute its inverse is to create the augmented matrix ( − 1 3 2 1 0 1 − 1 0 1 ) {\displaystyle \left(\!\!{\begin{array}{cc|cc}-1&{\tfrac {3}{2}}&1&0\\1&-1&0&1\end{array}}\!\!\right)}

Call the first row of this matrix R 1 {\displaystyle R_{1}} and the second row R 2 {\displaystyle R_{2}} . Then, add row 1 to row 2 ( R 1 + R 2 → R 2 ) . {\displaystyle (R_{1}+R_{2}\to R_{2}).} This yields ( − 1 3 2 1 0 0 1 2 1 1 ) {\displaystyle \left(\!\!{\begin{array}{cc|cc}-1&{\tfrac {3}{2}}&1&0\\0&{\tfrac {1}{2}}&1&1\end{array}}\!\!\right)}

Next, subtract row 2, multiplied by 3, from row 1 ( R 1 − 3 R 2 → R 1 ) , {\displaystyle (R_{1}-3\,R_{2}\to R_{1}),} which yields ( − 1 0 − 2 − 3 0 1 2 1 1 ) {\displaystyle \left(\!\!{\begin{array}{cc|cc}-1&0&-2&-3\\0&{\tfrac {1}{2}}&1&1\end{array}}\!\!\right)}

Finally, multiply row 1 by −1 ( − R 1 → R 1 ) {\displaystyle (-R_{1}\to R_{1})} and row 2 by 2 ( 2 R 2 → R 2 ) . {\displaystyle (2\,R_{2}\to R_{2}).} This yields the identity matrix on the left side and the inverse matrix on the right: ( 1 0 2 3 0 1 2 2 ) {\displaystyle \left(\!\!{\begin{array}{cc|cc}1&0&2&3\\0&1&2&2\end{array}}\!\!\right)}

Thus, A − 1 = ( 2 3 2 2 ) {\displaystyle \mathbf {A} ^{-1}={\begin{pmatrix}2&3\\2&2\end{pmatrix}}} It works because the process of Gaussian elimination can be viewed as a sequence of applying left matrix multiplication using elementary row operations using [elementary matrices](/source/Elementary_matrix) ( E n {\displaystyle \mathbf {E} _{n}} ), such as E n E n − 1 ⋯ E 2 E 1 A = I {\displaystyle \mathbf {E} _{n}\mathbf {E} _{n-1}\cdots \mathbf {E} _{2}\mathbf {E} _{1}\mathbf {A} =\mathbf {I} }

Applying right-multiplication using A − 1 , {\displaystyle \mathbf {A} ^{-1},} we get E n E n − 1 ⋯ E 2 E 1 I = I A − 1 . {\displaystyle \mathbf {E} _{n}\mathbf {E} _{n-1}\cdots \mathbf {E} _{2}\mathbf {E} _{1}\mathbf {I} =\mathbf {I} \mathbf {A} ^{-1}.} And the right side I A − 1 = A − 1 , {\displaystyle \mathbf {I} \mathbf {A} ^{-1}=\mathbf {A} ^{-1},} which is the inverse we want.

To obtain E n E n − 1 ⋯ E 2 E 1 I , {\displaystyle \mathbf {E} _{n}\mathbf {E} _{n-1}\cdots \mathbf {E} _{2}\mathbf {E} _{1}\mathbf {I} ,} we create the augmented matrix by combining **A** with **I** and applying [Gaussian elimination](/source/Gaussian_elimination). The two portions will be transformed using the same sequence of elementary row operations. When the left portion becomes **I**, the right portion applied the same elementary row operation sequence will become **A**−1.

### Newton's method

A generalization of [Newton's method](/source/Newton's_method) as used for a [multiplicative inverse algorithm](/source/Multiplicative_inverse#Algorithms) may be convenient if it is convenient to find a suitable starting seed:

- X k + 1 = 2 X k − X k A X k {\displaystyle X_{k+1}=2X_{k}-X_{k}AX_{k}}

[Victor Pan](/source/Victor_Pan) and [John Reif](/source/John_Reif) have done work that includes ways of generating a starting seed.[3][4]

Newton's method is particularly useful when dealing with [families](/source/Family_(set_theory)) of related matrices that behave enough like the sequence manufactured for the [homotopy](/source/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](/source/Matrix_square_root#By_Denman–Beavers_iteration). That 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 from [imperfect computer arithmetic](/source/Round-off_error).

### Cayley–Hamilton method

The [Cayley–Hamilton theorem](/source/Cayley%E2%80%93Hamilton_theorem) allows the inverse of **A** to be expressed in terms of det(**A**), traces and powers of **A**:[5]

- A − 1 = 1 det ( A ) ∑ s = 0 n − 1 A s ∑ k 1 , k 2 , … , k n − 1 ∏ l = 1 n − 1 ( − 1 ) k l + 1 l k l k l ! tr ⁡ ( A l ) k l , {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}\sum _{s=0}^{n-1}\mathbf {A} ^{s}\sum _{k_{1},k_{2},\ldots ,k_{n-1}}\prod _{l=1}^{n-1}{\frac {(-1)^{k_{l}+1}}{l^{k_{l}}k_{l}!}}\operatorname {tr} \left(\mathbf {A} ^{l}\right)^{k_{l}},}

where n is size of **A**, and tr(**A**) is the [trace](/source/Trace_(linear_algebra)) of matrix **A** given by the sum of the [main diagonal](/source/Main_diagonal). The sum is taken over s and the sets of all k l ≥ 0 {\displaystyle k_{l}\geq 0} satisfying the linear [Diophantine equation](/source/Diophantine_equation)

- s + ∑ l = 1 n − 1 l k l = n − 1 {\displaystyle s+\sum _{l=1}^{n-1}lk_{l}=n-1}

The formula can be rewritten in terms of complete [Bell polynomials](/source/Bell_polynomials) of arguments t l = − ( l − 1 ) ! tr ⁡ ( A l ) {\displaystyle t_{l}=-(l-1)!\operatorname {tr} \left(A^{l}\right)} as

- A − 1 = 1 det ( A ) ∑ s = 1 n A s − 1 ( − 1 ) n − 1 ( n − s ) ! B n − s ( t 1 , t 2 , … , t n − s ) {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}\sum _{s=1}^{n}\mathbf {A} ^{s-1}{\frac {(-1)^{n-1}}{(n-s)!}}B_{n-s}(t_{1},t_{2},\ldots ,t_{n-s})}

That is described in more detail under [Cayley–Hamilton method](/source/Cayley%E2%80%93Hamilton_theorem#Determinant_and_inverse_matrix).

### Eigendecomposition

Main article: [Eigendecomposition of a matrix](/source/Eigendecomposition_of_a_matrix)

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

- A − 1 = Q Λ − 1 Q − 1 , {\displaystyle \mathbf {A} ^{-1}=\mathbf {Q} \mathbf {\Lambda } ^{-1}\mathbf {Q} ^{-1},}

where **Q** is the square (*N* × *N*) matrix whose ith column is the [eigenvector](/source/Eigenvector) q i {\displaystyle q_{i}} of **A**, and **Λ** is the [diagonal matrix](/source/Diagonal_matrix) whose diagonal entries are the corresponding eigenvalues, that is, Λ i i = λ i . {\displaystyle \Lambda _{ii}=\lambda _{i}.} If **A** is symmetric, **Q** is guaranteed to be an [orthogonal matrix](/source/Orthogonal_matrix), therefore Q − 1 = Q T . {\displaystyle \mathbf {Q} ^{-1}=\mathbf {Q} ^{\mathrm {T} }.} Furthermore, because **Λ** is a diagonal matrix, its inverse is easy to calculate:

- [ Λ − 1 ] i i = 1 λ i {\displaystyle \left[\Lambda ^{-1}\right]_{ii}={\frac {1}{\lambda _{i}}}}

### Cholesky decomposition

Main article: [Cholesky decomposition](/source/Cholesky_decomposition)

If matrix **A** is [positive definite](/source/Positive_definite_matrix), then its inverse can be obtained as

- A − 1 = ( L ∗ ) − 1 L − 1 , {\displaystyle \mathbf {A} ^{-1}=\left(\mathbf {L} ^{*}\right)^{-1}\mathbf {L} ^{-1},}

where **L** is the [lower triangular](/source/Lower_triangular) [Cholesky decomposition](/source/Cholesky_decomposition) of **A**, and **L*** denotes the [conjugate transpose](/source/Conjugate_transpose) of **L**.

### Analytic solution

Main article: [Cramer's rule](/source/Cramer's_rule)

Writing the transpose of the [matrix of cofactors](/source/Matrix_of_cofactors), known as an [adjugate matrix](/source/Adjugate_matrix), may also be an efficient way to calculate the inverse of *small* matrices, but the [recursive](/source/Recursion) method is inefficient for large matrices. To determine the inverse, we calculate a matrix of cofactors:

- A − 1 = 1 | A | C T = 1 | A | ( C 11 C 21 ⋯ C n 1 C 12 C 22 ⋯ C n 2 ⋮ ⋮ ⋱ ⋮ C 1 n C 2 n ⋯ C n n ) {\displaystyle \mathbf {A} ^{-1}={1 \over {\begin{vmatrix}\mathbf {A} \end{vmatrix}}}\mathbf {C} ^{\mathrm {T} }={1 \over {\begin{vmatrix}\mathbf {A} \end{vmatrix}}}{\begin{pmatrix}\mathbf {C} _{11}&\mathbf {C} _{21}&\cdots &\mathbf {C} _{n1}\\\mathbf {C} _{12}&\mathbf {C} _{22}&\cdots &\mathbf {C} _{n2}\\\vdots &\vdots &\ddots &\vdots \\\mathbf {C} _{1n}&\mathbf {C} _{2n}&\cdots &\mathbf {C} _{nn}\\\end{pmatrix}}}

so that

- ( A − 1 ) i j = 1 | A | ( C T ) i j = 1 | A | ( C j i ) {\displaystyle \left(\mathbf {A} ^{-1}\right)_{ij}={1 \over {\begin{vmatrix}\mathbf {A} \end{vmatrix}}}\left(\mathbf {C} ^{\mathrm {T} }\right)_{ij}={1 \over {\begin{vmatrix}\mathbf {A} \end{vmatrix}}}\left(\mathbf {C} _{ji}\right)}

where |**A**| is the [determinant](/source/Determinant) of **A**, **C** is the matrix of cofactors, and **C**T represents the matrix [transpose](/source/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]

- A − 1 = [ a b c d ] − 1 = 1 det A [ d − b − c a ] = 1 a d − b c [ d − b − c a ] {\displaystyle \mathbf {A} ^{-1}={\begin{bmatrix}a&b\\c&d\\\end{bmatrix}}^{-1}={\frac {1}{\det \mathbf {A} }}{\begin{bmatrix}\,\,\,d&\!\!-b\\-c&\,a\\\end{bmatrix}}={\frac {1}{ad-bc}}{\begin{bmatrix}\,\,\,d&\!\!-b\\-c&\,a\\\end{bmatrix}}}

This is possible because 1/(*ad* − *bc*) is the [reciprocal](/source/Reciprocal_(mathematics)) of the determinant of the matrix in question, and the same strategy could be used for other matrix sizes.

The Cayley–Hamilton method gives

- A − 1 = 1 det A [ ( tr ⁡ A ) I − A ] {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det \mathbf {A} }}\left[\left(\operatorname {tr} \mathbf {A} \right)\mathbf {I} -\mathbf {A} \right]}

#### Inversion of 3 × 3 matrices

A [computationally efficient](/source/Computationally_efficient) 3 × 3 matrix inversion is given by

- A − 1 = [ a b c d e f g h i ] − 1 = 1 det ( A ) [ A B C D E F G H I ] T = 1 det ( A ) [ A D G B E H C F I ] {\displaystyle \mathbf {A} ^{-1}={\begin{bmatrix}a&b&c\\d&e&f\\g&h&i\\\end{bmatrix}}^{-1}={\frac {1}{\det(\mathbf {A} )}}{\begin{bmatrix}\,A&\,B&\,C\\\,D&\,E&\,F\\\,G&\,H&\,I\\\end{bmatrix}}^{\mathrm {T} }={\frac {1}{\det(\mathbf {A} )}}{\begin{bmatrix}\,A&\,D&\,G\\\,B&\,E&\,H\\\,C&\,F&\,I\\\end{bmatrix}}}

(where the [scalar](/source/Scalar_(mathematics)) A is not to be confused with the matrix **A**).

If the determinant is non-zero, the matrix is invertible, with the entries of the intermediary matrix on the right side above given by

- A = ( e i − f h ) , D = − ( b i − c h ) , G = ( b f − c e ) , B = − ( d i − f g ) , E = ( a i − c g ) , H = − ( a f − c d ) , C = ( d h − e g ) , F = − ( a h − b g ) , I = ( a e − b d ) . {\displaystyle {\begin{alignedat}{6}A&={}&(ei-fh),&\quad &D&={}&-(bi-ch),&\quad &G&={}&(bf-ce),\\B&={}&-(di-fg),&\quad &E&={}&(ai-cg),&\quad &H&={}&-(af-cd),\\C&={}&(dh-eg),&\quad &F&={}&-(ah-bg),&\quad &I&={}&(ae-bd).\\\end{alignedat}}}

The determinant of **A** can be computed by applying the [rule of Sarrus](/source/Rule_of_Sarrus) as follows:

- det ( A ) = a A + b B + c C {\displaystyle \det(\mathbf {A} )=aA+bB+cC}

The Cayley–Hamilton decomposition gives

- A − 1 = 1 det ( A ) ( 1 2 [ ( tr ⁡ A ) 2 − tr ⁡ ( A 2 ) ] I − A tr ⁡ A + A 2 ) {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}\left({\tfrac {1}{2}}\left[(\operatorname {tr} \mathbf {A} )^{2}-\operatorname {tr} (\mathbf {A} ^{2})\right]\mathbf {I} -\mathbf {A} \operatorname {tr} \mathbf {A} +\mathbf {A} ^{2}\right)}

The general 3 × 3 inverse can be expressed concisely in terms of the [cross product](/source/Cross_product) and [triple product](/source/Triple_product). If a matrix A = [ x 0 x 1 x 2 ] {\displaystyle \mathbf {A} ={\begin{bmatrix}\mathbf {x} _{0}&\mathbf {x} _{1}&\mathbf {x} _{2}\end{bmatrix}}} (consisting of three column vectors, x 0 {\displaystyle \mathbf {x} _{0}} , x 1 {\displaystyle \mathbf {x} _{1}} , and x 2 {\displaystyle \mathbf {x} _{2}} ) is invertible, its inverse is given by

- A − 1 = 1 det ( A ) [ ( x 1 × x 2 ) T ( x 2 × x 0 ) T ( x 0 × x 1 ) T ] {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}{\begin{bmatrix}{(\mathbf {x} _{1}\times \mathbf {x} _{2})}^{\mathrm {T} }\\{(\mathbf {x} _{2}\times \mathbf {x} _{0})}^{\mathrm {T} }\\{(\mathbf {x} _{0}\times \mathbf {x} _{1})}^{\mathrm {T} }\end{bmatrix}}}

The determinant of **A**, det(**A**), is equal to the triple product of **x**0, **x**1, and **x**2—the volume of the [parallelepiped](/source/Parallelepiped) formed by the rows or columns:

- det ( A ) = x 0 ⋅ ( x 1 × x 2 ) {\displaystyle \det(\mathbf {A} )=\mathbf {x} _{0}\cdot (\mathbf {x} _{1}\times \mathbf {x} _{2})}

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 of **A**–1 is orthogonal to the non-corresponding two columns of **A** (causing the off-diagonal terms of I = A − 1 A {\displaystyle \mathbf {I} =\mathbf {A} ^{-1}\mathbf {A} } be zero). Dividing by

- det ( A ) = x 0 ⋅ ( x 1 × x 2 ) {\displaystyle \det(\mathbf {A} )=\mathbf {x} _{0}\cdot (\mathbf {x} _{1}\times \mathbf {x} _{2})}

causes the diagonal entries of **I** = **A**−1**A** to be unity. For example, the first diagonal is:

- 1 = 1 x 0 ⋅ ( x 1 × x 2 ) x 0 ⋅ ( x 1 × x 2 ) {\displaystyle 1={\frac {1}{\mathbf {x_{0}} \cdot (\mathbf {x} _{1}\times \mathbf {x} _{2})}}\mathbf {x_{0}} \cdot (\mathbf {x} _{1}\times \mathbf {x} _{2})}

#### 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:

- A − 1 = 1 det ( A ) ( 1 6 ( ( tr ⁡ A ) 3 − 3 tr ⁡ A tr ⁡ ( A 2 ) + 2 tr ⁡ ( A 3 ) ) I − 1 2 A ( ( tr ⁡ A ) 2 − tr ⁡ ( A 2 ) ) + A 2 tr ⁡ A − A 3 ) {\displaystyle {\begin{aligned}\mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}{\Bigl (}&{\tfrac {1}{6}}{\bigl (}(\operatorname {tr} \mathbf {A} )^{3}-3\operatorname {tr} \mathbf {A} \operatorname {tr} (\mathbf {A} ^{2})+2\operatorname {tr} (\mathbf {A} ^{3}){\bigr )}\mathbf {I} \\[-3mu]&\ \ \ -{\tfrac {1}{2}}\mathbf {A} {\bigl (}(\operatorname {tr} \mathbf {A} )^{2}-\operatorname {tr} (\mathbf {A} ^{2}){\bigr )}+\mathbf {A} ^{2}\operatorname {tr} \mathbf {A} -\mathbf {A} ^{3}{\Bigr )}\end{aligned}}}

### Blockwise inversion

Let

M = [ A B C D ] {\displaystyle \mathbf {M} ={\begin{bmatrix}\mathbf {A} &\mathbf {B} \\\mathbf {C} &\mathbf {D} \end{bmatrix}}}

where **A**, **B**, **C** and **D** are [matrix sub-blocks](/source/Block_matrix) of arbitrary size and M / A := D − C A − 1 B {\displaystyle \mathbf {M} /\mathbf {A} :=\mathbf {D} -\mathbf {C} \mathbf {A} ^{-1}\mathbf {B} } is the [Schur complement](/source/Schur_complement) of **A**. (**A** must be square, so that it can be inverted. Furthermore, **A** and **D** − **CA**−1**B** must be nonsingular.[7])

Matrices can also be *inverted blockwise* by using the analytic inversion formula:[8]

[ A B C D ] − 1 = [ A − 1 + A − 1 B ( M / A ) − 1 C A − 1 − A − 1 B ( M / A ) − 1 − ( M / A ) − 1 C A − 1 ( M / A ) − 1 ] , {\displaystyle {\begin{bmatrix}\mathbf {A} &\mathbf {B} \\\mathbf {C} &\mathbf {D} \end{bmatrix}}^{-1}={\begin{bmatrix}\mathbf {A} ^{-1}+\mathbf {A} ^{-1}\mathbf {B} \ (\mathbf {M} /\mathbf {A} )^{-1}\mathbf {CA} ^{-1}&-\mathbf {A} ^{-1}\mathbf {B} \left(\mathbf {M} /\mathbf {A} \right)^{-1}\\-\left(\mathbf {M} /\mathbf {A} \right)^{-1}\mathbf {CA} ^{-1}&\left(\mathbf {M} /\mathbf {A} \right)^{-1}\end{bmatrix}},} 1

The strategy is particularly advantageous if **A** is diagonal and **M** / **A** is a small matrix, since they are the only matrices requiring inversion.

The [nullity theorem](/source/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](#math_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 **M** / **D** := **A** − **BD**−1**C** are nonsingular,[9] the result is

[ A B C D ] − 1 = [ ( M / D ) − 1 − ( M / D ) − 1 B D − 1 − D − 1 C ( M / D ) − 1 D − 1 + D − 1 C ( M / D ) − 1 B D − 1 ] . {\displaystyle {\begin{bmatrix}\mathbf {A} &\mathbf {B} \\\mathbf {C} &\mathbf {D} \end{bmatrix}}^{-1}={\begin{bmatrix}\left(\mathbf {M} /\mathbf {D} \right)^{-1}&-\left(\mathbf {M} /\mathbf {D} \right)^{-1}\mathbf {BD} ^{-1}\\-\mathbf {D} ^{-1}\mathbf {C} \left(\mathbf {M} /\mathbf {D} \right)^{-1}&\quad \mathbf {D} ^{-1}+\mathbf {D} ^{-1}\mathbf {C} \left(\mathbf {M} /\mathbf {D} \right)^{-1}\mathbf {BD} ^{-1}\end{bmatrix}}.} 2

Equating the upper-left sub-matrices of Equations (**[1](#math_1)**) and (**[2](#math_2)**) leads to

( A − B D − 1 C ) − 1 = A − 1 + A − 1 B ( D − C A − 1 B ) − 1 C A − 1 ( A − B D − 1 C ) − 1 B D − 1 = A − 1 B ( D − C A − 1 B ) − 1 D − 1 C ( A − B D − 1 C ) − 1 = ( D − C A − 1 B ) − 1 C A − 1 D − 1 + D − 1 C ( A − B D − 1 C ) − 1 B D − 1 = ( D − C A − 1 B ) − 1 {\displaystyle {\begin{aligned}\left(\mathbf {A} -\mathbf {BD} ^{-1}\mathbf {C} \right)^{-1}&=\mathbf {A} ^{-1}+\mathbf {A} ^{-1}\mathbf {B} \left(\mathbf {D} -\mathbf {CA} ^{-1}\mathbf {B} \right)^{-1}\mathbf {CA} ^{-1}\\\left(\mathbf {A} -\mathbf {BD} ^{-1}\mathbf {C} \right)^{-1}\mathbf {BD} ^{-1}&=\mathbf {A} ^{-1}\mathbf {B} \left(\mathbf {D} -\mathbf {CA} ^{-1}\mathbf {B} \right)^{-1}\\\mathbf {D} ^{-1}\mathbf {C} \left(\mathbf {A} -\mathbf {BD} ^{-1}\mathbf {C} \right)^{-1}&=\left(\mathbf {D} -\mathbf {CA} ^{-1}\mathbf {B} \right)^{-1}\mathbf {CA} ^{-1}\\\mathbf {D} ^{-1}+\mathbf {D} ^{-1}\mathbf {C} \left(\mathbf {A} -\mathbf {BD} ^{-1}\mathbf {C} \right)^{-1}\mathbf {BD} ^{-1}&=\left(\mathbf {D} -\mathbf {CA} ^{-1}\mathbf {B} \right)^{-1}\end{aligned}}} 3

where Equation (**[3](#math_3)**) is the [Woodbury matrix identity](/source/Woodbury_matrix_identity), which is equivalent to the [binomial inverse theorem](/source/Binomial_inverse_theorem).

If **A** and **D** are both invertible, then the above two block matrix inverses can be combined to provide the simple factorization

[ A B C D ] − 1 = [ ( A − B D − 1 C ) − 1 0 0 ( D − C A − 1 B ) − 1 ] [ I − B D − 1 − C A − 1 I ] . {\displaystyle {\begin{bmatrix}\mathbf {A} &\mathbf {B} \\\mathbf {C} &\mathbf {D} \end{bmatrix}}^{-1}={\begin{bmatrix}\left(\mathbf {A} -\mathbf {B} \mathbf {D} ^{-1}\mathbf {C} \right)^{-1}&\mathbf {0} \\\mathbf {0} &\left(\mathbf {D} -\mathbf {C} \mathbf {A} ^{-1}\mathbf {B} \right)^{-1}\end{bmatrix}}{\begin{bmatrix}\mathbf {I} &-\mathbf {B} \mathbf {D} ^{-1}\\-\mathbf {C} \mathbf {A} ^{-1}&\mathbf {I} \end{bmatrix}}.} 2

By the [Weinstein–Aronszajn identity](/source/Weinstein%E2%80%93Aronszajn_identity), one of the two matrices in the block-diagonal matrix is invertible exactly when the other is.

This formula simplifies significantly when the upper right block matrix **B** is the [zero matrix](/source/Zero_matrix). This formulation is useful when the matrices **A** and **D** have relatively simple inverse formulas (or [pseudo inverses](/source/Moore%E2%80%93Penrose_inverse) in the case where the blocks are not all square. In this special case, the block matrix inversion formula stated in full generality above becomes

- [ A 0 C D ] − 1 = [ A − 1 0 − D − 1 C A − 1 D − 1 ] {\displaystyle {\begin{bmatrix}\mathbf {A} &\mathbf {0} \\\mathbf {C} &\mathbf {D} \end{bmatrix}}^{-1}={\begin{bmatrix}\mathbf {A} ^{-1}&\mathbf {0} \\-\mathbf {D} ^{-1}\mathbf {CA} ^{-1}&\mathbf {D} ^{-1}\end{bmatrix}}}

If the given invertible matrix is a symmetric matrix with invertible block **A** the following block inverse formula holds[10]

[ A C T C D ] − 1 = [ A − 1 + A − 1 C T S − 1 C A − 1 − A − 1 C T S − 1 − S − 1 C A − 1 S − 1 ] , {\displaystyle {\begin{bmatrix}\mathbf {A} &\mathbf {C} ^{T}\\\mathbf {C} &\mathbf {D} \end{bmatrix}}^{-1}={\begin{bmatrix}\mathbf {A} ^{-1}+\mathbf {A} ^{-1}\mathbf {C} ^{T}\mathbf {S} ^{-1}\mathbf {C} \mathbf {A} ^{-1}&-\mathbf {A} ^{-1}\mathbf {C} ^{T}\mathbf {S} ^{-1}\\-\mathbf {S} ^{-1}\mathbf {C} \mathbf {A} ^{-1}&\mathbf {S} ^{-1}\end{bmatrix}},} 4

where S = D − C A − 1 C T {\displaystyle \mathbf {S} =\mathbf {D} -\mathbf {C} \mathbf {A} ^{-1}\mathbf {C} ^{T}} . This requires 2 inversions of the half-sized matrices **A** and **S** and only 4 multiplications of half-sized matrices, if organized properly W 1 = C A − 1 , W 2 = W 1 C T = C A − 1 C T , W 3 = S − 1 W 1 = S − 1 C A − 1 , W 4 = W 1 T W 3 = A − 1 C T S − 1 C A − 1 , {\displaystyle {\begin{aligned}\mathbf {W} _{1}&=\mathbf {C} \mathbf {A} ^{-1},\\[3mu]\mathbf {W} _{2}&=\mathbf {W} _{1}\mathbf {C} ^{T}=\mathbf {C} \mathbf {A} ^{-1}\mathbf {C} ^{T},\\[3mu]\mathbf {W} _{3}&=\mathbf {S} ^{-1}\mathbf {W} _{1}=\mathbf {S} ^{-1}\mathbf {C} \mathbf {A} ^{-1},\\[3mu]\mathbf {W} _{4}&=\mathbf {W} _{1}^{T}\mathbf {W} _{3}=\mathbf {A} ^{-1}\mathbf {C} ^{T}\mathbf {S} ^{-1}\mathbf {C} \mathbf {A} ^{-1},\end{aligned}}} together with some additions, subtractions, negations and transpositions of negligible complexity. Any matrix M {\displaystyle \mathbf {M} } has an associated positive semidefinite, symmetric matrix M T M {\displaystyle \mathbf {M} ^{T}\mathbf {M} } , which is exactly invertible (and positive definite), if and only if M {\displaystyle \mathbf {M} } is invertible. By writing M − 1 = ( M T M ) − 1 M T {\displaystyle \mathbf {M} ^{-1}=\left(\mathbf {M} ^{T}\mathbf {M} \right)^{-1}\mathbf {M} ^{T}} matrix inversion can be reduced to inverting symmetric matrices and 2 additional matrix multiplications, because the [positive definite matrix](/source/Definite_matrix#Decomposition) M T M {\displaystyle \mathbf {M} ^{T}\mathbf {M} } satisfies the invertibility condition for its left upper block **A**.

Those formulas together allow to construct a [divide and conquer algorithm](/source/Divide_and_conquer_algorithm) that uses blockwise inversion of associated symmetric matrices to invert a matrix with the same time complexity as the [matrix multiplication algorithm](/source/Matrix_multiplication_algorithm) that is used internally.[10] [Research into matrix multiplication complexity](/source/Computational_complexity_of_matrix_multiplication) shows that there exist matrix multiplication algorithms with a complexity of *O*(*n*2.371552) operations, while the best proven lower bound is [Ω](/source/Big_O_notation#Family_of_Bachmann–Landau_notations)(*n*2 log *n*).[11]

### By Neumann series

If a matrix **A** has the property that

- lim n → ∞ ( I − A ) n = 0 {\displaystyle \lim _{n\to \infty }(\mathbf {I} -\mathbf {A} )^{n}=0}

then **A** is nonsingular and its inverse may be expressed by a [Neumann series](/source/Neumann_series):[12]

- A − 1 = ∑ n = 0 ∞ ( I − A ) n {\displaystyle \mathbf {A} ^{-1}=\sum _{n=0}^{\infty }(\mathbf {I} -\mathbf {A} )^{n}}

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

- ∑ n = 0 2 L − 1 ( I − A ) n = ∏ l = 0 L − 1 ( I + ( I − A ) 2 l ) {\displaystyle \sum _{n=0}^{2^{L}-1}(\mathbf {I} -\mathbf {A} )^{n}=\prod _{l=0}^{L-1}\left(\mathbf {I} +(\mathbf {I} -\mathbf {A} )^{2^{l}}\right)}

Therefore, only 2*L* − 2 matrix multiplications are needed to compute 2*L* terms of the sum.

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

- lim n → ∞ ( I − X − 1 A ) n = 0 o r lim n → ∞ ( I − A X − 1 ) n = 0 {\displaystyle \lim _{n\to \infty }\left(\mathbf {I} -\mathbf {X} ^{-1}\mathbf {A} \right)^{n}=0\mathrm {~~or~~} \lim _{n\to \infty }\left(\mathbf {I} -\mathbf {A} \mathbf {X} ^{-1}\right)^{n}=0}

then **A** is nonsingular and its inverse is

- A − 1 = ∑ n = 0 ∞ ( X − 1 ( X − A ) ) n X − 1 {\displaystyle \mathbf {A} ^{-1}=\sum _{n=0}^{\infty }\left(\mathbf {X} ^{-1}(\mathbf {X} -\mathbf {A} )\right)^{n}\mathbf {X} ^{-1}~}

If it is also the case that **A** − **X** has [rank](/source/Rank_(linear_algebra)) 1 then this simplifies to

- A − 1 = X − 1 − X − 1 ( A − X ) X − 1 1 + tr ⁡ ( X − 1 ( A − X ) ) {\displaystyle \mathbf {A} ^{-1}=\mathbf {X} ^{-1}-{\frac {\mathbf {X} ^{-1}(\mathbf {A} -\mathbf {X} )\mathbf {X} ^{-1}}{1+\operatorname {tr} \left(\mathbf {X} ^{-1}(\mathbf {A} -\mathbf {X} )\right)}}~}

### *p*-adic approximation

If **A** is a matrix with [integer](/source/Integer) or [rational](/source/Rational_number) entries, and we seek a solution in [arbitrary-precision](/source/Arbitrary-precision_arithmetic) rationals, a [p-adic](/source/P-adic) approximation method converges to an exact solution in O(*n*4 log2 *n*), assuming standard O(*n*3) matrix multiplication is used.[13] The method relies on solving n linear systems via Dixon's method of p-adic approximation (each in O(*n*3 log2 *n*)) and is available as such in software specialized in arbitrary-precision matrix operations, for example, in IML.[14]

### Reciprocal basis vectors method

Main article: [Reciprocal basis](/source/Reciprocal_basis)

Given an *n* × *n* square matrix X = [ x i j ] {\displaystyle \mathbf {X} =\left[x^{ij}\right]} , 1 ≤ i , j ≤ n {\displaystyle 1\leq i,j\leq n} , with n rows interpreted as n vectors x i = x i j e j {\displaystyle \mathbf {x} _{i}=x^{ij}\mathbf {e} _{j}} ([Einstein summation](/source/Einstein_summation) assumed) where the e j {\displaystyle \mathbf {e} _{j}} are a standard [orthonormal basis](/source/Orthonormal_basis) of [Euclidean space](/source/Euclidean_space) R n {\displaystyle \mathbb {R} ^{n}} ( e i = e i , e i ⋅ e j = δ i j {\displaystyle \mathbf {e} _{i}=\mathbf {e} ^{i},\mathbf {e} _{i}\cdot \mathbf {e} ^{j}=\delta _{i}^{j}} ), then using [Clifford algebra](/source/Clifford_algebra) (or [geometric algebra](/source/Geometric_algebra)) we compute the reciprocal (sometimes called [dual](/source/Geometric_algebra#Dual_basis)) column vectors:

- x i = x j i e j = ( − 1 ) i − 1 ( x 1 ∧ ⋯ ∧ ( ) i ∧ ⋯ ∧ x n ) ⋅ ( x 1 ∧ x 2 ∧ ⋯ ∧ x n ) − 1 {\displaystyle \mathbf {x} ^{i}=x_{ji}\mathbf {e} ^{j}=(-1)^{i-1}(\mathbf {x} _{1}\wedge \cdots \wedge ()_{i}\wedge \cdots \wedge \mathbf {x} _{n})\cdot (\mathbf {x} _{1}\wedge \ \mathbf {x} _{2}\wedge \cdots \wedge \mathbf {x} _{n})^{-1}}

as the columns of the inverse matrix X − 1 = [ x j i ] . {\displaystyle \mathbf {X} ^{-1}=[x_{ji}].} Note that, the place " ( ) i {\displaystyle ()_{i}} " indicates that " x i {\displaystyle \mathbf {x} _{i}} " is removed from that place in the above expression for x i {\displaystyle \mathbf {x} ^{i}} . We then have X X − 1 = [ x i ⋅ x j ] = [ δ i j ] = I n {\displaystyle \mathbf {X} \mathbf {X} ^{-1}=\left[\mathbf {x} _{i}\cdot \mathbf {x} ^{j}\right]=\left[\delta _{i}^{j}\right]=\mathbf {I} _{n}} , where δ i j {\displaystyle \delta _{i}^{j}} is the [Kronecker delta](/source/Kronecker_delta). We also have X − 1 X = [ ( e i ⋅ x k ) ( e j ⋅ x k ) ] = [ e i ⋅ e j ] = [ δ i j ] = I n {\displaystyle \mathbf {X} ^{-1}\mathbf {X} =\left[\left(\mathbf {e} _{i}\cdot \mathbf {x} ^{k}\right)\left(\mathbf {e} ^{j}\cdot \mathbf {x} _{k}\right)\right]=\left[\mathbf {e} _{i}\cdot \mathbf {e} ^{j}\right]=\left[\delta _{i}^{j}\right]=\mathbf {I} _{n}} , as required. If the vectors x i {\displaystyle \mathbf {x} _{i}} are not linearly independent, then ( x 1 ∧ x 2 ∧ ⋯ ∧ x n ) = 0 {\displaystyle (\mathbf {x} _{1}\wedge \mathbf {x} _{2}\wedge \cdots \wedge \mathbf {x} _{n})=0} and the matrix X {\displaystyle \mathbf {X} } is not invertible (has no inverse).

## Properties

### Singularity

Over a [field](/source/Field_(mathematics)), a square matrix that is *not* invertible is called **singular** or **degenerate**. A square matrix with entries in a field is singular [if and only if](/source/If_and_only_if) its [determinant](/source/Determinant) is zero.

### Invertible matrix theorem

Let **A** be a square n-by-n matrix over a [field](/source/Field_(mathematics)) K (e.g., the field ⁠ R {\displaystyle \mathbb {R} } ⁠ of real numbers). The following statements are equivalent, i.e., they are either all true or all false for any given matrix:[15]

- **A** is invertible, i.e. it has an inverse under matrix multiplication, i.e., there exists a **B** such that **AB** = **I***n* = **BA**. (In that statement, "invertible" can equivalently be replaced with "left-invertible" or "right-invertible" in which one-sided inverses are considered.)

- The linear transformation mapping **x** to **Ax** is invertible, i.e., it has an inverse under function composition. (There, again, "invertible" can equivalently be replaced with either "left-invertible" or "right-invertible".)

- The [transpose](/source/Transpose) **A**T is an invertible matrix.

- **A** is [row-equivalent](/source/Row_equivalence) to the n-by-n [identity matrix](/source/Identity_matrix) **I***n*.

- **A** is [column-equivalent](/source/Row_equivalence) to the n-by-n identity matrix **I***n*.

- **A** has n [pivot positions](/source/Pivot_position).

- **A** has full [rank](/source/Rank_(linear_algebra)): rank **A** = *n*.

- **A** has a trivial [kernel](/source/Kernel_(linear_algebra)): ker(**A**) = {**0**}.

- The linear transformation mapping **x** to **Ax** is bijective; that is, the equation **Ax** = **b** has exactly one solution for each **b** in Kn. (There, "bijective" can equivalently be replaced with "[injective](/source/Injective)" or "[surjective](/source/Surjective)".)

- The columns of **A** form a [basis](/source/Basis_of_a_vector_space) of Kn. (In this statement, "basis" can equivalently be replaced with either "linearly independent set" or "spanning set")

- The rows of **A** form a basis of Kn. (Similarly, here, "basis" can equivalently be replaced with either "linearly independent set" or "spanning set")

- The [determinant](/source/Determinant) of **A** is nonzero: det **A** ≠ 0. In general, a square matrix over a [commutative ring](/source/Commutative_ring) is invertible if and only if its determinant is a [unit](/source/Unit_(ring_theory)) (i.e. multiplicatively invertible element) of that ring.

- The number 0 is not an [eigenvalue](/source/Eigenvalue) of **A**. (More generally, a number λ {\displaystyle \lambda } is an eigenvalue of **A** if the matrix A − λ I {\displaystyle \mathbf {A} -\lambda \mathbf {I} } is singular, where **I** is the identity matrix.)

- The matrix **A** can be expressed as a finite product of [elementary matrices](/source/Elementary_matrix).

### Other properties

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

- ( A − 1 ) − 1 = A {\displaystyle (\mathbf {A} ^{-1})^{-1}=\mathbf {A} }

- ( k A ) − 1 = k − 1 A − 1 {\displaystyle (k\mathbf {A} )^{-1}=k^{-1}\mathbf {A} ^{-1}} for nonzero scalar k

- ( A x ) + = x + A − 1 {\displaystyle (\mathbf {Ax} )^{+}=\mathbf {x} ^{+}\mathbf {A} ^{-1}} if **A** has orthonormal columns, where + denotes the [Moore–Penrose inverse](/source/Moore%E2%80%93Penrose_inverse) and **x** is a vector

- ( A T ) − 1 = ( A − 1 ) T {\displaystyle (\mathbf {A} ^{\mathrm {T} })^{-1}=(\mathbf {A} ^{-1})^{\mathrm {T} }}

- For any invertible n-by-n matrices **A** and **B**, ( A B ) − 1 = B − 1 A − 1 . {\displaystyle (\mathbf {AB} )^{-1}=\mathbf {B} ^{-1}\mathbf {A} ^{-1}.} More generally, if A 1 , … , A k {\displaystyle \mathbf {A} _{1},\dots ,\mathbf {A} _{k}} are invertible n-by-n matrices, then ( A 1 A 2 ⋯ A k − 1 A k ) − 1 = A k − 1 A k − 1 − 1 ⋯ A 2 − 1 A 1 − 1 . {\displaystyle (\mathbf {A} _{1}\mathbf {A} _{2}\cdots \mathbf {A} _{k-1}\mathbf {A} _{k})^{-1}=\mathbf {A} _{k}^{-1}\mathbf {A} _{k-1}^{-1}\cdots \mathbf {A} _{2}^{-1}\mathbf {A} _{1}^{-1}.}

- det A − 1 = ( det A ) − 1 . {\displaystyle \det \mathbf {A} ^{-1}=(\det \mathbf {A} )^{-1}.}

- Left and right inverses are equal. That is, if L A = I {\displaystyle \mathbf {LA} =\mathbf {I} } and A R = I {\displaystyle \mathbf {AR} =\mathbf {I} } then L = L ( A R ) = ( L A ) R = R {\displaystyle \mathbf {L} =\mathbf {L} (\mathbf {AR} )=(\mathbf {LA} )\mathbf {R} =\mathbf {R} } .

The rows of the inverse matrix **V** of a matrix **U** are [orthonormal](/source/Orthonormal) to the columns of **U** (and vice versa interchanging rows for columns). To see this, suppose that **UV** = **VU** = **I** where the rows of **V** are denoted as v i T {\displaystyle v_{i}^{\mathrm {T} }} and the columns of **U** as u j {\displaystyle u_{j}} for 1 ≤ i , j ≤ n . {\displaystyle 1\leq i,j\leq n.} Then clearly, the [Euclidean inner product](/source/Dot_product) of any two v i T u j = δ i , j . {\displaystyle v_{i}^{\mathrm {T} }u_{j}=\delta _{i,j}.} This property can also be useful in constructing the inverse of a square matrix in some instances, where a set of [orthogonal](/source/Orthogonal) vectors (but not necessarily orthonormal vectors) to the columns of **U** are known. In which case, one can apply the iterative [Gram–Schmidt process](/source/Gram%E2%80%93Schmidt_process) to this initial set to determine the rows of the inverse **V**.

A matrix that is its own inverse (i.e., a matrix **A** such that **A** = **A**−1 and consequently **A**2 = **I**) is called an [involutory matrix](/source/Involutory_matrix).

### In relation to its adjugate

The [adjugate](/source/Adjugate_matrix) of a matrix **A** can be used to find the inverse of **A** as follows:

If **A** is an invertible matrix, then

- A − 1 = 1 det ( A ) adj ⁡ ( A ) {\displaystyle \mathbf {A} ^{-1}={\frac {1}{\det(\mathbf {A} )}}\operatorname {adj} (\mathbf {A} )}

### In relation to the identity matrix

It follows from the [associativity](/source/Associativity) of matrix multiplication that if

- A B = I {\displaystyle \mathbf {AB} =\mathbf {I} \ }

for *finite square* matrices **A** and **B**, then also

- B A = I {\displaystyle \mathbf {BA} =\mathbf {I} \ } [16]

### Density

Over the field of real numbers, the set of singular n-by-n matrices, considered as a [subset](/source/Subset) of ⁠ R n × n , {\displaystyle \mathbb {R} ^{n\times n},} ⁠ is a [null set](/source/Null_set), that is, has [Lebesgue measure](/source/Lebesgue_measure) zero. That is true because singular matrices are the roots of the [determinant](/source/Determinant) function. It is a [continuous function](/source/Continuous_function) because it is a [polynomial](/source/Polynomial) in the entries of the matrix. Thus in the language of [measure theory](/source/Measure_theory), [almost all](/source/Almost_all) n-by-n matrices are invertible.

Furthermore, the set of n-by-n invertible matrices is [open](/source/Open_set) and [dense](/source/Dense_set) in the [topological space](/source/Topological_space) of all n-by-n matrices. Equivalently, the set of singular matrices is [closed](/source/Closed_set) and [nowhere dense](/source/Nowhere_dense) in the space of n-by-n matrices.

In practice, however, non-invertible matrices may be encountered. In [numerical calculations](/source/Numerical_analysis), matrices that are invertible but close to a non-invertible matrix may still be problematic and are said to be [ill-conditioned](/source/Condition_number#Matrices).

## Derivative of the matrix inverse

Suppose that the invertible matrix **A** depends on a parameter *t*. Then the [derivative](/source/Derivative_of_matrix) of the inverse of **A** with respect to *t* is given by[17]

- d d t A − 1 = − A − 1 d A d t A − 1 {\displaystyle {\frac {\mathrm {d} }{\mathrm {d} t}}\mathbf {A} ^{-1}=-\mathbf {A} ^{-1}{\frac {\mathrm {d} \mathbf {A} }{\mathrm {d} t}}\mathbf {A} ^{-1}}

To derive the above expression for the derivative of the inverse of **A**, one can differentiate the definition of the matrix inverse A − 1 A = I {\displaystyle \mathbf {A} ^{-1}\mathbf {A} =\mathbf {I} } using the [product rule](/source/Product_rule), and then solve for the derivative of the inverse of **A**:

- 0 = d I d t = d ( A − 1 A ) d t = d ( A − 1 ) d t A + A − 1 d A d t {\displaystyle \mathbf {0} ={\frac {\mathrm {d} \mathbf {I} }{\mathrm {d} t}}={\frac {\mathrm {d} (\mathbf {A} ^{-1}\mathbf {A} )}{\mathrm {d} t}}={\frac {\mathrm {d} (\mathbf {A} ^{-1})}{\mathrm {d} t}}\mathbf {A} +\mathbf {A} ^{-1}{\frac {\mathrm {d} \mathbf {A} }{\mathrm {d} t}}}

Subtracting A − 1 d A d t {\displaystyle \mathbf {A} ^{-1}{\frac {\mathrm {d} \mathbf {A} }{\mathrm {d} t}}} from both ends of this formula, and multiplying on the right by A − 1 {\displaystyle \mathbf {A} ^{-1}} finishes the derivation.

If ε {\displaystyle \varepsilon } is a small number then the derivative formula gives:

- ( A + ε X ) − 1 = A − 1 − ε A − 1 X A − 1 + O ( ε 2 ) {\displaystyle \left(\mathbf {A} +\varepsilon \mathbf {X} \right)^{-1}=\mathbf {A} ^{-1}-\varepsilon \mathbf {A} ^{-1}\mathbf {X} \mathbf {A} ^{-1}+{\mathcal {O}}(\varepsilon ^{2})\,}

Given a positive integer n {\displaystyle n} ,

- d d t A n = ∑ i = 1 n A i − 1 d A d t A n − i , d d t A − n = − ∑ i = 1 n A − i d A d t A − ( n + 1 − i ) {\displaystyle {\begin{aligned}{\frac {\mathrm {d} }{\mathrm {d} t}}\mathbf {A} ^{n}&=\sum _{i=1}^{n}\mathbf {A} ^{i-1}{\frac {\mathrm {d} \mathbf {A} }{\mathrm {d} t}}\mathbf {A} ^{n-i},\\{\frac {\mathrm {d} }{\mathrm {d} t}}\mathbf {A} ^{-n}&=-\sum _{i=1}^{n}\mathbf {A} ^{-i}{\frac {\mathrm {d} \mathbf {A} }{\mathrm {d} t}}\mathbf {A} ^{-(n+1-i)}\end{aligned}}}

In particular,

- ( A + ε X ) n = A n + ε ∑ i = 1 n A i − 1 X A n − i + O ( ε 2 ) , ( A + ε X ) − n = A − n − ε ∑ i = 1 n A − i X A − ( n + 1 − i ) + O ( ε 2 ) {\displaystyle {\begin{aligned}(\mathbf {A} +\varepsilon \mathbf {X} )^{n}&=\mathbf {A} ^{n}+\varepsilon \sum _{i=1}^{n}\mathbf {A} ^{i-1}\mathbf {X} \mathbf {A} ^{n-i}+{\mathcal {O}}\left(\varepsilon ^{2}\right),\\(\mathbf {A} +\varepsilon \mathbf {X} )^{-n}&=\mathbf {A} ^{-n}-\varepsilon \sum _{i=1}^{n}\mathbf {A} ^{-i}\mathbf {X} \mathbf {A} ^{-(n+1-i)}+{\mathcal {O}}\left(\varepsilon ^{2}\right)\end{aligned}}}

## Generalizations

### Non-square matrices

Non-square matrices, i.e. m-by-n matrices for which *m* ≠ *n*, do not have an inverse. However, in some cases such a matrix may have a [left inverse](/source/Inverse_element#Matrices) or [right inverse](/source/Inverse_element#Matrices). If **A** is m-by-n and the [rank](/source/Rank_(linear_algebra)) of **A** is equal to *n*, (*n* ≤ *m*), then **A** has a left inverse, an *n*-by-*m* matrix **B** such that **BA** = **I***n*. If **A** has rank *m* (*m* ≤ *n*), then it has a right inverse, an n-by-m matrix **B** such that **AB** = **I***m*.

Some of the properties of inverse matrices are shared by [generalized inverses](/source/Generalized_inverse) (such as the [Moore–Penrose inverse](/source/Moore%E2%80%93Penrose_inverse)), which can be defined for any *m*-by-*n* matrix.[18]

### In Abstract algebra

While the most common case is that of matrices over the [real](/source/Real_number) or [complex](/source/Complex_number) numbers, all of those definitions can be given for matrices over any [algebraic structure](/source/Algebraic_structure) equipped with [addition](/source/Addition) and [multiplication](/source/Multiplication) (i.e. [rings](/source/Ring_(mathematics))). However, in the case of a ring being [commutative](/source/Commutative_ring), 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 it being nonzero. For a [noncommutative ring](/source/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](/source/Matrix_multiplication) and entries from ring R form a [group](/source/Group_(mathematics)), the [general linear group](/source/General_linear_group) of degree n, denoted GL*n*(*R*).

## Applications

For most practical applications, it is not necessary to invert a matrix to solve a [system of linear equations](/source/System_of_linear_equations); however, for a unique solution, it is necessary for the matrix involved to be invertible.

Decomposition techniques like [LU decomposition](/source/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 and is 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.[19]

### Matrix inverses in real-time simulations

Matrix inversion plays a significant role in [computer graphics](/source/Computer_graphics), particularly in [3D graphics](/source/3D_graphics) rendering and [3D simulations](https://en.wikipedia.org/w/index.php?title=3D_simulations&action=edit&redlink=1). Examples include screen-to-world [ray casting](/source/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](/source/MIMO) (Multiple-Input, Multiple-Output) technology in [wireless communications](/source/Wireless_communications). The MIMO system consists of *N* transmit and *M* receive antennas. Unique signals, occupying the same [frequency band](/source/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](/source/Linear_combination) of the *N* transmitted signals forming an *N* × *M* transmission matrix **H**. It is crucial for the matrix **H** to be invertible so that the receiver can figure out the transmitted information.[20]

## See also

- [Singular matrix](/source/Singular_matrix)

- [Binomial inverse theorem](/source/Binomial_inverse_theorem)

- [LU decomposition](/source/LU_decomposition)

- [Matrix decomposition](/source/Matrix_decomposition)

- [Matrix square root](/source/Matrix_square_root)

- [Minor (linear algebra)](/source/Minor_(linear_algebra))

- [Partial inverse of a matrix](/source/Partial_inverse_of_a_matrix)

- [Pseudoinverse](/source/Pseudoinverse)

- [Rybicki Press algorithm](/source/Rybicki_Press_algorithm)

- [Singular value decomposition](/source/Singular_value_decomposition)

- [Woodbury matrix identity](/source/Woodbury_matrix_identity)

## References

1. **[^](#cite_ref-1)** [Axler, Sheldon](/source/Sheldon_Axler) (18 December 2014). *Linear Algebra Done Right*. [Undergraduate Texts in Mathematics](/source/Undergraduate_Texts_in_Mathematics) (3rd ed.). [Springer Publishing](/source/Springer_Publishing) (published 2015). p. 296. [ISBN](/source/ISBN_(identifier)) [978-3-319-11079-0](https://en.wikipedia.org/wiki/Special:BookSources/978-3-319-11079-0).

1. **[^](#cite_ref-2)** J.-S. Roger Jang (March 2001). ["Matrix Inverse in Block Form"](https://www.cs.nthu.edu.tw/~jang/book/addenda/matinv/matinv/).

1. **[^](#cite_ref-3)** Pan, Victor; Reif, John (1985), *Efficient Parallel Solution of Linear Systems*, Proceedings of the 17th Annual ACM Symposium on Theory of Computing, Providence: [ACM](/source/Association_for_Computing_Machinery)

1. **[^](#cite_ref-4)** Pan, Victor; Reif, John (1985), *Harvard University Center for Research in Computing Technology Report TR-02-85*, Cambridge, MA: [Aiken Computation Laboratory](https://en.wikipedia.org/w/index.php?title=Aiken_Computation_Laboratory&action=edit&redlink=1)

1. **[^](#cite_ref-5)** A proof can be found in the Appendix B of Kondratyuk, L. A.; Krivoruchenko, M. I. (1992). ["Superconducting quark matter in SU(2) color group"](https://www.researchgate.net/publication/226920070). *Zeitschrift für Physik A*. **344** (1): 99–115. [Bibcode](/source/Bibcode_(identifier)):[1992ZPhyA.344...99K](https://ui.adsabs.harvard.edu/abs/1992ZPhyA.344...99K). [doi](/source/Doi_(identifier)):[10.1007/BF01291027](https://doi.org/10.1007%2FBF01291027). [S2CID](/source/S2CID_(identifier)) [120467300](https://api.semanticscholar.org/CorpusID:120467300).

1. **[^](#cite_ref-6)** Strang, Gilbert (2003). [*Introduction to linear algebra*](https://books.google.com/books?id=Gv4pCVyoUVYC) (3rd ed.). SIAM. p. 71. [ISBN](/source/ISBN_(identifier)) [978-0-9614088-9-3](https://en.wikipedia.org/wiki/Special:BookSources/978-0-9614088-9-3)., [Chapter 2, page 71](https://books.google.com/books?id=Gv4pCVyoUVYC&pg=PA71)

1. **[^](#cite_ref-7)** Bernstein, Dennis (2005). *Matrix Mathematics*. Princeton University Press. p. 44. [ISBN](/source/ISBN_(identifier)) [978-0-691-11802-4](https://en.wikipedia.org/wiki/Special:BookSources/978-0-691-11802-4).

1. **[^](#cite_ref-8)** Tzon-Tzer, Lu; Sheng-Hua, Shiou (2002). "Inverses of 2 × 2 block matrices". *Computers & Mathematics with Applications*. **43** (1–2): 119–129. [doi](/source/Doi_(identifier)):[10.1016/S0898-1221(01)00278-4](https://doi.org/10.1016%2FS0898-1221%2801%2900278-4).

1. **[^](#cite_ref-9)** Bernstein, Dennis (2005). *Matrix Mathematics*. Princeton University Press. p. 45. [ISBN](/source/ISBN_(identifier)) [978-0-691-11802-4](https://en.wikipedia.org/wiki/Special:BookSources/978-0-691-11802-4).

1. ^ [***a***](#cite_ref-Cormen_10-0) [***b***](#cite_ref-Cormen_10-1) T. H. Cormen, C. E. Leiserson, R. L. Rivest, C. Stein, *Introduction to Algorithms*, 3rd ed., MIT Press, Cambridge, MA, 2009, §28.2.

1. **[^](#cite_ref-11)** [Ran Raz](/source/Ran_Raz). On the complexity of matrix product. In Proceedings of the thirty-fourth annual ACM symposium on Theory of computing. ACM Press, 2002. [doi](/source/Doi_(identifier)):[10.1145/509907.509932](https://doi.org/10.1145%2F509907.509932).

1. **[^](#cite_ref-12)** Stewart, Gilbert (1998). *Matrix Algorithms: Basic decompositions*. SIAM. p. 55. [ISBN](/source/ISBN_(identifier)) [978-0-89871-414-2](https://en.wikipedia.org/wiki/Special:BookSources/978-0-89871-414-2).

1. **[^](#cite_ref-13)** Haramoto, H.; Matsumoto, M. (2009). ["A p-adic algorithm for computing the inverse of integer matrices"](https://doi.org/10.1016%2Fj.cam.2008.07.044). *Journal of Computational and Applied Mathematics*. **225** (1): 320–322. [Bibcode](/source/Bibcode_(identifier)):[2009JCoAM.225..320H](https://ui.adsabs.harvard.edu/abs/2009JCoAM.225..320H). [doi](/source/Doi_(identifier)):[10.1016/j.cam.2008.07.044](https://doi.org/10.1016%2Fj.cam.2008.07.044).

1. **[^](#cite_ref-14)** ["IML - Integer Matrix Library"](https://cs.uwaterloo.ca/~astorjoh/iml.html). *cs.uwaterloo.ca*. Retrieved 14 April 2018.

1. **[^](#cite_ref-15)** Weisstein, Eric W. ["Invertible Matrix Theorem"](https://mathworld.wolfram.com/InvertibleMatrixTheorem.html). *mathworld.wolfram.com*. Retrieved 2020-09-08.

1. **[^](#cite_ref-16)** Horn, Roger A.; Johnson, Charles R. (1985). *Matrix Analysis*. [Cambridge University Press](/source/Cambridge_University_Press). p. 14. [ISBN](/source/ISBN_(identifier)) [978-0-521-38632-6](https://en.wikipedia.org/wiki/Special:BookSources/978-0-521-38632-6)..

1. **[^](#cite_ref-17)** Magnus, Jan R.; Neudecker, Heinz (1999). *Matrix Differential Calculus : with Applications in Statistics and Econometrics* (Revised ed.). New York: John Wiley & Sons. pp. 151–152. [ISBN](/source/ISBN_(identifier)) [0-471-98633-X](https://en.wikipedia.org/wiki/Special:BookSources/0-471-98633-X).

1. **[^](#cite_ref-18)** [Roman, Stephen](/source/Steven_Roman) (2008), *Advanced Linear Algebra*, [Graduate Texts in Mathematics](/source/Graduate_Texts_in_Mathematics) (Third ed.), Springer, p. 446, [ISBN](/source/ISBN_(identifier)) [978-0-387-72828-5](https://en.wikipedia.org/wiki/Special:BookSources/978-0-387-72828-5).

1. **[^](#cite_ref-19)** Lin, 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"](https://doi.org/10.4310%2FCMS.2009.v7.n3.a12). *Communications in Mathematical Sciences*. **7** (3): 755–777. [doi](/source/Doi_(identifier)):[10.4310/CMS.2009.v7.n3.a12](https://doi.org/10.4310%2FCMS.2009.v7.n3.a12).

1. **[^](#cite_ref-20)** Albreem, M.; Juntti, M.; Shahabuddin, S. (January 2020). "Efficient initialisation of iterative linear massive MIMO detectors using a stair matrix". *[Electronics Letters](/source/Electronics_Letters)*. **56** (1): 50–52. [Bibcode](/source/Bibcode_(identifier)):[2020ElL....56...50A](https://ui.adsabs.harvard.edu/abs/2020ElL....56...50A). [doi](/source/Doi_(identifier)):[10.1049/el.2019.2938](https://doi.org/10.1049%2Fel.2019.2938).

## Further reading

- ["Inversion of a matrix"](https://www.encyclopediaofmath.org/index.php?title=Inversion_of_a_matrix), *[Encyclopedia of Mathematics](/source/Encyclopedia_of_Mathematics)*, [EMS Press](/source/European_Mathematical_Society), 2001 [1994]

- [Cormen, Thomas H.](/source/Thomas_H._Cormen); [Leiserson, Charles E.](/source/Charles_E._Leiserson); [Rivest, Ronald L.](/source/Ron_Rivest); [Stein, Clifford](/source/Clifford_Stein) (2001) [1990]. "28.4: Inverting matrices". [*Introduction to Algorithms*](/source/Introduction_to_Algorithms) (2nd ed.). MIT Press and McGraw-Hill. pp. 755–760. [ISBN](/source/ISBN_(identifier)) [0-262-03293-7](https://en.wikipedia.org/wiki/Special:BookSources/0-262-03293-7).

- Bernstein, Dennis S. (2009). [*Matrix Mathematics: Theory, Facts, and Formulas*](https://books.google.com/books?id=jgEiuHlTCYcC) (2nd ed.). Princeton University Press. [ISBN](/source/ISBN_(identifier)) [978-0691140391](https://en.wikipedia.org/wiki/Special:BookSources/978-0691140391) – via [Google Books](/source/Google_Books).

- Petersen, Kaare Brandt; Pedersen, Michael Syskind (November 15, 2012). ["The Matrix Cookbook"](https://www2.imm.dtu.dk/pubdb/views/edoc_download.php/3274/pdf/imm3274.pdf#page=17) (PDF). pp. 17–23.

## External links

- [Sanderson, Grant](/source/Grant_Sanderson) (August 15, 2016). ["Inverse Matrices, Column Space and Null Space"](https://www.youtube.com/watch?v=uQhTuRlWMxw&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab&index=7). *Essence of Linear Algebra*. [Archived](https://ghostarchive.org/varchive/youtube/20211103/uQhTuRlWMxw) from the original on 2021-11-03 – via [YouTube](/source/YouTube).

- [Strang, Gilbert](/source/Gilbert_Strang). ["Linear Algebra Lecture on Inverse Matrices"](https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/lecture-3-multiplication-and-inverse-matrices/). *[MIT OpenCourseWare](/source/MIT_OpenCourseWare)*.

v t e Linear algebra Outline Glossary Template:Matrix classes Linear equations Linear equation System of linear equations Determinant Minor Cauchy–Binet formula Cramer's rule Gaussian elimination Gauss–Jordan elimination Overcompleteness Strassen algorithm Matrices Matrix Matrix addition Matrix multiplication Basis transformation matrix Characteristic polynomial Spectrum Trace Eigenvalue, eigenvector and eigenspace Cayley–Hamilton theorem Jordan normal form Weyr canonical form Rank Inverse, Pseudoinverse Adjugate, Transpose Dot product Symmetric matrix, Skew-symmetric matrix Orthogonal matrix, Unitary matrix Hermitian matrix, Antihermitian matrix Positive-(semi)definite Pfaffian Projection Spectral theorem Perron–Frobenius theorem Diagonal matrix, Triangular matrix, Tridiagonal matrix Block matrix Sparse matrix Hessenberg matrix, Hessian matrix Vandermonde matrix Stochastic matrix, Toeplitz matrix, Circulant matrix, Hankel matrix (0,1)-matrix List of matrices Matrix decompositions Cholesky decomposition LU decomposition QR decomposition Polar decomposition Spectral theorem Singular value decomposition Higher-order singular value decomposition Schur decomposition Schur complement Haynsworth inertia additivity formula Reducing subspace Relations and computations Matrix equivalence Matrix congruence Matrix similarity Matrix consimilarity Row equivalence Elementary row operations Householder transformation Least squares Linear least squares Gram–Schmidt process Woodbury matrix identity Vector spaces Vector space Linear combination Linear span Linear independence Basis, Hamel basis Change of basis Dimension theorem for vector spaces Hamel dimension Examples of vector spaces Linear map Shear mapping Squeeze mapping Linear subspace Row and column spaces, Null space Rank–nullity theorem Nullity theorem Cyclic subspace Dual space, Linear functional Category of vector spaces Structures Topological vector space Normed vector space Inner product space Euclidean space Orthogonality Orthogonal complement Orthogonal projection Orthogonal group Pseudo-Euclidean space Null vector Indefinite orthogonal group Orientation Improper rotation Symplectic structure Multilinear algebra Multilinear algebra Tensor Tensors (classical) Component-free treatment of tensors Outer product Tensor algebra Exterior algebra Symmetric algebra Clifford algebra Geometric algebra Bivector Multivector Gamas's theorem Affine and projective Affine space Affine transformation, Affine group, Affine geometry Affine coordinate system, Flat (geometry) Cartesian coordinate system Euclidean group Poincaré group Galilean group Projective space Projective transformation Projective geometry Projective linear group Quadric Numerical linear algebra Numerical linear algebra Floating-point arithmetic Numerical stability Basic Linear Algebra Subprograms Sparse matrix Comparison of linear algebra libraries Category

v t e Matrix classes Explicitly constrained entries Alternant Anti-diagonal Anti-Hermitian Anti-symmetric Arrowhead Band Bidiagonal Bisymmetric Block-diagonal Block Block tridiagonal Boolean Cauchy Centrosymmetric Conference Complex Hadamard Copositive Diagonally dominant Diagonal Discrete Fourier Transform Elementary Equivalent Frobenius Generalized permutation Hadamard Hankel Hermitian Hessenberg Hollow Integer Logical Matrix unit Metzler Moore Nonnegative Pentadiagonal Permutation Persymmetric Polynomial Quaternionic Signature Skew-Hermitian Skew-symmetric Skyline Sparse Sylvester Symmetric Toeplitz Triangular Tridiagonal Vandermonde Walsh Z Constant Exchange Hilbert Identity Lehmer Of ones Pascal Pauli Redheffer Shift Zero Conditions on eigenvalues or eigenvectors Companion Convergent Defective Definite Diagonalizable Hurwitz-stable Positive-definite Stieltjes Satisfying conditions on products or inverses Congruent Idempotent or Projection Invertible Involutory Nilpotent Normal Orthogonal Unimodular Unipotent Unitary Totally unimodular Weighing With specific applications Adjugate Alternating sign Augmented Bézout Jabotinsky Cartan Circulant Cofactor Commutation Confusion Coxeter Distance Duplication and elimination Euclidean distance Fundamental (linear differential equation) Generator Gram Hessian Householder Jacobian Moment Payoff Pick Random Rotation Routh-Hurwitz Seifert Shear Similarity Symplectic Totally positive Transformation Used in statistics Centering Correlation Covariance Design Doubly stochastic Fisher information Hat Precision Stochastic Transition Used in graph theory Adjacency Biadjacency Degree Edmonds Incidence Laplacian Seidel adjacency Tutte Used in science and engineering Cabibbo–Kobayashi–Maskawa Density Fundamental (computer vision) Fuzzy associative Gamma Gell-Mann Hamiltonian Irregular Overlap S State transition Substitution Z (chemistry) Related terms Jordan normal form Linear independence Matrix exponential Matrix representation of conic sections Perfect matrix Pseudoinverse Row echelon form Wronskian Mathematics portal List of matrices Category:Matrices (mathematics)

---
Adapted from the Wikipedia article [Invertible matrix](https://en.wikipedia.org/wiki/Invertible_matrix) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Invertible_matrix?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
