Subtract the Matrices 1[[1,0],[1,1]]-[[4,1],[4,4]]
Problem
Solution
Identify the corresponding elements in each matrix to be subtracted.
Subtract the elements in the first row, first column:
1 - 4 = -3$.Subtract the elements in the first row, second column:
0 - 1 = -1$.Subtract the elements in the second row, first column:
1 - 4 = -3$.Subtract the elements in the second row, second column:
1 - 4 = -3$.Combine the results into a new matrix of the same dimensions.
Final Answer
Want more problems? Check here!