Step 1: Understanding the Question:
We are given two 2x2 matrices, A and B.
We need to find the transpose of their product, \((AB)^T\).
Step 2: Key Formula or Approach:
There are two ways to solve this:
1. First, calculate the product matrix \(C = AB\). Then, find the transpose of C, which is \(C^T\).
2. Use the property of transpose: \((AB)^T = B^T A^T\). First, find the transposes of A and B, then multiply them in reverse order.
We will use the first method as it is more direct.
Step 3: Detailed Explanation:
Step 3a: Calculate the product AB
\[ A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}, \quad B = \begin{bmatrix} 1 & 0 \\ 1 & 0 \end{bmatrix} \]
\[ AB = \begin{bmatrix} (1)(1) + (2)(1) & (1)(0) + (2)(0) \\ (3)(1) + (4)(1) & (3)(0) + (4)(0) \end{bmatrix} \]
\[ AB = \begin{bmatrix} 1 + 2 & 0 + 0 \\ 3 + 4 & 0 + 0 \end{bmatrix} \]
\[ AB = \begin{bmatrix} 3 & 0 \\ 7 & 0 \end{bmatrix} \]
Step 3b: Find the transpose of AB
The transpose of a matrix is found by interchanging its rows and columns.
Let \(C = AB = \begin{bmatrix} 3 & 0 \\ 7 & 0 \end{bmatrix}\).
Then the transpose of C is:
\[ C^T = (AB)^T = \begin{bmatrix} 3 & 7 \\ 0 & 0 \end{bmatrix} \]
Step 4: Final Answer:
The resulting matrix \((AB)^T\) is \(\begin{bmatrix} 3 & 7 \\ 0 & 0 \end{bmatrix}\).