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