Homework #4 CS675 Fall 2019

Total Page:16

File Type:pdf, Size:1020Kb

Homework #4 CS675 Fall 2019 Homework #4 CS675 Fall 2019 Due Monday Dec 2 by 4:10pm General Instructions The following assignment is meant to be challenging. Feel free to discuss with fellow students, though please write up your solutions independently and acknowledge everyone you discussed the homework with on your writeup. I also expect that you will not attempt to consult outside sources, on the Internet or otherwise, for solutions to any of these homework problems. Finally, please provide a formal mathematical proof for all your claims. Problem 1. (9 points) n Let X = fv1; : : : ; vmg where vi 2 R for i = 1; : : : ; m. As explained in class, the set system over X whose feasible sets are the linearly independent subsets of X is a matroid. In this problem, we will explore whether other forms of independence also yield matroids. (a) [3 points]. Suppose instead that we define S ⊆ X to be feasible if the vectors in S are independent with respect to convex combinations | i.e. no vector v 2 S can be written as a convex combination of the remaining vectors S n v. Is the resulting set system a matroid? Prove or disprove. (b) [3 points]. What if we define S ⊆ X to be feasible if the vectors in S are affinely independent | i.e. no vector v 2 S can be written as an affine combination of the remaining vectors S n v. Is the resulting set system a matroid? Prove or disprove. (c) [3 points]. Finally, what if we say S ⊆ X is feasible if the vectors in S are conically independent | i.e. no vector v 2 S can be written as a conic combination of the remaining vectors S n v. Is the resulting set system a matroid? Prove or disprove. Problem 2. (15 points) In this problem, we will examine some miscellaneous properties of matroids. We use M = (X ; I) to denote an arbitrary matroid. X (a) [3 points]. Prove that the rank function rankM : 2 ! N of a matroid is monotone, normalized, and submodular. (b) [4 points]. Prove the strong exchange property of matroids: If B and B0 are bases of matroid M, then for every i 2 B nB0 there is some j 2 B0 nB such that (B nfig)[fjg is a basis of M. Show that the exchange property is implied by the strong exchange property for every downwards-closed set system. (i.e. we could have equivalently defined matroids using the strong exchange property 1 instead). (c) [2 points]. Show that matroids are closed under truncation. Namely, if M = (X ; I) is a ma- troid, and k is a nonnegative integer, then the set system Mk = (X ; Ik) with Ik = fS 2 I : jSj ≤ kg is also a matroid. (d) [3 points]. Recall that we call a set C ⊆ X a circuit of the matroid M if it is a minimal dependent set in M. Note that a circuits of a graphical matroid correspond to cycles in the graph. X Prove the circuit property of matroids: if M = (X ; I) is a matroid with distinct weights w 2 R assigned to its ground set, and C is a circuit of M, then the element i 2 C of minimum weight is not in any maximum-weight basis of M. (e) [3 points]. We call a set C ⊆ X a cut of the matroid M if every basis of M intersects C, and no proper subset of C has this property. Note that a cut of a graphical matroid correspond to our notion of a cut in a graph | namely, a family of edges who's removal disconnects some connected component of the graph. Prove the cut property of matroids: if M = (X ; I) is a matroid with X distinct weights w 2 R assigned to its ground set, and C is a cut of M, then the element i 2 C of maximum weight is in every maximum-weight basis of M. Problem 3. (12 points) Given two matroids M1 = (X ; I1) and M2 = (X ; I2) with a common ground set X , and a weight X vector w 2 R , the maximum-weight common independent set of M1 and M2 is the set S 2 I1 \I2 P maximizing i2S w(i). We discussed in class how the maximum-weight common independent set can be computed in time poly(jX j), given only independence-oracle access to the matroids M1 and M2. Recall that this followed from the integrality of the polytope P(M1) \P(M2), where P(M1) and P(M2) are the two matroid polytopes. We will now consider a related problem, the minimum-weight common-basis problem, show how to solve it efficiently, and show that it can be viewed as a generalization of the shortest path X problem in directed graphs. Given two matroids M1 = (X ; I1) and M2 = (X ; I2), let B1 ⊆ 2 denote the family of all bases (maximum-cardinality independent sets) of M1, and similarly B2 X for M2. Given a weight vector w 2 R , the minimum-weight common basis of M1 and M2, if it P exists, is the set B 2 B1 \B2 minimizing i2B w(i). Note that for a common basis to exist, both matroids must have the same rank (though this is not sufficient). (a) [6 points]. Show that the minimum-weight common-basis problem can be solved in polynomial time in jX j, given only independence-oracle access to the two matroids M1 and M2. Your algorithm should either output a minimum-weight common-basis of M1 and M2 if one exists, or else assert that there is no common basis. (Hint: You can start by showing that that the convex hull of common bases is a face of the matroid intersection polytope) (b) [6 points]. Show that the shortest path problem in weighted directed graphs can be reduced, in linear time, to the minimum-weight common-basis problem when the graph has no negative cycles. (Hint: Add self-loops to all nodes other than the source and destination, and define two partition 2 matroids such that their common bases are precisely a path combined with some of the self-loops.) Problem 4. (15 points) In the lecture devoted to submodular function maximization subject to a matroid constraint, your instructor neglected the implementation details of the Pipage rounding procedure. At issue were steps (1) and (3). Step (1) requires computing the minimum-size tight set of a matroid M = (X ; I) with respect to a given point x 2 P(M) subject to including a fractional element. Step (3) requires optimally trading off xi and xj while remaining in the matroid polytope. In this problem, you will show how to fill in these blanks. (a) [2 points]. Let x be in the matroid base polytope Pbase(M), and recall that Pbase(M) ⊆ P(M). Show that the family of tight sets fS ⊆ X : x(S) = rankM(S)g forms a lattice. Conclude that, for each i 2 X , there is a tight set Ti with i 2 Ti such that every tight set containing i is a superset of Ti; we say Ti is the minimum tight set containing i. (b) [8 points]. Show how to efficiently implement step (1) of the Pipage rounding procedure. Your algorithm should compute T in time polynomial in jX j and the bit complexity hxi of the solution x. You should assume that you have access to an independence oracle for the matroid M. (Hint: Reduce this to computing Ti for each i 2 X . To compute Ti, use a greedy algorithm which starts with R = X , and iteratively removes elements from R until it ends up with Ti. Your algorithm will use submodular minimization as a subroutine.) (c) [5 points]. Show how to efficiently implement step (3) of the Pipage rounding procedure. Given x 2 P(M) and i; j 2 X , your algorithm should compute µ 2 [0; 1] maximizing F (x + µ(ei − ej)), where F is the multilinear extension of a submodular function, in time polynomial in jX j and hxi. As usual, you may assume access to an independence oracle for M. Moreover, for purposes of this problem you may assume that you can exactly evaluate F in constant time. Problem 5. (8 points) The following is a (simplification of) a task encountered in speech recognition. Here, we wish to select a small vocabulary (a set of words) which express many common phrases. Specifically, you are given a set P of phrases which, collectively, use only the words in the set W . Moreover, each phrase p 2 P is given a nonnegative weight w(p) indicating its importance. For a vocabulary V ⊆ W , we use P (V ) ⊆ P to denote the phrases which use only words in V . Your goal is to choose a vocabulary optimizing a tradeoff between the total weight of expressed phrases and the size of the P vocabulary; specifically, find V ⊆ W maximizing p2P (V ) w(p) − jV j. Show that this problem is solvable in poly(jP j; jW j) time. You may assume that you can test whether a particular word occurs in a particular phrase in constant time. Problem 6. (12 points) Sensor networks are frequently deployed for sensing the environment (e.g. temperature or pressure). Consider the following simplified scenario: There are n sensors S and m reference locations L. For ` 2 L and s 2 S, you are given a coverage quality q(s; `) 2 R+. We assume there are T time periods, and your goal is to select a subset of the sensors Xt ⊆ S to \activate" during each time period t 2 f1;:::;T g.
Recommended publications
  • Matroid Theory
    MATROID THEORY HAYLEY HILLMAN 1 2 HAYLEY HILLMAN Contents 1. Introduction to Matroids 3 1.1. Basic Graph Theory 3 1.2. Basic Linear Algebra 4 2. Bases 5 2.1. An Example in Linear Algebra 6 2.2. An Example in Graph Theory 6 3. Rank Function 8 3.1. The Rank Function in Graph Theory 9 3.2. The Rank Function in Linear Algebra 11 4. Independent Sets 14 4.1. Independent Sets in Graph Theory 14 4.2. Independent Sets in Linear Algebra 17 5. Cycles 21 5.1. Cycles in Graph Theory 22 5.2. Cycles in Linear Algebra 24 6. Vertex-Edge Incidence Matrix 25 References 27 MATROID THEORY 3 1. Introduction to Matroids A matroid is a structure that generalizes the properties of indepen- dence. Relevant applications are found in graph theory and linear algebra. There are several ways to define a matroid, each relate to the concept of independence. This paper will focus on the the definitions of a matroid in terms of bases, the rank function, independent sets and cycles. Throughout this paper, we observe how both graphs and matrices can be viewed as matroids. Then we translate graph theory to linear algebra, and vice versa, using the language of matroids to facilitate our discussion. Many proofs for the properties of each definition of a matroid have been omitted from this paper, but you may find complete proofs in Oxley[2], Whitney[3], and Wilson[4]. The four definitions of a matroid introduced in this paper are equiv- alent to each other.
    [Show full text]
  • Matroids and Tropical Geometry
    matroids unimodality and log concavity strategy: geometric models tropical models directions Matroids and Tropical Geometry Federico Ardila San Francisco State University (San Francisco, California) Mathematical Sciences Research Institute (Berkeley, California) Universidad de Los Andes (Bogotá, Colombia) Introductory Workshop: Geometric and Topological Combinatorics MSRI, September 5, 2017 (3,-2,0) Who is here? • This is the Introductory Workshop. • Focus on accessibility for grad students and junior faculty. • # (questions by students + postdocs) # (questions by others) • ≥ matroids unimodality and log concavity strategy: geometric models tropical models directions Preface. Thank you, organizers! • This is the Introductory Workshop. • Focus on accessibility for grad students and junior faculty. • # (questions by students + postdocs) # (questions by others) • ≥ matroids unimodality and log concavity strategy: geometric models tropical models directions Preface. Thank you, organizers! • Who is here? • matroids unimodality and log concavity strategy: geometric models tropical models directions Preface. Thank you, organizers! • Who is here? • This is the Introductory Workshop. • Focus on accessibility for grad students and junior faculty. • # (questions by students + postdocs) # (questions by others) • ≥ matroids unimodality and log concavity strategy: geometric models tropical models directions Summary. Matroids are everywhere. • Many matroid sequences are (conj.) unimodal, log-concave. • Geometry helps matroids. • Tropical geometry helps matroids and needs matroids. • (If time) Some new constructions and results. • Joint with Carly Klivans (06), Graham Denham+June Huh (17). Properties: (B1) B = /0 6 (B2) If A;B B and a A B, 2 2 − then there exists b B A 2 − such that (A a) b B. − [ 2 Definition. A set E and a collection B of subsets of E are a matroid if they satisfies properties (B1) and (B2).
    [Show full text]
  • Matroids You Have Known
    26 MATHEMATICS MAGAZINE Matroids You Have Known DAVID L. NEEL Seattle University Seattle, Washington 98122 [email protected] NANCY ANN NEUDAUER Pacific University Forest Grove, Oregon 97116 nancy@pacificu.edu Anyone who has worked with matroids has come away with the conviction that matroids are one of the richest and most useful ideas of our day. —Gian Carlo Rota [10] Why matroids? Have you noticed hidden connections between seemingly unrelated mathematical ideas? Strange that finding roots of polynomials can tell us important things about how to solve certain ordinary differential equations, or that computing a determinant would have anything to do with finding solutions to a linear system of equations. But this is one of the charming features of mathematics—that disparate objects share similar traits. Properties like independence appear in many contexts. Do you find independence everywhere you look? In 1933, three Harvard Junior Fellows unified this recurring theme in mathematics by defining a new mathematical object that they dubbed matroid [4]. Matroids are everywhere, if only we knew how to look. What led those junior-fellows to matroids? The same thing that will lead us: Ma- troids arise from shared behaviors of vector spaces and graphs. We explore this natural motivation for the matroid through two examples and consider how properties of in- dependence surface. We first consider the two matroids arising from these examples, and later introduce three more that are probably less familiar. Delving deeper, we can find matroids in arrangements of hyperplanes, configurations of points, and geometric lattices, if your tastes run in that direction.
    [Show full text]
  • On Decomposing a Hypergraph Into K Connected Sub-Hypergraphs
    Egervary´ Research Group on Combinatorial Optimization Technical reportS TR-2001-02. Published by the Egrerv´aryResearch Group, P´azm´any P. s´et´any 1/C, H{1117, Budapest, Hungary. Web site: www.cs.elte.hu/egres . ISSN 1587{4451. On decomposing a hypergraph into k connected sub-hypergraphs Andr´asFrank, Tam´asKir´aly,and Matthias Kriesell February 2001 Revised July 2001 EGRES Technical Report No. 2001-02 1 On decomposing a hypergraph into k connected sub-hypergraphs Andr´asFrank?, Tam´asKir´aly??, and Matthias Kriesell??? Abstract By applying the matroid partition theorem of J. Edmonds [1] to a hyper- graphic generalization of graphic matroids, due to M. Lorea [3], we obtain a gen- eralization of Tutte's disjoint trees theorem for hypergraphs. As a corollary, we prove for positive integers k and q that every (kq)-edge-connected hypergraph of rank q can be decomposed into k connected sub-hypergraphs, a well-known result for q = 2. Another by-product is a connectivity-type sufficient condition for the existence of k edge-disjoint Steiner trees in a bipartite graph. Keywords: Hypergraph; Matroid; Steiner tree 1 Introduction An undirected graph G = (V; E) is called connected if there is an edge connecting X and V X for every nonempty, proper subset X of V . Connectivity of a graph is equivalent− to the existence of a spanning tree. As a connected graph on t nodes contains at least t 1 edges, one has the following alternative characterization of connectivity. − Proposition 1.1. A graph G = (V; E) is connected if and only if the number of edges connecting distinct classes of is at least t 1 for every partition := V1;V2;:::;Vt of V into non-empty subsets.P − P f g ?Department of Operations Research, E¨otv¨osUniversity, Kecskem´etiu.
    [Show full text]
  • Matroid Bundles
    New Perspectives in Geometric Combinatorics MSRI Publications Volume 38, 1999 Matroid Bundles LAURA ANDERSON Abstract. Combinatorial vector bundles, or matroid bundles,areacom- binatorial analog to real vector bundles. Combinatorial objects called ori- ented matroids play the role of real vector spaces. This combinatorial anal- ogy is remarkably strong, and has led to combinatorial results in topology and bundle-theoretic proofs in combinatorics. This paper surveys recent results on matroid bundles, and describes a canonical functor from real vector bundles to matroid bundles. 1. Introduction Matroid bundles are combinatorial objects that mimic real vector bundles. They were first defined in [MacPherson 1993] in connection with combinatorial differential manifolds,orCD manifolds. Matroid bundles generalize the notion of the “combinatorial tangent bundle” of a CD manifold. Since the appearance of McPherson’s article, the theory has filled out considerably; in particular, ma- troid bundles have proved to provide a beautiful combinatorial formulation for characteristic classes. We will recapitulate many of the ideas introduced by McPherson, both for the sake of a self-contained exposition and to describe them in terms more suited to our present context. However, we refer the reader to [MacPherson 1993] for background not given here. We recommend the same paper, as well as [Mn¨ev and Ziegler 1993] on the combinatorial Grassmannian, for related discussions. We begin with a key intuitive point of the theory: the notion of an oriented matroid as a combinatorial analog to a vector space. From this we develop matroid bundles as a combinatorial bundle theory with oriented matroids as fibers. Section 2 will describe the category of matroid bundles and its relation to the category of real vector bundles.
    [Show full text]
  • Applications of Matroid Theory and Combinatorial Optimization to Information and Coding Theory
    Applications of Matroid Theory and Combinatorial Optimization to Information and Coding Theory Navin Kashyap (Queen’s University), Emina Soljanin (Alcatel-Lucent Bell Labs) Pascal Vontobel (Hewlett-Packard Laboratories) August 2–7, 2009 The aim of this workshop was to bring together experts and students from pure and applied mathematics, computer science, and engineering, who are working on related problems in the areas of matroid theory, combinatorial optimization, coding theory, secret sharing, network coding, and information inequalities. The goal was to foster exchange of mathematical ideas and tools that can help tackle some of the open problems of central importance in coding theory, secret sharing, and network coding, and at the same time, to get pure mathematicians and computer scientists to be interested in the kind of problems that arise in these applied fields. 1 Introduction Matroids are structures that abstract certain fundamental properties of dependence common to graphs and vector spaces. The theory of matroids has its origins in graph theory and linear algebra, and its most successful applications in the past have been in the areas of combinatorial optimization and network theory. Recently, however, there has been a flurry of new applications of this theory in the fields of information and coding theory. It is only natural to expect matroid theory to have an influence on the theory of error-correcting codes, as matrices over finite fields are objects of fundamental importance in both these areas of mathematics. Indeed, as far back as 1976, Greene [7] (re-)derived the MacWilliams identities — which relate the Hamming weight enumerators of a linear code and its dual — as special cases of an identity for the Tutte polynomial of a matroid.
    [Show full text]
  • SHIFTED MATROID COMPLEXES 1. Introduction We Want to Consider
    SHIFTED MATROID COMPLEXES CAROLINE J. KLIVANS Abstract. We study the class of matroids whose independent set complexes are shifted simplicial complexes. We prove two characterization theorems, one of which is constructive. In addition, we show this class is closed under taking minors and duality. Finally, we give results on shifted broken circuit complexes. 1. Introduction We want to consider those matroids whose complexes of independent sets are shifted. This class of shifted matroids has been significantly investigated before, in a variety of guises. They seem to have been first used in [5] by Crapo. He used them to show that there are at least 2n non-isomorphic matroids on n elements. They were later investigated in [11] as a particular kind of transversal matroid. This work includes a characterization in terms of forbidden minors. Shifted matroids appeared again in [2] and [3] as a kind of lattice path matroid. Mostly closely related to the presentation here is [1], where these matroids arise in the context of Catalan matroids. We refer the reader to [3] for a more complete history of these matroids. Our approach is to consider the matroid complexes specifically from a shifted perspective. We provide new proofs utilizing the structure of a shifted complex to show the class is constructible, closed under taking minors and duality, and exactly the set of principal order ideals in the shifted partial ordering. 2. Shifted complexes A simplicial complex on n vertices is shifted if there exists a labeling of the vertices by one through n such that for any face fv1; v2; : : : ; vkg, replacing any vi by a vertex with a smaller label results in a collection which is also a face.
    [Show full text]
  • Topics in Combinatorial Optimization
    Topics in Combinatorial Optimization Orlando Lee – Unicamp 4 de junho de 2014 Orlando Lee – Unicamp Topics in Combinatorial Optimization Agradecimentos Este conjunto de slides foram preparados originalmente para o curso T´opicos de Otimiza¸c˜ao Combinat´oria no primeiro semestre de 2014 no Instituto de Computa¸c˜ao da Unicamp. Preparei os slides em inglˆes simplesmente porque me deu vontade, mas as aulas ser˜ao em portuguˆes (do Brasil)! Agradecimentos especiais ao Prof. M´ario Leston Rey. Sem sua ajuda, certamente estes slides nunca ficariam prontos a tempo. Qualquer erro encontrado nestes slide ´ede minha inteira responsabilidade (Orlando Lee, 2014). Orlando Lee – Unicamp Topics in Combinatorial Optimization Independent sets A matroid is a pair M = (E, I) in which I ⊆ 2E that satisfies the following properties: (I1) ∅∈ I. (I2) If I ∈ I and I ′ ⊆ I , then I ′ ∈ I. (I3) If I 1, I 2 ∈ I and |I 1| < |I 2|, then there exists e ∈ I 2 − I 1 such that I 1 ∪ {e}∈ I. (Independence augmenting axiom) We say that the members of I are the independent sets of M. Orlando Lee – Unicamp Topics in Combinatorial Optimization Matroid intersection We have seen how to determine efficiently (via an independence oracle) a maximum basis (independent set) of a matroid. Let M1 = (E, I1) and M2 = (E , I2) be two matroids. We are interested in finding a maximum element I ∈ I1 ∩ I2, that is, a maximum common independent set I of both matroids. We consider the unweighted version, in which we want to maximize |I | for I ∈ I1 ∩ I2, and the weighted version in which given c : E 7→ R we want to maximum c(I ) for I ∈ I1 ∩ I2.
    [Show full text]
  • Matroid Matching: the Power of Local Search
    Matroid Matching: the Power of Local Search [Extended Abstract] Jon Lee Maxim Sviridenko Jan Vondrák IBM Research IBM Research IBM Research Yorktown Heights, NY Yorktown Heights, NY San Jose, CA [email protected] [email protected] [email protected] ABSTRACT can be easily transformed into an NP-completeness proof We consider the classical matroid matching problem. Un- for a concrete class of matroids (see [46]). An important weighted matroid matching for linear matroids was solved result of Lov´asz is that (unweighted) matroid matching can by Lov´asz, and the problem is known to be intractable for be solved in polynomial time for linear matroids (see [35]). general matroids. We present a PTAS for unweighted ma- There have been several attempts to generalize Lov´asz' re- troid matching for general matroids. In contrast, we show sult to the weighted case. Polynomial-time algorithms are that natural LP relaxations have an Ω(n) integrality gap known for some special cases (see [49]), but for general linear and moreover, Ω(n) rounds of the Sherali-Adams hierarchy matroids there is only a pseudopolynomial-time randomized are necessary to bring the gap down to a constant. exact algorithm (see [8, 40]). More generally, for any fixed k ≥ 2 and > 0, we obtain a In this paper, we revisit the matroid matching problem (k=2 + )-approximation for matroid matching in k-uniform for general matroids. Our main result is that while LP- hypergraphs, also known as the matroid k-parity problem. based approaches including the Sherali-Adams hierarchy fail As a consequence, we obtain a (k=2 + )-approximation for to provide any meaningful approximation, a simple local- the problem of finding the maximum-cardinality set in the search algorithm gives a PTAS (in the unweighted case).
    [Show full text]
  • 5. Matroid Optimization 5.1 Definition of a Matroid
    Massachusetts Institute of Technology 18.453: Combinatorial Optimization Michel X. Goemans April 20, 2017 5. Matroid optimization 5.1 Definition of a Matroid Matroids are combinatorial structures that generalize the notion of linear independence in matrices. There are many equivalent definitions of matroids, we will use one that focus on its independent sets. A matroid M is defined on a finite ground set E (or E(M) if we want to emphasize the matroid M) and a collection of subsets of E are said to be independent. The family of independent sets is denoted by I or I(M), and we typically refer to a matroid M by listing its ground set and its family of independent sets: M = (E; I). For M to be a matroid, I must satisfy two main axioms: (I1) if X ⊆ Y and Y 2 I then X 2 I, (I2) if X 2 I and Y 2 I and jY j > jXj then 9e 2 Y n X : X [ feg 2 I. In words, the second axiom says that if X is independent and there exists a larger independent set Y then X can be extended to a larger independent by adding an element of Y nX. Axiom (I2) implies that every maximal (inclusion-wise) independent set is maximum; in other words, all maximal independent sets have the same cardinality. A maximal independent set is called a base of the matroid. Examples. • One trivial example of a matroid M = (E; I) is a uniform matroid in which I = fX ⊆ E : jXj ≤ kg; for a given k.
    [Show full text]
  • 4. Lecture Notes on Matroid Optimization 4.1 Definition of A
    Massachusetts Institute of Technology Handout 9 18.433: Combinatorial Optimization March 20th, 2009 Michel X. Goemans 4. Lecture notes on matroid optimization 4.1 Definition of a Matroid Matroids are combinatorial structures that generalize the notion of linear independence in matrices. There are many equivalent definitions of matroids, we will use one that focus on its independent sets. A matroid M is defined on a finite ground set E (or E(M) if we want to emphasize the matroid M) and a collection of subsets of E are said to be independent. The family of independent sets is denoted by I or I(M), and we typically refer to a matroid M by listing its ground set and its family of independent sets: M = (E; I). For M to be a matroid, I must satisfy two main axioms: (I1) if X ⊆ Y and Y 2 I then X 2 I, (I2) if X 2 I and Y 2 I and jY j > jXj then 9e 2 Y n X : X [ feg 2 I. In words, the second axiom says that if X is independent and there exists a larger independent set Y then X can be extended to a larger independent by adding an element of Y nX. Axiom (I2) implies that every maximal (inclusion-wise) independent set is maximum; in other words, all maximal independent sets have the same cardinality. A maximal independent set is called a base of the matroid. Examples. • One trivial example of a matroid M = (E; I) is a uniform matroid in which I = fX ⊆ E : jXj ≤ kg; for a given k.
    [Show full text]
  • On the Graphic Matroid Parity Problem
    On the graphic matroid parity problem Zolt´an Szigeti∗ Abstract A relatively simple proof is presented for the min-max theorem of Lov´asz on the graphic matroid parity problem. 1 Introduction The graph matching problem and the matroid intersection problem are two well-solved problems in Combi- natorial Theory in the sense of min-max theorems [2], [3] and polynomial algorithms [4], [3] for finding an optimal solution. The matroid parity problem, a common generalization of them, turned out to be much more difficult. For the general problem there does not exist polynomial algorithm [6], [8]. Moreover, it contains NP-complete problems. On the other hand, for linear matroids Lov´asz provided a min-max formula in [7] and a polynomial algorithm in [8]. There are several earlier results which can be derived from Lov´asz’ theorem, e.g. Tutte’s result on f-factors [15], a result of Mader on openly disjoint A-paths [11] (see [9]), a result of Nebesky concerning maximum genus of graphs [12] (see [5]), and the problem of Lov´asz on cacti [9]. This latter one is a special case of the graphic matroid parity problem. Our aim is to provide a simple proof for the min-max formula on this problem, i. e. on the graphic matroid parity problem. In an earlier paper [14] of the present author the special case of cacti was considered. We remark that we shall apply the matroid intersection theorem of Edmonds [4]. We refer the reader to [13] for basic concepts on matroids. For a given graph G, the cycle matroid G is defined on the edge set of G in such a way that the independent sets are exactly the edge sets of the forests of G.
    [Show full text]