To find the inverse of a matrix product \( AB \), use the property \( (AB)^{-1} = B^{-1} A^{-1} \). Make sure to compute the inverse of each matrix separately before multiplying.
We know that the inverse of the product of two matrices \(A\) and \(B\) is:
\[
(AB)^{-1} = B^{-1} A^{-1}
\]
This property holds for invertible matrices.
Step 2: Finding \(A^{-1}\).
The inverse of a \(2 \times 2\) matrix
\[
A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}
\]
is given by:
\[
A^{-1} = \frac{1}{ad - bc}
\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}
\]
For
\[
A = \begin{bmatrix} 3 & 4 \\ 1 & 1 \end{bmatrix}
\]
the determinant is:
\[
\det(A) = (3)(1) - (4)(1) = -1
\]
Hence,
\[
A^{-1} =
\frac{1}{-1}
\begin{bmatrix} 1 & -4 \\ -1 & 3 \end{bmatrix}
=
\begin{bmatrix} -1 & 4 \\ 1 & -3 \end{bmatrix}
\]