Does swapping columns of a matrix cause the rows of the inverse matrix to be swapped?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












This question came up while I was performing some computation on a few matrices on an unrelated problem in computer science.



Let $A$ be an invertible matrix with columns $A_1, dots A_n$. Let $B$ be its inverse, with rows $B_1, dots, B_n$. Now construct a new matrix $hatA$ by swapping two columns $A_i$ and $A_j$. Let $hatB$ be the inverse of $hatA$.



In my specific computations, I noticed that $hatB$ was nothing more than $B$ with the rows $B_i$ and $B_j$ swapped. Is this always true? I doubt it was a coincidence because the numbers were quite random.



Note: I was working with real numbers but I'd be interested to know if the field makes any difference.










share|cite|improve this question

























    up vote
    2
    down vote

    favorite












    This question came up while I was performing some computation on a few matrices on an unrelated problem in computer science.



    Let $A$ be an invertible matrix with columns $A_1, dots A_n$. Let $B$ be its inverse, with rows $B_1, dots, B_n$. Now construct a new matrix $hatA$ by swapping two columns $A_i$ and $A_j$. Let $hatB$ be the inverse of $hatA$.



    In my specific computations, I noticed that $hatB$ was nothing more than $B$ with the rows $B_i$ and $B_j$ swapped. Is this always true? I doubt it was a coincidence because the numbers were quite random.



    Note: I was working with real numbers but I'd be interested to know if the field makes any difference.










    share|cite|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      This question came up while I was performing some computation on a few matrices on an unrelated problem in computer science.



      Let $A$ be an invertible matrix with columns $A_1, dots A_n$. Let $B$ be its inverse, with rows $B_1, dots, B_n$. Now construct a new matrix $hatA$ by swapping two columns $A_i$ and $A_j$. Let $hatB$ be the inverse of $hatA$.



      In my specific computations, I noticed that $hatB$ was nothing more than $B$ with the rows $B_i$ and $B_j$ swapped. Is this always true? I doubt it was a coincidence because the numbers were quite random.



      Note: I was working with real numbers but I'd be interested to know if the field makes any difference.










      share|cite|improve this question













      This question came up while I was performing some computation on a few matrices on an unrelated problem in computer science.



      Let $A$ be an invertible matrix with columns $A_1, dots A_n$. Let $B$ be its inverse, with rows $B_1, dots, B_n$. Now construct a new matrix $hatA$ by swapping two columns $A_i$ and $A_j$. Let $hatB$ be the inverse of $hatA$.



      In my specific computations, I noticed that $hatB$ was nothing more than $B$ with the rows $B_i$ and $B_j$ swapped. Is this always true? I doubt it was a coincidence because the numbers were quite random.



      Note: I was working with real numbers but I'd be interested to know if the field makes any difference.







      linear-algebra inverse






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked 48 mins ago









      Pedro A

      1,6931723




      1,6931723




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          2
          down vote













          Yes, this is always true. Note that swapping columns $i$ and $j$ is equivalent to multiplying on the right side by the elementary matrix $T_ij$ which is defined by swapping rows $i$ and $j$ of the identity matrix. You can check that this matrix is the inverse of itself. Also, multiplying by $T_ij$ on the left side is equivalent to swapping rows $i$ and $j$.



          So if we call your matrix $A$ then $AT_ij$ is the matrix that you get that swapping columns $i$ and $j$. Then its inverse is $T_ijA^-1$ which is the matrix that you get when you swap rows $i$ and $j$ in $A^-1$.






          share|cite|improve this answer



























            up vote
            1
            down vote













            Your observation is spot on. You can swap columns of a matrix by right-multiplying by a permutation matrix $P$ that is the identity matrix with the corresponding columns swapped: $hat A = AP$. We then have $$hat A^-1 = (AP)^-1 = P^-1A^-1.$$ $P$ is its own inverse, and left-multiplying by $P$ swaps the rows of $A^-1$ that are swapped in $P$.






            share|cite|improve this answer



























              up vote
              1
              down vote













              Another way to think of it: you are just re-numbering the basis for one of the vector spaces: The domain space for $A$, which is the range space fo $A^-1$.






              share|cite|improve this answer




















                Your Answer




                StackExchange.ifUsing("editor", function ()
                return StackExchange.using("mathjaxEditing", function ()
                StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
                StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
                );
                );
                , "mathjax-editing");

                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "69"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                convertImagesToLinks: true,
                noModals: false,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                noCode: true, onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                 

                draft saved


                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2935893%2fdoes-swapping-columns-of-a-matrix-cause-the-rows-of-the-inverse-matrix-to-be-swa%23new-answer', 'question_page');

                );

                Post as a guest






























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes








                up vote
                2
                down vote













                Yes, this is always true. Note that swapping columns $i$ and $j$ is equivalent to multiplying on the right side by the elementary matrix $T_ij$ which is defined by swapping rows $i$ and $j$ of the identity matrix. You can check that this matrix is the inverse of itself. Also, multiplying by $T_ij$ on the left side is equivalent to swapping rows $i$ and $j$.



                So if we call your matrix $A$ then $AT_ij$ is the matrix that you get that swapping columns $i$ and $j$. Then its inverse is $T_ijA^-1$ which is the matrix that you get when you swap rows $i$ and $j$ in $A^-1$.






                share|cite|improve this answer
























                  up vote
                  2
                  down vote













                  Yes, this is always true. Note that swapping columns $i$ and $j$ is equivalent to multiplying on the right side by the elementary matrix $T_ij$ which is defined by swapping rows $i$ and $j$ of the identity matrix. You can check that this matrix is the inverse of itself. Also, multiplying by $T_ij$ on the left side is equivalent to swapping rows $i$ and $j$.



                  So if we call your matrix $A$ then $AT_ij$ is the matrix that you get that swapping columns $i$ and $j$. Then its inverse is $T_ijA^-1$ which is the matrix that you get when you swap rows $i$ and $j$ in $A^-1$.






                  share|cite|improve this answer






















                    up vote
                    2
                    down vote










                    up vote
                    2
                    down vote









                    Yes, this is always true. Note that swapping columns $i$ and $j$ is equivalent to multiplying on the right side by the elementary matrix $T_ij$ which is defined by swapping rows $i$ and $j$ of the identity matrix. You can check that this matrix is the inverse of itself. Also, multiplying by $T_ij$ on the left side is equivalent to swapping rows $i$ and $j$.



                    So if we call your matrix $A$ then $AT_ij$ is the matrix that you get that swapping columns $i$ and $j$. Then its inverse is $T_ijA^-1$ which is the matrix that you get when you swap rows $i$ and $j$ in $A^-1$.






                    share|cite|improve this answer












                    Yes, this is always true. Note that swapping columns $i$ and $j$ is equivalent to multiplying on the right side by the elementary matrix $T_ij$ which is defined by swapping rows $i$ and $j$ of the identity matrix. You can check that this matrix is the inverse of itself. Also, multiplying by $T_ij$ on the left side is equivalent to swapping rows $i$ and $j$.



                    So if we call your matrix $A$ then $AT_ij$ is the matrix that you get that swapping columns $i$ and $j$. Then its inverse is $T_ijA^-1$ which is the matrix that you get when you swap rows $i$ and $j$ in $A^-1$.







                    share|cite|improve this answer












                    share|cite|improve this answer



                    share|cite|improve this answer










                    answered 39 mins ago









                    Mark

                    3,044112




                    3,044112




















                        up vote
                        1
                        down vote













                        Your observation is spot on. You can swap columns of a matrix by right-multiplying by a permutation matrix $P$ that is the identity matrix with the corresponding columns swapped: $hat A = AP$. We then have $$hat A^-1 = (AP)^-1 = P^-1A^-1.$$ $P$ is its own inverse, and left-multiplying by $P$ swaps the rows of $A^-1$ that are swapped in $P$.






                        share|cite|improve this answer
























                          up vote
                          1
                          down vote













                          Your observation is spot on. You can swap columns of a matrix by right-multiplying by a permutation matrix $P$ that is the identity matrix with the corresponding columns swapped: $hat A = AP$. We then have $$hat A^-1 = (AP)^-1 = P^-1A^-1.$$ $P$ is its own inverse, and left-multiplying by $P$ swaps the rows of $A^-1$ that are swapped in $P$.






                          share|cite|improve this answer






















                            up vote
                            1
                            down vote










                            up vote
                            1
                            down vote









                            Your observation is spot on. You can swap columns of a matrix by right-multiplying by a permutation matrix $P$ that is the identity matrix with the corresponding columns swapped: $hat A = AP$. We then have $$hat A^-1 = (AP)^-1 = P^-1A^-1.$$ $P$ is its own inverse, and left-multiplying by $P$ swaps the rows of $A^-1$ that are swapped in $P$.






                            share|cite|improve this answer












                            Your observation is spot on. You can swap columns of a matrix by right-multiplying by a permutation matrix $P$ that is the identity matrix with the corresponding columns swapped: $hat A = AP$. We then have $$hat A^-1 = (AP)^-1 = P^-1A^-1.$$ $P$ is its own inverse, and left-multiplying by $P$ swaps the rows of $A^-1$ that are swapped in $P$.







                            share|cite|improve this answer












                            share|cite|improve this answer



                            share|cite|improve this answer










                            answered 40 mins ago









                            amd

                            27.1k21046




                            27.1k21046




















                                up vote
                                1
                                down vote













                                Another way to think of it: you are just re-numbering the basis for one of the vector spaces: The domain space for $A$, which is the range space fo $A^-1$.






                                share|cite|improve this answer
























                                  up vote
                                  1
                                  down vote













                                  Another way to think of it: you are just re-numbering the basis for one of the vector spaces: The domain space for $A$, which is the range space fo $A^-1$.






                                  share|cite|improve this answer






















                                    up vote
                                    1
                                    down vote










                                    up vote
                                    1
                                    down vote









                                    Another way to think of it: you are just re-numbering the basis for one of the vector spaces: The domain space for $A$, which is the range space fo $A^-1$.






                                    share|cite|improve this answer












                                    Another way to think of it: you are just re-numbering the basis for one of the vector spaces: The domain space for $A$, which is the range space fo $A^-1$.







                                    share|cite|improve this answer












                                    share|cite|improve this answer



                                    share|cite|improve this answer










                                    answered 34 mins ago









                                    GEdgar

                                    59.3k265165




                                    59.3k265165



























                                         

                                        draft saved


                                        draft discarded















































                                         


                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2935893%2fdoes-swapping-columns-of-a-matrix-cause-the-rows-of-the-inverse-matrix-to-be-swa%23new-answer', 'question_page');

                                        );

                                        Post as a guest













































































                                        Comments

                                        Popular posts from this blog

                                        Long meetings (6-7 hours a day): Being “babysat” by supervisor

                                        Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                                        Confectionery