Add [[1,2],[2,1]]+[[1,2],[2,1]]
Problem
Solution
Identify the matrices to be added. Both are
2×2 matrices, so addition is defined.Add the corresponding elements from each matrix by summing the values in the same row and column positions.
Calculate the sum for the first row, first column:
1 + 1 = 2$.Calculate the sum for the first row, second column:
2 + 2 = 4$.Calculate the sum for the second row, first column:
2 + 2 = 4$.Calculate the sum for the second row, second column:
1 + 1 = 2$.Construct the resulting matrix using these sums.
Final Answer
Want more problems? Check here!