I need help with solving the problem about square matrices of equal size. I know that if $A + B = AB$, then $AB = BA$, but I can't prove this one. Please advise how to solve or think about this. Thanks in advance )
Asked
Active
Viewed 151 times
4
-
Multiply on the left and right by A. Why is that allowed? – Paul Feb 10 '20 at 10:47
-
Sorry for uncertainty, A and B both have size $n*$n – Tigran Petrosyan Feb 10 '20 at 10:56
2 Answers
8
Your equality is equivalent to $$(I-A^2)(I-B)=I$$ so $(I-B)= (I-A^2)^{-1}$. It is enough to check that $A$ commutes with $(I-B)$. But since $A$ commutes with $(I-A^2)$, it will also commute with its inverse.
orangeskid
- 53,909
-
Thanks for help, but here is the proof of last part of your proof ..
https://math.stackexchange.com/questions/1879244/if-an-invertible-matrix-a-commutes-with-c-show-that-a-1-commutes-with
– Tigran Petrosyan Feb 10 '20 at 11:06 -
5
Left-inverses are right-inverses. In your original problem, $$(I-A)(I-B) = I - A - B + AB = I$$ and so $(I-A)(I-B) = I = (I-B)(I-A)$ giving the result.
In your next example $$I=(I-A^2)(I-B)=(I+A)(I-A)(I-B) \\ \text{and} \\ I = (I-B)(I-A^2)= (I-B)(I-A)(I+A)$$ This gives two expressions for $(I+A)^{-1}$ and the result follows.
not all wrong
- 16,178
- 2
- 35
- 57