Overview
The inverse of a matrix A, denoted A−1, is the matrix that when multiplied by A gives the identity matrix. Not all matrices have inverses.
Definition
For a square matrix A, the inverse A−1 satisfies:
AA−1=A−1A=I
Invertibility
A matrix A is invertible (or non-singular) if A−1 exists.
Conditions for Invertibility
A square matrix A is invertible if and only if:
- det(A)=0
- A has n pivot positions (full rank)
- Ax=0 has only the trivial solution
- Columns of A are linearly independent
- Rows of A are linearly independent
Finding the Inverse
2×2 Matrix Formula
For A=[acbd]:
A−1=det(A)1[d−c−ba]
where det(A)=ad−bc
Example
A=[3211]
det(A)=3(1)−1(2)=1
A−1=[1−2−13]
Row Reduction Method
For larger matrices, augment A with I and row reduce:
[A∣I]→[I∣A−1]
Example
[1324∣∣1001]→[102−2∣∣1−301]→[1001∣∣−23/21−1/2]
A−1=[−23/21−1/2]
Properties of Inverse
| Property | Formula |
|---|
| Uniqueness | Inverse is unique if it exists |
| Involution | (A−1)−1=A |
| Product | (AB)−1=B−1A−1 |
| Transpose | (AT)−1=(A−1)T |
| Scalar | (cA)−1=(1/c)A−1 |
| Power | (An)−1=(A−1)n |
Product Inverse
Important: The inverse of a product reverses the order:
(ABC)−1=C−1B−1A−1
Singular Matrices
A singular matrix has no inverse.
Characteristics
- det(A)=0
- Ax=0 has non-trivial solutions
- Columns are linearly dependent
- Not full rank
Example
A=[1224]
det(A)=1(4)−2(2)=0
A is singular (no inverse exists)
Solving Systems with Inverse
For the system Ax=b where A is invertible:
x=A−1b
Example
Solve:
3x+y=5
2x+y=4
A=[3211],b=[54]
A−1=[1−2−13]
x=A−1b=[1−2−13][54]=[5−4−10+12]=[12]
Solution: x=1, y=2
Inverse of Special Matrices
Diagonal Matrix
D=d1000d2000d3D−1=1/d10001/d20001/d3
Orthogonal Matrix
Q−1=QT
Upper Triangular Matrix
Inverse is also upper triangular (use back substitution).