Answer:
Step-by-step explanation:
product of 1x2 by 2x2 matrix is a 1x2 matrix w/ each element being the sum of products of the original matrix elements
element 1,1 = 1x3 + 2x5 = 13
element 1,2 = 1x4 + 2x6 = 16
[13, 16]
For matrix multiplication, A*B = C where
c11 = a11*b11 + a12*b21 = 1*3 + 2*5 = 13
c12 = a11*b12 + a12*b22 = 1*4 + 2*6 =16
So the answer is
[ 13, 16 ]
4.4m questions
5.6m answers