2.6: The Identity and Inverses
( \newcommand{\kernel}{\mathrm{null}\,}\)
There is a special matrix, denoted I, which is called to as the identity matrix. The identity matrix is always a square matrix, and it has the property that there are ones down the main diagonal and zeroes elsewhere. Here are some identity matrices of various sizes.
[1],[1001],[100010001],[1000010000100001]
The first is the 1×1 identity matrix, the second is the 2×2 identity matrix, and so on. By extension, you can likely see what the n×n identity matrix would be. When it is necessary to distinguish which size of identity matrix is being discussed, we will use the notation In for the n×n identity matrix.
The identity matrix is so important that there is a special symbol to denote the ijth entry of the identity matrix. This symbol is given by Iij=δij where δij is the Kronecker symbol defined by δij={1 if i=j0 if i≠j
In is called the identity matrix because it is a multiplicative identity in the following sense.
Suppose A is an m×n matrix and In is the n×n identity matrix. Then AIn=A. If Im is the m×m identity matrix, it also follows that ImA=A.
- Proof
-
The (i,j)-entry of AIn is given by: ∑kaikδkj=aij and so AIn=A. The other case is left as an exercise for you.
We now define the matrix operation which in some ways plays the role of division.
A square n×n matrix A is said to have an inverse A−1 if and only if
AA−1=A−1A=In
In this case, the matrix A is called invertible.
Such a matrix A−1 will have the same size as the matrix A. It is very important to observe that the inverse of a matrix, if it exists, is unique. Another way to think of this is that if it acts like the inverse, then it is the inverse.
Suppose A is an n× n matrix such that an inverse A−1 exists. Then there is only one such inverse matrix. That is, given any matrix B such that AB=BA=I, B=A−1.
- Proof
-
In this proof, it is assumed that I is the n×n identity matrix. Let A,B be n×n matrices such that A−1 exists and AB=BA=I. We want to show that A−1=B. Now using properties we have seen, we get:
A−1=A−1I=A−1(AB)=(A−1A)B=IB=B
Hence, A−1=B which tells us that the inverse is unique.
The next example demonstrates how to check the inverse of a matrix.
Let A=[1112]. Show [2−1−11] is the inverse of A.
Solution
To check this, multiply [1112][2−1−11]= [1001]=I
Unlike ordinary multiplication of numbers, it can happen that A≠0 but A may fail to have an inverse. This is illustrated in the following example.
Let A=[1111]. Show that A does not have an inverse.
Solution
One might think A would have an inverse because it does not equal zero. However, note that [1111][−11]=[00]
In the next section, we will explore how to find the inverse of a matrix, if it exists.