How to find a minumum vertex cover from a maximum matching in a bipartite graph?












0












$begingroup$


Konig's theorem states that for a bipartite graph the number of vertices in the minimum vertex cover equals the number of edges in a maximum matching.



https://en.wikipedia.org/wiki/K%C5%91nig%27s_theorem_(graph_theory)



For example given a bipartite graph with vertices 1,2,...,10 (with 5 on the left and 5 the right) and edges 1-6, 1-8, 2-8, 3-7, 3-8, 3-9, 4-8, 5-7, 5-8, 5-10. A maximal matching is 1-6, 2-8, 3-7, 5-10.



But how do you find a minimum vertex cover given a set of edges for a maximum matching? Such as 1, 8, 3, 5 in the example above.










share|cite|improve this question









$endgroup$

















    0












    $begingroup$


    Konig's theorem states that for a bipartite graph the number of vertices in the minimum vertex cover equals the number of edges in a maximum matching.



    https://en.wikipedia.org/wiki/K%C5%91nig%27s_theorem_(graph_theory)



    For example given a bipartite graph with vertices 1,2,...,10 (with 5 on the left and 5 the right) and edges 1-6, 1-8, 2-8, 3-7, 3-8, 3-9, 4-8, 5-7, 5-8, 5-10. A maximal matching is 1-6, 2-8, 3-7, 5-10.



    But how do you find a minimum vertex cover given a set of edges for a maximum matching? Such as 1, 8, 3, 5 in the example above.










    share|cite|improve this question









    $endgroup$















      0












      0








      0





      $begingroup$


      Konig's theorem states that for a bipartite graph the number of vertices in the minimum vertex cover equals the number of edges in a maximum matching.



      https://en.wikipedia.org/wiki/K%C5%91nig%27s_theorem_(graph_theory)



      For example given a bipartite graph with vertices 1,2,...,10 (with 5 on the left and 5 the right) and edges 1-6, 1-8, 2-8, 3-7, 3-8, 3-9, 4-8, 5-7, 5-8, 5-10. A maximal matching is 1-6, 2-8, 3-7, 5-10.



      But how do you find a minimum vertex cover given a set of edges for a maximum matching? Such as 1, 8, 3, 5 in the example above.










      share|cite|improve this question









      $endgroup$




      Konig's theorem states that for a bipartite graph the number of vertices in the minimum vertex cover equals the number of edges in a maximum matching.



      https://en.wikipedia.org/wiki/K%C5%91nig%27s_theorem_(graph_theory)



      For example given a bipartite graph with vertices 1,2,...,10 (with 5 on the left and 5 the right) and edges 1-6, 1-8, 2-8, 3-7, 3-8, 3-9, 4-8, 5-7, 5-8, 5-10. A maximal matching is 1-6, 2-8, 3-7, 5-10.



      But how do you find a minimum vertex cover given a set of edges for a maximum matching? Such as 1, 8, 3, 5 in the example above.







      graph-theory algorithms






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Dec 17 '18 at 18:13









      tyebilliontyebillion

      1034




      1034






















          1 Answer
          1






          active

          oldest

          votes


















          2












          $begingroup$

          The proof in the article you linked gives such an explicit construction. In your example, if $L = {1,2,3,4,5}$ , $R = {6,7,8,9,10}$ are the partite sets, let $Z$ be the set of vertices that are either unmatched vertices of $L$
          or connected to an unmatched vertex in $L$ by an alternating path.
          $4$ is the only unmatched vertex in $L$ and the only vertices we can reach by alternating paths are $2$ and $8$, so $Z = {2,4,8}$. A minimum vertex cover is then given by $(Lsetminus Z) cup (Rcap Z) = {1,3,5,8}$.






          share|cite|improve this answer











          $endgroup$













            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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            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%2f3044261%2fhow-to-find-a-minumum-vertex-cover-from-a-maximum-matching-in-a-bipartite-graph%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2












            $begingroup$

            The proof in the article you linked gives such an explicit construction. In your example, if $L = {1,2,3,4,5}$ , $R = {6,7,8,9,10}$ are the partite sets, let $Z$ be the set of vertices that are either unmatched vertices of $L$
            or connected to an unmatched vertex in $L$ by an alternating path.
            $4$ is the only unmatched vertex in $L$ and the only vertices we can reach by alternating paths are $2$ and $8$, so $Z = {2,4,8}$. A minimum vertex cover is then given by $(Lsetminus Z) cup (Rcap Z) = {1,3,5,8}$.






            share|cite|improve this answer











            $endgroup$


















              2












              $begingroup$

              The proof in the article you linked gives such an explicit construction. In your example, if $L = {1,2,3,4,5}$ , $R = {6,7,8,9,10}$ are the partite sets, let $Z$ be the set of vertices that are either unmatched vertices of $L$
              or connected to an unmatched vertex in $L$ by an alternating path.
              $4$ is the only unmatched vertex in $L$ and the only vertices we can reach by alternating paths are $2$ and $8$, so $Z = {2,4,8}$. A minimum vertex cover is then given by $(Lsetminus Z) cup (Rcap Z) = {1,3,5,8}$.






              share|cite|improve this answer











              $endgroup$
















                2












                2








                2





                $begingroup$

                The proof in the article you linked gives such an explicit construction. In your example, if $L = {1,2,3,4,5}$ , $R = {6,7,8,9,10}$ are the partite sets, let $Z$ be the set of vertices that are either unmatched vertices of $L$
                or connected to an unmatched vertex in $L$ by an alternating path.
                $4$ is the only unmatched vertex in $L$ and the only vertices we can reach by alternating paths are $2$ and $8$, so $Z = {2,4,8}$. A minimum vertex cover is then given by $(Lsetminus Z) cup (Rcap Z) = {1,3,5,8}$.






                share|cite|improve this answer











                $endgroup$



                The proof in the article you linked gives such an explicit construction. In your example, if $L = {1,2,3,4,5}$ , $R = {6,7,8,9,10}$ are the partite sets, let $Z$ be the set of vertices that are either unmatched vertices of $L$
                or connected to an unmatched vertex in $L$ by an alternating path.
                $4$ is the only unmatched vertex in $L$ and the only vertices we can reach by alternating paths are $2$ and $8$, so $Z = {2,4,8}$. A minimum vertex cover is then given by $(Lsetminus Z) cup (Rcap Z) = {1,3,5,8}$.







                share|cite|improve this answer














                share|cite|improve this answer



                share|cite|improve this answer








                edited Dec 17 '18 at 19:00

























                answered Dec 17 '18 at 18:49









                BertrandBertrand

                685




                685






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Mathematics Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3044261%2fhow-to-find-a-minumum-vertex-cover-from-a-maximum-matching-in-a-bipartite-graph%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Måne

                    Storängen

                    VLT Carioca