0

I'm trying to figure out whether a property for a matrix product exist.

Let's say we have 2 sets of matrices: $A$, $B$ and $X$, $Y$ ($A \neq X$) and let's say that their product is the same $AB=XY=C$. If we rearrange the factors, are the new products $BA$ and $YX$ equal?

If there is no such property, then are there any rules when this is true or when it is definitely false?

rist
  • 151

1 Answers1

0

No, the statement does not hold. For example, Consider $$ A = \pmatrix{1&0\\0&0}, \quad B = \pmatrix{1&1\\1&1}\\ X = Y = \pmatrix{1&1\\0&0} $$ Then we have $AB = XY$, but $BA \neq YX$.

The statement does hold, however, if $C$ is a non-zero multiple of the identity matrix.

Ben Grossmann
  • 225,327