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 (Alternate Method):
Instead of multiplying A and B first then transposing, use the reverse-order property of transpose: (AB)^T = B^T × A^T.
Step 3: Detailed Explanation:
Given: A = [[1, 2], [3, 4]], B = [[1, 0], [1, 0]]. First, find B^T by swapping rows and columns of B: B^T = [[1, 1], [0, 0]]. Next, find A^T by swapping rows and columns of A: A^T = [[1, 3], [2, 4]]. Now compute B^T × A^T: Element (1,1): 1(1) + 1(2) = 3. Element (1,2): 1(3) + 1(4) = 7. Element (2,1): 0(1) + 0(2) = 0. Element (2,2): 0(3) + 0(4) = 0. So, (AB)^T = [[3, 7], [0, 0]].
Step 4: Final Answer:
The resulting matrix (AB)^T is [[3, 7], [0, 0]].