Is it possible for matrices to be equal but their columns not equal?

  • Thread starter Thread starter yaganon
  • Start date Start date
yaganon
Messages
16
Reaction score
0
If AB = AC, it's possible that B /= C

conversely:
if BA = CA, is it possible that C /= B?

/= means doesn't equal
 
Physics news on Phys.org
Certainly. In both cases let A = 0, B = Anything, C = Anything else.
 
More generally, if A is a matrix that does not have an inverse, then we can have A(B- C)= 0 without B- C being equal to 0. And, similarly, (B- C)A= 0 without B- C= 0.
 
hallsofivy

why does A have to be singular?
 
yaganon said:
hallsofivy

why does A have to be singular?

say
AB=AC
suppose A has an inverse D such that AD=DA=
DAB=DAC
B=C
thus if B/=C A must be singular

Also the matrices might not be square
[[1,1,1]]*[[1,1,1]]=[[1,1,1]]*[[3,0,0]]=[[3]]
where * is the adjoint
[[1,1,1]]/=[[3,0,0]]
 
A basic example for you...

\begin{pmatrix}0 &amp; 0 &amp; 0\\0 &amp;1 &amp; 0\\ 0 &amp; 0 &amp;0\end{pmatrix} = \begin{pmatrix}1 &amp; 0 &amp; 1\\0 &amp;1 &amp; 0\\ 1 &amp; 0 &amp;1\end{pmatrix} \begin{pmatrix}1 &amp; 0 &amp; -1\\0 &amp;1 &amp; 0\\ -1 &amp; 0 &amp;1\end{pmatrix} = \begin{pmatrix}1 &amp; 0 &amp; 1\\0 &amp;1 &amp; 0\\ 1 &amp; 0 &amp;1\end{pmatrix} \begin{pmatrix}2 &amp; 0 &amp; -5\\0 &amp;1 &amp; 0\\ -2 &amp; 0 &amp;5\end{pmatrix} = <br /> \begin{pmatrix}0 &amp; 0 &amp; 0\\0 &amp;1 &amp; 0\\ 0 &amp; 0 &amp;0\end{pmatrix}<br />

But

\begin{pmatrix}1 &amp; 0 &amp; -1\\0 &amp;1 &amp; 0\\ -1 &amp; 0 &amp;1\end{pmatrix} \neq \begin{pmatrix}2 &amp; 0 &amp; -5\\0 &amp;1 &amp; 0\\ -2 &amp; 0 &amp;5\end{pmatrix}

If you look at the rank of A and the vector that is in the nullspace of A, you can see why this holds with the columns of the B and C are chosen as such.
 
Last edited:

Similar threads

Back
Top