In this section, we will only consider square matrices.
Definition2.3.1.
A matrix \(A \in M_{n \times n}\) is invertible if there exists a matrix \(B\) such that \(AB=Id_n\) and \(BA=Id_n\text{.}\) The inverse matrix of \(A\) is denoted \(A^{-1}\text{.}\)
Be careful that you do not use the notation \(A^{-1}\) until you have shown that \(A\) is invertible. By inverse, we mean the multiplicative inverse for a matrix. A matrix that is not invertible is called a singular matrix. A non-singular matrix is an invertible matrix.
In the next couple of sections we will examine the following two questions:
How can you efficently calculate the inverse matrix for a given \(A\text{?}\)
How can you determine when a matrix is invertible without finding its inverse?
Subsection2.3.1Computing Inverses
Investigation2.3.1.
We will look at a way to find the inverse matrix of \(A\) in terms of the matrix-vector product and how that can be used as a representation of matrix multiplication.
(a)
We want to find a matrix \(C\) such that \(AC=Id\text{.}\) So let’s expand \(C\) as columns.
How would we find out if there were any solutions to these matrix equations?
(b)
How could you find solutions to all of these matrix equations all at once?
In general computing the inverse of a matrix takes more time and operations than solving a system of equations. For this reason, it is generally easier to find and solve a related system of equations problem than to compute the inverse matrix. We will outline a few ways to find inverse matrices and compute a few small examples.
Investigation2.3.2.
Any sequence of elementary row operations that reduces \(A\) to \(Id_n\) also transforms \(Id_n\) into \(A^{-1}\text{.}\)
The previous result shows that computing inverses is equivalent to a row reduction problem. In particular, if \(A\) is invertible, then reducing \([ A \quad | \quad Id_n]\) to reduced row echelon form will produce the matrix \([ Id_n \;| \; A^{-1}]\text{.}\)
Activity2.3.3.
(a)
Use the result of the previous investigation to find the inverse of the matrix \(\begin{bmatrix} 1 \amp 2 \\ 3 \amp 4 \end{bmatrix}\text{.}\) Check your work by computing \(AB=Id_n\) and \(BA=Id_n\) for the matrix you think is the inverse of \(A\text{.}\)
(b)
Use the result of the previous investigation to find the inverse of the matrix \(\begin{bmatrix} 1 \amp 2 \\ 2 \amp 4 \end{bmatrix}\text{.}\) Check your work by computing \(AB=Id_n\) and \(BA=Id_n\) for the matrix you think is the inverse of \(A\text{.}\)
(c)
Use the idea above to compute the inverse of \(\begin{bmatrix} a\amp b\\c\amp d \end{bmatrix}\text{.}\) Be sure to note any assumptions you will need to make in order to reduce \([ A \; | \; Id_n]\) to \([ Id_n \; | \; A^{-1}]\text{.}\)
(d)
If \(A=\begin{bmatrix}1\amp 0\amp 1 \\0\amp 2\amp -1 \\ 0\amp 6\amp -1\end{bmatrix}\text{,}\) find \(A^{-1}\) and check that \(A A^{-1}=Id_3\text{.}\)
Checkpoint2.3.2.
If \(A=\begin{bmatrix} 0\amp -1\\3\amp 4 \end{bmatrix}\text{,}\) find \(A^{-1}\) and use your answer to solve \(A\vec{x} = \vec{b}\) if:
(a)
\(\vec{b} =\colvec{3\\ 1}\)
(b)
\(\vec{b} =\colvec{-1\\ -2}\)
(c)
\(\vec{b} =\colvec{0\\ 5}\)
(d)
\(\vec{b} =\colvec{\alpha\\ \beta}\)
Investigation2.3.4.
Your friend Nick, who thinks he knows everything, claims that \((AB)^{-1}=A^{-1}B^{-1}\) because that’s how exponents work. Is he right? Justify your answer like you are going to have to convince Nick.
Hint.
Mulitply Nick’s Result on both sides by the matrix \((AB)\) and simplify.
Investigation2.3.5.
Nick makes another concerning statement about how algebra works with matrices. Specifically, he claims that if the product of two matrices is zero, then one of the two matrices must be the zero matrix. He writes \(A B =0 \Rightarrow A=0\) or \(B=0\) on the board to justify his idea. Is he wrong again or do matrices work like this?
Hint.
Come up with an example of matrices \(A\) and \(B\) that will demonstrate is claim his false.