i'm trying to solve a question about elementary matrix.
When given $A_{m,n}$ and $B_{n,p}$ which differ from the Zero matrix.
Also, multiplying of $A$ and $B$ is the zero matrix, that is: $AB=0$;
- If $C$ is an elementary matrix of $A$ => $CB=0$?
- If $C$ is an elementary matrix of $B$ => $AC=0$?
My intuition feelings are that one is true, and two is false.
I would like your help.
Thanks a lot!
Suppose $C$ is obtained from $A$ by applying an elementary row operation. This is equivalent to saying that $C=EA$, where $E$ is a suitable invertible matrix1.
Then $CB=EAB=E0=0$.
On the other hand, if $C=EB$ is obtained from $B$ by an elementary row operation, it's not necessarily true that $AC=0$. Example: $$ A=\begin{bmatrix}0&1\\0&0\end{bmatrix}, \qquad B=\begin{bmatrix}1&0\\0&0\end{bmatrix} $$ Then $AB=0$, but if $C$ is obtained from $B$ by swapping the rows, we have $$ AC= \begin{bmatrix}0&1\\0&0\end{bmatrix} \begin{bmatrix}0&0\\1&0\end{bmatrix} = \begin{bmatrix}1&0\\0&0\end{bmatrix} $$
Footnotes.
1 The matrix $E$ is obtained by applying the same elementary row operation on the identity matrix.