Add C[[1,0],[4,2]]+D[[4,5],[2,3]]
Problem
Solution
Identify the corresponding elements in each matrix that need to be added together.
Add the elements in the first row, first column:
1 + 4 = 5$.Add the elements in the first row, second column:
0 + 5 = 5$.Add the elements in the second row, first column:
4 + 2 = 6$.Add the elements in the second row, second column:
2 + 3 = 5$.Construct the resulting matrix using the sums calculated in the previous steps.
Final Answer
Want more problems? Check here!