Question 1
Matrix A:
9 9 9
7 8 5
2 4 7
Matrix B:
4 3 9
7 8 1
6 5 3
What is the result of matrix addition (element-wise)?
Performing element-wise addition:
Row1: 9+4=13 + 9+3=12 + 9+9=18
Row2: 7+7=14 + 8+8=16 + 5+1=6
Row3: 2+6=8 + 4+5=9 + 7+3=10
Row1: 9+4=13 + 9+3=12 + 9+9=18
Row2: 7+7=14 + 8+8=16 + 5+1=6
Row3: 2+6=8 + 4+5=9 + 7+3=10