If A = [[1, 0], [0, 1]] and B = [[0, 1], [1, 0]], then A + B is:
If A = [[1, 0], [0, 1]] and B = [[0, 1], [1, 0]], then A + B is:
- A. [[1, 1], [1, 1]]
- B. [[0, 0], [0, 0]]
- C. [[1, 0], [0, 1]]
- D. [[0, 1], [1, 0]]
Answer: A) [[1, 1], [1, 1]]
Explanation: A + B = [[1+0, 0+1], [0+1, 1+0]] = [[1, 1], [1, 1]].
0 Answers
Log in to post your own answer or join the discussion.
No comments yet — start the discussion.