Skip to main content
Logo image

Applied Discrete Structures

Section 5.2 Special Types of Matrices

Subsection 5.2.1 Diagonal Matrices

We have already investigated, in exercises in the previous section, one special type of matrix. That was the zero matrix, and found that it behaves in matrix algebra in an analogous fashion to the real number 0; that is, as the additive identity. We will now investigate the properties of a few other special matrices.

Definition 5.2.1. Diagonal Matrix.

A square matrix D is called a diagonal matrix if \(d_{i j}\) = 0 whenever \(i \neq j\text{.}\)
\(A = \left( \begin{array}{ccc} 1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 5 \\ \end{array} \right)\text{,}\) \(B= \left( \begin{array}{ccc} 3 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & -5 \\ \end{array} \right)\text{,}\) and \(I = \left( \begin{array}{ccc} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \\ \end{array} \right)\) are all diagonal matrices.

Subsection 5.2.2 The Identity Matrix and Matrix Inverses

In the example above, the \(3\times 3\) diagonal matrix \(I\) whose diagonal entries are all 1’s has the distinctive property that for any other \(3\times 3\) matrix \(A\) we have \(A I = I A = A\text{.}\) For example:
If \(A = \left( \begin{array}{ccc} 1 & 2 & 5 \\ 6 & 7 & -2 \\ 3 & -3 & 0 \\ \end{array} \right)\text{,}\) then \(A I =\left( \begin{array}{ccc} 1 & 2 & 5 \\ 6 & 7 & -2 \\ 3 & -3 & 0 \\ \end{array} \right)\) and \(I A = \left( \begin{array}{ccc} 1 & 2 & 5 \\ 6 & 7 & -2 \\ 3 & -3 & 0 \\ \end{array} \right)\text{.}\)
In other words, the matrix \(I\) behaves in matrix algebra like the real number 1; that is, as a multiplicative identity. In matrix algebra, the matrix \(I\) is called simply the identity matrix. Convince yourself that if \(A\) is any \(n\times n\) matrix \(A I = I A = A\text{.}\)

Definition 5.2.4. Identity Matrix.

The \(n\times n\) diagonal matrix \(I_n\) whose diagonal components are all 1’s is called the identity matrix. If the context is clear, we simply use \(I\text{.}\)
In the set of real numbers we recall that, given a nonzero real number \(x\text{,}\) there exists a real number \(y\) such that \(x y = y x =1\text{.}\) We know that real numbers commute under multiplication so that the two equations can be summarized as \(x y = 1\text{.}\) Further we know that \(y =x^{-1}= \frac{1}{x}\text{.}\) Do we have an analogous situation in \(M_{n\times n}(\mathbb{R})\text{?}\) Can we define the multiplicative inverse of an \(n\times n\) matrix \(A\text{?}\) It seems natural to imitate the definition of multiplicative inverse in the real numbers.

Definition 5.2.5. Matrix Inverse.

Let \(A\) be an \(n\times n\) matrix. If there exists an \(n\times n\) matrix \(B\) such that \(A B = B A =I\text{,}\) then \(B\) is a multiplicative inverse of \(A\) (called simply an inverse of \(A\)) and is denoted by \(A^{-1}\)
When we are doing computations involving matrices, it would be helpful to know that when we find \(A^{-1}\text{,}\) the answer we obtain is the only inverse of the given matrix. This would let us refer to the inverse of a matrix. We refrained from saying that in the definition, but the theorem below justifies it.
Remark: Those unfamiliar with the laws of matrix algebra should return to the following proof after they have familiarized themselves with the Laws of Matrix Algebra in Section 5.5.
Let \(A\) be an \(n\times n\) matrix. Assume to the contrary, that \(A\) has two (different) inverses, say \(B\) and \(C\text{.}\) Then
\begin{equation*} \begin{split} B &= B I\quad \textrm{ Identity property of } I\\ & =B (A C)\quad \textrm{ Assumption that } C \textrm{ is an inverse of } A\\ & = (B A) C \quad \textrm{ Associativity of matrix multiplication}\\ & = I C\quad \textrm{ Assumption that } B \textrm{ is an inverse of } A\\ & = C \quad \textrm{ Identity property of } I \end{split} \end{equation*}
Let \(A =\left( \begin{array}{cc} 2 & 0 \\ 0 & 3 \\ \end{array} \right)\) . What is \(A^{-1}\) ? Without too much difficulty, by trial and error, we determine that \(A^{-1}= \left( \begin{array}{cc} \frac{1}{2} & 0 \\ 0 & \frac{1}{3} \\ \end{array} \right)\) . This might lead us to guess that the inverse is found by taking the reciprocal of all nonzero entries of a matrix. Alas, it isn’t that easy!
If \(A =\left( \begin{array}{cc} 1 & 2 \\ -3 & 5 \\ \end{array} \right)\) , the “reciprocal rule” would tell us that the inverse of \(A\) is \(B=\left( \begin{array}{cc} 1 & \frac{1}{2} \\ \frac{-1}{3} & \frac{1}{5} \\ \end{array} \right)\text{.}\) Try computing \(A B\) and you will see that you don’t get the identity matrix. So, what is \(A^{-1}\text{?}\) In order to understand more completely the notion of the inverse of a matrix, it would be beneficial to have a formula that would enable us to compute the inverse of at least a \(2\times 2\) matrix. To do this, we introduce the definition of the determinant of a \(2\times 2\) matrix.

Definition 5.2.7. Determinant of a 2 by 2 matrix.

Let \(A =\left( \begin{array}{cc} a & b \\ c & d \\ \end{array} \right)\text{.}\) The determinant of \(A\) is the number \(\det A = a d - b c\text{.}\)
In addition to \(\det A\text{,}\) common notation for the determinant of matrix \(A\) is \(\lvert A \rvert\text{.}\) This is particularly common when writing out the whole matrix, which case we would write \(\left| \begin{array}{cc} a & b \\ c & d \\ \end{array} \right|\) for the determinant of the general \(2 \times 2\) matrix.
If \(A =\left( \begin{array}{cc} 1 & 2 \\ -3 & 5 \\ \end{array} \right)\) then \(\det A = 1\cdot 5 -2\cdot (-3)=11\text{.}\) If \(B =\left( \begin{array}{cc} 1 & 2 \\ 2 & 4 \\ \end{array} \right)\) then \(\det B = 1\cdot 4 -2\cdot 2=0.\)
See Exercise 4 at the end of this section.
Can we find the inverses of the matrices in Example 5.2.8? If \(A =\left( \begin{array}{cc} 1 & 2 \\ -3 & 5 \\ \end{array} \right)\) then
\begin{equation*} A^{-1}= \frac{1}{11}\left( \begin{array}{cc} 5 & -2 \\ 3 & 1 \\ \end{array} \right)=\left( \begin{array}{cc} \frac{5}{11} & -\frac{2}{11} \\ \frac{3}{11} & \frac{1}{11} \\ \end{array} \right) \end{equation*}
The reader should verify that \(A A^{-1}=A^{-1}A = I\text{.}\)
The second matrix, \(B\text{,}\) has a determinant equal to zero. If we tried to apply the formula in Theorem 5.2.9, we would be dividing by zero. For this reason, the formula can’t be applied and in fact \(B^{-1}\) does not exist.
Remarks:
  • In general, if \(A\) is a \(2\times 2\) matrix and if \(\det A = 0\text{,}\) then \(A^{-1}\) does not exist.
  • A formula for the inverse of \(n\times n\) matrices \(n\geq 3\) can be derived that also involves \(\det A\text{.}\) Hence, in general, if the determinant of a matrix is zero, the matrix does not have an inverse. However the formula for even a \(3 \times 3\) matrix is very long and is not the most efficient way to compute the inverse of a matrix.
  • In Chapter 12 we will develop a technique to compute the inverse of a higher-order matrix, if it exists.
  • Matrix inversion comes first in the hierarchy of matrix operations; therefore, \(A B^{-1}\) is \(A (B^{-1})\text{.}\)

Exercises 5.2.3 Exercises

1.

For the given matrices \(A\) find \(A^{-1}\) if it exists and verify that \(A A^{-1}=A^{-1}A = I\text{.}\) If \(A^{-1}\) does not exist explain why.
  1. \(\displaystyle A = \left( \begin{array}{cc} 1 & 3 \\ 2 & 1 \\ \end{array} \right)\)
  2. \(\displaystyle A=\left( \begin{array}{cc} 6 & -3 \\ 8 & -4 \\ \end{array} \right)\)
  3. \(\displaystyle A = \left( \begin{array}{cc} 1 & -3 \\ 0 & 1 \\ \end{array} \right)\)
  4. \(\displaystyle A = \left( \begin{array}{cc} 1 & 0 \\ 0 & 1 \\ \end{array} \right)\)
  5. Use the definition of the inverse of a matrix to find \(A^{-1}\text{:}\) \(A=\left( \begin{array}{ccc} 3 & 0 & 0 \\ 0 & \frac{1}{2} & 0 \\ 0 & 0 & -5 \\ \end{array} \right)\)
Answer.
  1. \(\displaystyle \left( \begin{array}{cc} -1/5 & 3/5 \\ 2/5 & -1/5 \\ \end{array} \right)\)
  2. No inverse exists.
  3. \(\displaystyle \left( \begin{array}{cc} 1 & 3 \\ 0 & 1 \\ \end{array} \right)\)
  4. \(\displaystyle A^{-1}=A\)
  5. \(\displaystyle \left( \begin{array}{ccc} 1/3 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & -1/5 \\ \end{array} \right)\)

2.

For the given matrices \(A\) find \(A^{-1}\) if it exists and verify that \(A A^{-1}=A^{-1}A = I\text{.}\) If \(A^{-1}\) does not exist explain why.
  1. \(\displaystyle A =\left( \begin{array}{cc} 2 & -1 \\ -1 & 2 \\ \end{array} \right)\)
  2. \(\displaystyle A = \left( \begin{array}{cc} 0 & 1 \\ 0 & 2 \\ \end{array} \right)\)
  3. \(\displaystyle A= \left( \begin{array}{cc} 1 & c \\ 0 & 1 \\ \end{array} \right)\)
  4. \(A = \left( \begin{array}{cc} a & b \\ b & a \\ \end{array} \right)\text{,}\) where \(\lvert a \rvert \neq \lvert b \rvert\text{.}\)

3.

  1. Let \(A = \left( \begin{array}{cc} 2 & 3 \\ 1 & 4 \\ \end{array} \right)\) and \(B =\left( \begin{array}{cc} 3 & -3 \\ 2 & 1 \\ \end{array} \right)\text{.}\) Verify that \((A B)^{-1}= B^{-1}A^{-1}\text{.}\)
  2. Let \(A\) and \(B\) be \(n\times n\) invertible matrices. Prove that \((A B)^{-1}= B^{-1}A^{-1}\text{.}\) Why is the right side of the above statement written “backwards”? Is this necessary? Hint: Use Theorem 5.2.6
Answer.
Let A and B be \(n\) by \(n\) invertible matrices.
\begin{equation*} \begin{split} \left(B^{-1}A^{-1}\right)(AB)&=\left(B^{-1}\right)\left(A^{-1}(AB)\right)\\ &= \left(B^{-1}\right) \left(\left(A^{-1} A\right) B\right)\\ &=(\left(B^{-1}\right)I B )\\ &=B^{-1}(B)\\ &=I \end{split} \end{equation*}
Similarly, \((AB)\left(B^{-1}A^{-1}\right)=I\text{.}\)
By Theorem 5.2.6, \(B^{-1}A^{-1}\) is the only inverse of \(AB\text{.}\) If we tried to invert \(AB\) with \(A^{-1}B^{-1}\text{,}\) we would be unsuccessful since we cannot rearrange the order of the matrices.

4.

Let \(A =\left( \begin{array}{cc} a & b \\ c & d \\ \end{array} \right)\text{.}\) Derive the formula for \(A^{-1}\text{.}\)

5. Linearity of Determinants.

  1. Let \(A\) and \(B\) be 2-by-2 matrices. Show that \(\det (A B) =(\det A)(\det B)\text{.}\)
  2. It can be shown that the statement in part (a) is true for all \(n\times n\) matrices. Let \(A\) be any invertible \(n\times n\) matrix. Prove that \(\det \left(A^{-1}\right) =(\det A)^{-1}\text{.}\) Note: The determinant of the identity matrix \(I_n\) is 1 for all \(n\text{.}\)
  3. Verify that the equation in part (b) is true for the matrix in exercise 1(a) of this section.
Answer.
\(1=\det I=\det \left(AA^{-1}\right)=\det A\text{ }\det A^{-1}\text{.}\) Now solve for \(\det A^{-1}\text{.}\)

6.

Prove by induction that for \(n \geq 1\text{,}\) \(\left( \begin{array}{cc} a & 0 \\ 0 & b \\ \end{array} \right)^n= \left( \begin{array}{cc} a^n & 0 \\ 0 & b^n \\ \end{array} \right)\text{.}\)

7.

Use the assumptions in Exercise 5.2.3.5 to prove by induction that if \(n \geq 1\text{,}\) \(\det \left(A^n\right) = (\det A)^n\text{.}\)
Answer.
Basis: \((n=1): \det A^1=\det A =(\det A )^1\)
Induction: Assume \(\det A^n=(\det A)^n\) for some \(n\geq 1\text{.}\)
\begin{equation*} \begin{split} \det A^{n+1} & =\det \left(A^nA\right)\quad \textrm{ by the definition of exponents}\\ &=\det \left(A^n\right)\det (A)\quad \textrm{ by exercise 5} \\ &=(det A)^n(\det A)\quad \textrm{ by the induction hypothesis }\\ &=(\det A)^{n+1} \end{split} \end{equation*}

8.

Prove: If the determinant of a matrix \(A\) is zero, then \(A\) does not have an inverse. Hint: Use the indirect method of proof and exercise 5.

9.

  1. Let \(A, B, \textrm{ and } D\) be \(n\times n\) matrices. Assume that \(B\) is invertible. If \(A = B D B^{-1}\) , prove by induction that \(A^m= B D^m B^{-1}\) is true for \(m \geq 1\text{.}\)
  2. Given that \(A = \left( \begin{array}{cc} -8 & 15 \\ -6 & 11 \\ \end{array} \right) = B \left( \begin{array}{cc} 1 & 0 \\ 0 & 2 \\ \end{array} \right) B^{-1}\) where \(B=\left( \begin{array}{cc} 5 & 3 \\ 3 & 2 \\ \end{array} \right)\) what is \(A^{10}\text{?}\)
Answer.
  1. Assume \(A=B D B^{-1}\)
    Basis: \((m=1\)): \(A^{1}=A=B D^1 B^{-1} \) is given.
    Induction: Assume that for some positive integer \(m\text{,}\) \(A^m=BD^mB^{-1}\)
    \begin{equation*} \begin{split} A^{m+1} &=A^mA\\ &=(B D^m B^{-1})(BDB^{-1})\quad \textrm{ by the induction hypothesis} \\ &=(BD^m(B^{-1} B ) (DB^{-1}) \quad \textrm{ by associativity} \\ &=B D^m D B^{-1} \quad \textrm{ by the definition of inverse}\\ &=B D^{m+1} B^{-1} \quad \square \end{split} \end{equation*}
  2. \(\displaystyle A^{10}=BD^{10}B^{-1}= \left( \begin{array}{cc} -9206 & 15345 \\ -6138 & 10231 \\ \end{array} \right)\)