matrix x vector multiplication
Are these correct? When I calculated them I got -2,1,3 for the first and 1,0,-2 for the second. if I am incorrect, what have I done wrong?
matrix x vector multiplication
Are these correct? When I calculated them I got -2,1,3 for the first and 1,0,-2 for the second. if I am incorrect, what have I done wrong?
The results you have shown in the linked image and the question text do not match. The correct values are
a) $$ \left| \matrix{ 0 & -1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1} \right| \pmatrix{1 \\ 2 \\ 3} = \pmatrix{(-1)(2) \\ (1)(1) \\ (1)(3)} = \pmatrix{-2 \\ 1 \\ 3} \;\;\checkmark$$
b) $$ \left| \matrix{ 0 & -1 & 0 \\ 1 & 0 & 0 \\ 0 & 0 & 1} \right| \pmatrix{0 \\ -1 \\ -2} = \pmatrix{(-1)(-1) \\ (1)(0) \\ (1)(-2)} = \pmatrix{1 \\ 0 \\ -2} \;\;\checkmark$$