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