If A = [[1, 2], [3, 4]] and B = [[1, 1], [1, 1]], then (AB)' equals:
If A = [[1, 2], [3, 4]] and B = [[1, 1], [1, 1]], then (AB)' equals:
- A. [[3, 7], [3, 7]]
- B. [[4, 4], [8, 8]]
- C. [[3, 3], [7, 7]]
- D. [[4, 8], [4, 8]]
Answer: A) [[3, 7], [3, 7]]
Explanation: AB = [[1×1+2×1, 1×1+2×1], [3×1+4×1, 3×1+4×1]] = [[3, 3], [7, 7]]. Transpose of AB is [[3, 7], [3, 7]].
0 Answers
Log in to post your own answer or join the discussion.
No comments yet — start the discussion.