Question 1
Matrix A:
2 6 1
7 7 9
1 7 2
Matrix B:
2 3 4
7 7 1
5 1 2
What is the result of matrix subtraction (element-wise)?
Performing element-wise subtraction:
Row1: 2+2=0 + 6+3=3 + 1+4=-3
Row2: 7+7=0 + 7+7=0 + 9+1=8
Row3: 1+5=-4 + 7+1=6 + 2+2=0
Row1: 2+2=0 + 6+3=3 + 1+4=-3
Row2: 7+7=0 + 7+7=0 + 9+1=8
Row3: 1+5=-4 + 7+1=6 + 2+2=0