0

If $A$ can be row reduced Echelon to $X$ and $B$ can be row reduced Echelon to $Y$ How can I prove that $AB$ can be row reduced to $XY$?

This might sound intuitive but I couldn't prove it

I tried to use induction and assumed that $A,B$ are elementary matrices so they can by row reduced by single row operation but I found it difficult to prove this and $A,B$ need not be square matrix

1 Answers1

4

As I understood your question, there is a simple counterexample. Namely, put $A=B=\begin{pmatrix} 1 & 0\\ 0 & 0\end{pmatrix}$ and $X=Y=\begin{pmatrix} 0 & 0\\ 1 & 0\end{pmatrix}$. Then $A$ can be row reduced to $X$ and $B$ can be row reduced to $Y$, but $AB=A$ cannot be row reduced to $XY=0$, because these matrices have different ranks.

Alex Ravsky
  • 90,434