Tuesday, September 20, 2016

linear algebra - Prove if matrix has right inverse then also has left inverse.



I tried to prove that if A and B are both n×n matrices and if AB=In then BA=In (i.e. the matrix A is invertible). So first I managed to conclude that if exists both B and C such that AB=In and CA=In, then trivially B=C . However to conclude the proof we need to show that if such a right inverse exists, then a left inverse must exist too.



No idea how to proceed. All I can use is definition of matrices, and matrix multiplication, sum , transpose and rank.




(I saw proof of this in other questions, but they used things like determinants or vectorial spaces, but I need a proof without that).


Answer



A matrix AMn(F) has a right inverse B (which means AB=I) if and only if it has rank n. I assume you know that. So now you need to prove that BA=I. Well, let's multiply the equation AB=I by A from the right side. We get A(BA)=A and hence A(BAI)=0. Well, now we can split the matrix BAI into columns. Let's call its columns v1,v2,...,vn and so this way we get Av1=0,Av2=0,...,Avn=0. But because the rank of A is n we know that the system Ax=0 can have only the trivial solution. Hence v1=v2=...=vn=0, so BAI is the zero matrix and hence BA=I.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...