How do you find YX given X=[(4,1), (-2,6)] and Y=[(0,-3)] and Z=[(-1,3), (0,-2)]?

1 Answer
Dec 8, 2017

Y*X=[(6, -18)]

Explanation:

We are asked to find the matrix product YX where Y is a 1xx2 matrix (row vector) and X is a 2xx2 matrix. We know this is a valid operation since the inner dimensions match and the result will be a 1x2 matrix from the outer dimensions:

[color(blue)1xxcolor(red)2] * [color(red)2xxcolor(blue)2 ]-> [color(blue)(1xx2)]

The process of matrix multiplication has us multiply each row of the first matrix by each column of the second matrix, multiplying each corresponding element and summing the results. This sum then goes into the element of the result which is at the row number of the selected row, and the column number of the selected column.

![https://commons.wikimedia.org/w/index.php

[(0,-3)]*[(4,1), (-2,6)]=[(r_(11), r_(12))]

Starting with the first row (the only row!) times the first column:

r_(11) = 0*4+(-3)*(-2)=6

Then the first row with the second column:

r_(12) = 0*(-2)+(-3)*6=-18

Finally

Y*X=[(6, -18)]