12.6: The Identity and Inverses
- Last updated
- Jul 20, 2020
- Save as PDF
- Page ID
- 44320
( \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.
Lemma 12.6.1: Multiplication by the Identity Matrix
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.
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.
Theorem 12.6.1: Uniqueness of 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.
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.
Example 12.6.2: A Nonzero Matrix With No Inverse
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] If A−1 existed, we would have the following [00]=A−1([00])=A−1(A[−11])=(A−1A)[−11]=I[−11]=[−11] This says that [00]=[−11] which is impossible! Therefore, A does not have an inverse.
In the next section, we will explore how to find the inverse of a matrix, if it exists.