7. The Determinant and Inverse of Matrix
2026-02-25
The Determinant of a Square Matrix (矩阵的行列式)
The Inverse of a Square Matrix (矩阵的逆)
Definition
For a n×n square matrix A, if there exists a matrix B such that AB=BA=In, then we call B the inverse of A, denoted as A−1, and we say that A is invertible.
A matrix is invertible if and only if its determinant is nonzero.
A matrix that is NOT invertible is called a singular matrix, and a matrix that is invertible is called a nonsingular matrix.
Info
For a 2×2 matrix A=[acbd], if det(A)=ad−bc=0, then A is invertible and
A−1=ad−bc1[d−c−ba]
The inverse of a matrix has the following properties:
- If A is invertible, then A−1 is also invertible and (A−1)−1=A.
- For invertible matrices, (AB)−1=B−1A−1, (ABC)−1=C−1B−1A−1, etc.
- If A is invertible, then AT is also invertible and (AT)−1=(A−1)T.
Finding the Inverse of a Matrix
An n×n matrix A is invertible if and only if A is row equivalent to the identity matrix In. And in this case, we can find A−1 by performing the same row operations on In.
As a result, we can find A−1 by row reducing the augmented matrix [AIn] to the form [InA−1].