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

  • Context: Undergrad 
  • Thread starter Thread starter yaganon
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
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...

[itex]\begin{pmatrix}0 & 0 & 0\\0 &1 & 0\\ 0 & 0 &0\end{pmatrix} = \begin{pmatrix}1 & 0 & 1\\0 &1 & 0\\ 1 & 0 &1\end{pmatrix} \begin{pmatrix}1 & 0 & -1\\0 &1 & 0\\ -1 & 0 &1\end{pmatrix} = \begin{pmatrix}1 & 0 & 1\\0 &1 & 0\\ 1 & 0 &1\end{pmatrix} \begin{pmatrix}2 & 0 & -5\\0 &1 & 0\\ -2 & 0 &5\end{pmatrix} = <br /> \begin{pmatrix}0 & 0 & 0\\0 &1 & 0\\ 0 & 0 &0\end{pmatrix}[/itex]

But

[itex]\begin{pmatrix}1 & 0 & -1\\0 &1 & 0\\ -1 & 0 &1\end{pmatrix} \neq \begin{pmatrix}2 & 0 & -5\\0 &1 & 0\\ -2 & 0 &5\end{pmatrix}[/itex]

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: