A square matrix A is invertible if there exists a matrix B such that AB=BA=I. When it exists, B is unique and is denoted A−1. Inverses generalise the reciprocal 1/a from numbers. They let us solve matrix equations AX=C by writing X=A−1C, just as we would solve ax=c by x=c/a in ordinary algebra. Not every nonzero matrix has an inverse , only those whose determinant is nonzero, a fact developed in the next chapter.
Definition
Let A be a square matrix of order n. A is invertible (or non-singular) if there exists an n×n matrix B with AB=BA=In. The matrix B is the inverse and is denoted A−1.
If no such B exists, A is called singular.
Uniqueness of the inverse
Theorem. If A has an inverse, it is unique.
Proof. Suppose B and C both satisfy AB=BA=I and AC=CA=I. Then B=BI=B(AC)=(BA)C=IC=C. ■
Properties of inverses
For invertible A and B of the same order:
(A−1)−1=A.
(AB)−1=B−1A−1. Reverse the order.
(AT)−1=(A−1)T.
(λA)−1=λ1A−1 for nonzero scalar λ.
Proof of (2).(AB)(B−1A−1)=A(BB−1)A−1=AIA−1=AA−1=I. Similarly (B−1A−1)(AB)=I. ■
Inverse by elementary row operations
To find A−1, write [A∣I] as a single augmented matrix and apply elementary row operations until the left half becomes I. Whatever remains on the right is A−1. The reason: row operations are left-multiplication by elementary matrices; if their product turns A into I, the same product turns I into A−1.
If at any stage a zero row appears on the left, A is singular and has no inverse.
Worked computation
Find the inverse of A=(1324).
Set up: [A∣I]=(1324∣∣1001).
R2→R2−3R1: (102−2∣∣1−301).
R2→−21R2: (1021∣∣13/20−1/2).
R1→R1−2R2: (1001∣∣−23/21−1/2).
So A−1=(−23/21−1/2). Verify: AA−1=(1324)(−23/21−1/2)=(1001). ✓
Quick 2×2 formula
For A=(acbd) with ad−bc=0,
A−1=ad−bc1(d−c−ba).
The number ad−bc is the determinant of A. If ad−bc=0, A is singular.
Solving linear systems via inverses
If AX=B and A is invertible, then X=A−1B. This is the matrix method of solving a linear system. It is computationally less efficient than direct row-reduction, but it has theoretical importance , it expresses the solution in closed form.
Worked examples
Example 1. Find the inverse of A=(2714).
ad−bc=8−7=1. A−1=(4−7−12).
Example 2. Find the inverse of A=100210341 by row operations.
R2→R2−4R3 in [A∣I]:
After more steps, A−1=100−2105−41.
Example 3. Show that A=(1224) is singular.
det=4−4=0. No inverse.
Example 4. Solve AX=B where A=(2132),B=(53).
A−1=11(2−1−32). X=A−1B=(10−9−5+6)=(11).
Example 5. Verify (AB)−1=B−1A−1 for A=(1011),B=(1101).