If A = [[1, 2], [3, 4]], then which of the following is equal to A'?
If A = [[1, 2], [3, 4]], then which of the following is equal to A'?
- A. [[1, 3], [2, 4]]
- B. [[4, 3], [2, 1]]
- C. [[1, 2], [3, 4]]
- D. [[2, 1], [4, 3]]
Answer: A) [[1, 3], [2, 4]]
Explanation: Transpose of A is obtained by interchanging rows and columns. A' = [[1, 3], [2, 4]].
0 Answers
Log in to post your own answer or join the discussion.
No comments yet — start the discussion.