Modular Decomposition of Undirected Graphs

Total Page:16

File Type:pdf, Size:1020Kb

Modular Decomposition of Undirected Graphs THESIS MODULAR DECOMPOSITION OF UNDIRECTED GRAPHS Submitted by Adrian E. Esparza Department of Computer Science In partial fulfillment of the requirements For the Degree of Master of Science Colorado State University Fort Collins, Colorado Summer 2020 Master’s Committee: Advisor: Ross McConnell Sangmi Pallickara Alexander Hulpke Copyright by Adrian E. Esparza 2020 All Rights Reserved ABSTRACT MODULAR DECOMPOSITION OF UNDIRECTED GRAPHS Graphs found in nature tend to have structure and interesting compositions that allow for com- pression of the information and thoughtful analysis of the relationships between vertices. Modular decomposition has been studied since 1967 [1]. Modular decomposition breaks a graph down into smaller components that, from the outside, are inseparable. In doing so, modules provide great po- tential to better study problems from genetics to compression. This paper describes the implemen- tation of a practical algorithm to take a graph and decompose it into it modules in O(n+m log(n)) time. In the implementation of this algorithm, each sub-problem was solved using object ori- ented design principles to allow a reader to extract the individual objects and turn them to other problems of practical interest. The purpose of this paper is to provide the reader with the tools to easily compute: modular decomposition of an undirected graph, partition an undirected graph, depth first search on a directed partially complemented graph, and stack operations with a com- plement stack. The provided implementation of these problems all compute within the time bound discussed above, or even faster for several of the sub problems. ii ACKNOWLEDGEMENTS I would like to thank my family for their ceaseless support. I would also like to thank my advisor Ross McConnell for his guidance and help. The Shindlebowers for treating me like family and caring for my dog. My friends Dave Bessen, Cole Frederick, and Gareth Halladay for ever more unflagging support. In addition a special recognition for Sophia Fantus for brilliant proof reading. Know that this work would not have been possible with out all of you. Thank you and congratulations on work well done. iii DEDICATION I would like to dedicate this thesis to my family, good job getting it done team Esparza. iv TABLE OF CONTENTS ABSTRACT . ii ACKNOWLEDGEMENTS . iii DEDICATION . iv LIST OF FIGURES . vi Chapter 1 Introduction . 1 Chapter 2 Preliminaries . 2 Chapter 3 Modules . 4 Chapter 4 Applications . 10 4.1 Compact representation of a graph . 10 4.2 Max weight independent set . 11 4.3 Cographs . 12 4.4 Transitive Orientation . 14 4.5 Max Clique and Min coloring in comparability graphs. 17 4.6 Related graph classes . 17 Chapter 5 The Algorithm . 19 5.1 Overview . 19 5.2 Finding the maximal modules that do not contain x . 21 5.2.1 Strategy for an efficient implementation . 22 5.2.2 Finding M in practice . 24 5.3 Finding Modules containing x in G′ ..................... 25 5.3.1 Finding the Strongly Connected Components . 27 5.3.2 Building MD(G′) ............................. 30 5.4 Recurse . 31 Bibliography . 32 v LIST OF FIGURES 3.1 X represents a module, Y represents a potential module spoiled by f .......... 4 3.2 The factor is the subgraph induced by X, and the quotient is the original graph with X collapsed to a point. 5 3.3 A graph with several modules within it along with its modular decomposition. 6 4.1 A C5 and steps demonstrating the forcing relation, and how it shows a C5 is not tran- sitively orientable and thus not a comparability graph. 14 vi Chapter 1 Introduction According to Elias Dahlhaus, Jens Gustedt, and Ross M. McConnell [2], modules have been studied since 1967 [1]. Modules represent interesting structures within graphs. A module is some nonempty set X of vertices in a graph G =(V,E), such that ∀u ∈ (V − X), u is either a neighbor of every vertex in X, or a non neighbor of every vertex in X.A spoiler for X is a vertex u ∈ V −X, such that X contains both neighbors and non neighbors of u. X is a module if, and only if, it has no spoilers. The lack of spoilers is what make modules novel structures for study. For example, optimiza- tion problems that are hard in the general case, can be solved in linear time on graphs with a non trivial modular decomposition. The beginning of this thesis will cover related research into mod- ules, problems that have linear time solutions, and graph classes that modules can help identify. The rest of the thesis covers an O(n+m log(n)) algorithm used to find the modular decomposition of a graph as well as describing our implementation of a program that runs said algorithm. In chapter 2, we will discuss general graph terms and definitions that will be used throughout the paper. In chapter 3, we will examine the reasons modules are interesting to other types of graph theory problems. In chapter 4, we will describe how, in using modular decomposition, it is possible to find linear time solutions to max weight independent set, transitive orientation, and detecting interval graphs [3]. In chapter 5, we will consider an algorithm for computing the modular decomposition of a graph in O(n + m log(n)) time [4]. In parallel to describing the algorithm, we will describe an implementation of said algorithm with explanations for design decisions. 1 Chapter 2 Preliminaries A directed graph is represented by a set of vertices V , and a set E of ordered pairs of vertices, known as edges. An undirected graph is a special case of a directed graph, where (x,y) ∈ E ⇐⇒ (y,x) ∈ E. In an undirected graph, the symmetric pair {(x,y), (y,x)} can be denoted as an undirected edge xy. For simplicity, in this thesis, a graph will refer to an undirected graph, unless otherwise indicated. The variables n and m will be reserved for representing the size of the sets V and E, respectively. A subgraph of G is a graph G′ = (V ′,E′), where V ′ ⊆ V and E′ is some subset of E, such that every edge in E′ has both its endpoints in V ′. An induced subgraph is a graph G′ =(V ′,E′), where V ′ ⊆ V and ∀a, b ∈ V ′, (a, b) ∈ E′ iff (a, b) ∈ E. In this thesis, G[X] shall represent the subgraph of G induced by X, where X represents a set of vertices in G. Unless otherwise indicated, all subgraphs referenced in this paper shall be induced subgraphs. When (x,y) is a directed edge, y is adjacent to x. For a given vertex x, the neighborhood of x N(x) will denote {y ∈ V : (x,y) ∈ E}. That is, N(x) will represent the set of vertices in E that x is adjacent to. A complement, G = (V, E) of a graph G = (V,E) retains all the vertices of the original graph, but the edges in G are non edges in G and the non edges in G are edges in G. That is, ∀a, b ∈ V , (a, b) ∈ E iff (a, b) ∈/ E. Two sets X and Y are properly overlapping if their intersection is non empty, but neither is contained within the each other. Written formally, if X,Y are properly overlapping sets then |X ∩ Y | > 0 and |X ∩ Y | < |X| and |X ∩ Y | < |Y |.A partition of a set X is a family {X1,X2,...,Xk} of subsets of X, such that every element in X is a member of exactly one set Xi in the family. A disjoint union of two graphs takes two graphs, G = (V,E) and G′ = (V ′,E′), which share no vertices, and creates a new graph H =({V + V ′}, {E + E′}).A path exists between vertices x and y if there exists a set Z of edges in E, such that starting with x it is possible to traverse the 2 edges of Z and reach y.A cycle exists when there is a set of edge that can be traversed from some vertex x which leads back to x.A DAG is a directed graph with the condition that no cycles exist, also known as a directed acyclic graph. A set of vertices where a path exists between any two vertices of the set is known as a strongly connected component. A clique C within a graph is a maximal set of vertices, such that ∀v,w ∈ C : v =6 w, (v,w) ∈ E. The set of cliques in a graph is denoted CG. The notation, CG(x) , denotes the set of cliques which contain some vertex x, and CG(¯x) denotes the cliques which do not contain x.A valid coloring of a graph is the assignment of colors to vertices of the graph, such that no two vertices of the same color are adjacent to one another. For a graph G =(V,E), |V | is clearly an upper bound on the number of colors needed for a valid coloring, by assigning each vertex a unique color. A min coloring is the minimum number of colors necessary for a valid coloring. It is trivial to show that the size of a max clique is a lower bound on a min coloring. Proof. By contradiction. Consider that a coloring assigns the same color to two vertices in the clique. By the definition of a clique, those two vertices are adjacent; therefore, the min coloring is not valid. Opposite a clique is a kernel, a maximal independent set of vertices in G. For some kernel, K, ∀v,w ∈ K, (v,w) ∈/ E.
Recommended publications
  • Graph Partitions and the Bichromatic Number Dennis D.A. Epple Doctor of Philosophy
    Graph Partitions and the Bichromatic Number by Dennis D.A. Epple Diplom, Freie Universit¨atBerlin, 2005 A Dissertation Submitted in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy in the Department of Mathematics and Statistics c Dennis D.A. Epple, 2011 University of Victoria All rights reserved. This dissertation may not be reproduced in whole or in part by photocopy or other means, without the permission of the author. Graph Partitions and the Bichromatic Number by Dennis D.A. Epple Diplom, Freie Universit¨atBerlin, 2005 Supervisory Committee Dr. Jing Huang, Supervisor (Department of Mathematics and Statistics) Dr. Peter Dukes, Member (Department of Mathematics and Statistics) Dr. Gary MacGillivray, Member (Department of Mathematics and Statistics) Dr. Frank Ruskey, Outside Member (Department of Computer Science) ii Supervisory Committee Dr. Jing Huang, Supervisor (Department of Mathematics and Statistics) Dr. Peter Dukes, Member (Department of Mathematics and Statistics) Dr. Gary MacGillivray, Member (Department of Mathematics and Statistics) Dr. Frank Ruskey, Outside Member (Department of Computer Science) Abstract A(k; l)-colouring of a graph is a partition of its vertex set into k independent sets and l cliques. The bichromatic number χb of a graph is the minimum r such that the graph is (k; l)-colourable for all k + l = r. The bichromatic number is related to the cochromatic number, which can also be defined in terms of (k; l)-colourings. The bichromatic number is a fairly recent graph parameter that arises in the study of extremal graphs related to a classical result of Erd}os,Stone and Simonovits, and in the study of the edit distance of graphs from hereditary graph classes.
    [Show full text]
  • Families of Integral Cographs Within a Triangular Array Received July 3, 2020; Accepted November 8, 2020
    Spec. Matrices 2020; 8:257–273 Research Article Open Access Hsin-Yun Ching, Rigoberto Flórez*, and Antara Mukherjee Families of Integral Cographs within a Triangular Array https://doi.org/10.1515/spma-2020-0116 Received July 3, 2020; accepted November 8, 2020 Abstract: The determinant Hosoya triangle, is a triangular array where the entries are the determinants of two-by-two Fibonacci matrices. The determinant Hosoya triangle mod 2 gives rise to three innite families of graphs, that are formed by complete product (join) of (the union of) two complete graphs with an empty graph. We give a necessary and sucient condition for a graph from these families to be integral. Some features of these graphs are: they are integral cographs, all graphs have at most ve distinct eigenval- ues, all graphs are either d-regular graphs with d = 2, 4, 6, ... or almost-regular graphs, and some of them are Laplacian integral. Finally we extend some of these results to the Hosoya triangle. Keywords: Fibonacci number, determinant Hosoya triangle, adjacency matrix, eigenvalue, integral graph, cograph MSC: Primary 68R11; Secondary 11B39 1 Introduction A graph is integral if the eigenvalues of its adjacency matrix are integers. These graphs are rare and the tech- niques used to nd them are quite complicated. The notion of integral graphs was rst introduced in 1974 by Harary and Schwenk [17]. A cograph is a graph that avoids the 4 vertices path as an induced subgraph [11]. In this paper we study an innite family of integral cographs associated with a combinatorial triangle. These families have at most ve distinct eigenvalues.
    [Show full text]
  • [Math.LO] 18 Apr 2004 on the Order of Countable Graphs
    On the Order of Countable Graphs Jaroslav Neˇsetˇril∗ Department of Applied Mathematics and Institute for Theoretical Computer Science (ITI) Charles University Malostransk´en´am.25, 11800 Praha 1 Czech Republic Email: [email protected]ff.cuni.cz Saharon Shelah Hebrew University, Jerusalem† Institute of Mathematics The Hebrew University of Jerusalem Jerusalem 91904, Israel and Department of Mathematics Rutgers University New Brunswick, NJ 08854, USA Email: [email protected] October 7, 2018 arXiv:math/0404319v1 [math.LO] 18 Apr 2004 1 ∗Partially supported by the Project LN00A056 of the Czech Ministry of Education and by GAUK 158 grant. †Research supported by the United States-Israel Binational Science Foundation. Publication 745 1Math. Subj. Class.03C, 05C, 05E, and 06A. Keywords and phrases: Density, Partially ordered sets, Rigid graphs, Universal graphs. The authors wish to thank the Mittag-Leffler Institute, for its support and pleasant environment during September, 2000, when this paper was written. 1 Abstract A set of graphs is said to be independent if there is no homomorphism between distinct graphs from the set. We consider the existence problems related to the independent sets of countable graphs. While the maximal size of an independent set of countable graphs is 2ω the On Line problem of extending an independent set to a larger independent set is much harder. We prove here that singletons can be extended (“partnership theorem”). While this is the best possible in general, we give structural conditions which guarantee independent extensions of larger independent sets. This is related to universal graphs, rigid graphs (where we solve a problem posed in [19]) and to the density problem for countable graphs.
    [Show full text]
  • University of Bergen Maximum Number of Edges in Graphs Under Various Constraints
    University of Bergen Department of Informatics Algorithms Maximum Number of Edges in Graphs Under Various Constraints Student: H˚avard Stuberg Supervisor: Pinar Heggernes Masters Thesis June, 2019 ii iii Acknowledgements I would like to thank my supervisor Pinar Heggernes for all the help, guidance and encouragement I have received while working on this thesis. I also want to thank Paloma Lima for her help and suggestions. iv v Contents 1 Introduction1 1.1 Notation and Definitions..........................1 1.2 Graph Classes................................3 1.2.1 Chordal Graphs...........................3 1.2.2 Interval Graphs...........................4 1.2.3 Split Graphs.............................5 1.2.4 Trivially Perfect Graphs......................5 1.2.5 Cographs..............................6 1.2.6 Graph Class Hierarchy.......................7 1.3 Overview of the Thesis...........................8 2 Bounding the Number of Edges in a Graph9 2.1 Maximum Degree and Matching Number................. 12 2.2 Maximum Degree and Induced Matching Number............ 16 3 Bounded Matching Number and Maximum Degree 19 3.1 Chordal Graphs............................... 20 3.1.1 Cliques and Stars.......................... 20 3.1.2 Test Results............................. 21 3.2 Trivially Perfect Graphs.......................... 23 3.3 Interval Graphs............................... 24 4 Bounded Induced Matching Number and Maximum Degree 29 4.1 Chordal Graphs............................... 30 vi CONTENTS 4.2 Interval Graphs............................... 32 4.3 Split Graphs................................. 33 4.4 Cographs.................................. 35 5 Conclusion 37 5.1 The Practical Framework for Testing Hypotheses............ 37 5.1.1 Generating Graphs......................... 38 5.1.2 Testing the Graphs......................... 40 5.2 A Related Problem: Minimal Feedback Vertex Sets in Chordal Graphs 41 5.2.1 Maximum Number of Minimal Feedback Vertex Sets in Chordal Graphs...............................
    [Show full text]
  • A Vizing-Like Theorem for Union Vertex-Distinguishing Edge Coloring Nicolas Bousquet, Antoine Dailly, Eric Duchene, Hamamache Kheddouci, Aline Parreau
    A Vizing-like theorem for union vertex-distinguishing edge coloring Nicolas Bousquet, Antoine Dailly, Eric Duchene, Hamamache Kheddouci, Aline Parreau To cite this version: Nicolas Bousquet, Antoine Dailly, Eric Duchene, Hamamache Kheddouci, Aline Parreau. A Vizing- like theorem for union vertex-distinguishing edge coloring. Discrete Applied Mathematics, Elsevier, 2017, 232, pp.88-98. 10.1016/j.dam.2017.07.002. hal-01313088v2 HAL Id: hal-01313088 https://hal.archives-ouvertes.fr/hal-01313088v2 Submitted on 17 Jul 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. A Vizing-like theorem for union vertex-distinguishing edge coloring Nicolas Bousqueta, Antoine Daillyb,∗, Eric´ Duch^eneb, Hamamache Kheddoucib, Aline Parreaub aG-SCOP (CNRS, Univ. Grenoble-Alpes), Grenoble, France. bUniv Lyon, Universit´eLyon 1, LIRIS UMR CNRS 5205, F-69621, Lyon, France. Abstract We introduce a variant of the vertex-distinguishing edge coloring problem, where each edge is assigned a subset of colors. The label of a vertex is the union of the sets of colors on edges incident to it. In this paper we investigate the problem of finding a coloring with the minimum number of colors where every vertex receives a distinct label.
    [Show full text]
  • Local Recognition of Reflection Graphs on Coxeter Groups
    Local recognition of reflection graphs on Coxeter groups Diploma Thesis 31 Mar 2008 (minor corrections, 13 May 2008) Armin Straub Technische Universität Darmstadt Department of Mathematics Algebra, Geometry, Functional Analysis supervised by PD dr. Ralf Gramlich Contents 3 Contents Contents .............................................. 3 Notations .............................................. 4 1 Introduction .......................................... 6 1.1 Overview ........................................ 6 1.2 Grouptheory ..................................... 8 1.3 Graphtheory ..................................... 16 1.4 Coxetergroups ................................... 27 2 Local recognition of graphs .............................. 41 2.1 Somelocalrecognitionresults . ....... 43 2.2 Local recognition of simply laced Weyl graphs . ........ 45 2.3 Local recognition of non-simply laced Weyl graphs . ......... 48 2.4 Graphs locally like W( F4) .............................. 50 2.5 Recognition results for graphs locally like W( F4) ................ 53 3 Group theoretic applications ............................. 65 3.1 Recognizing Symn ................................... 66 3.2 Recognizing Coxeter groups . ..... 68 3.3 Outlook: Applications to Chevalley groups . ......... 75 Appendix A Computer code ............................... 80 A.1 ComputationsinSAGE .............................. 80 A.2 ComputationsinGAP ............................... 88 References ............................................ 89 Index ...............................................
    [Show full text]
  • Efficient Algorithms for Graphs with Few P-4'S
    Old Dominion University ODU Digital Commons Computer Science Faculty Publications Computer Science 2001 Efficient Algorithms for Graphs with Few P-4’s Luitpold Babel Ton Kloks Jan Kratochvíl Dieter Kratsch Kaiko Müller See next page for additional authors Follow this and additional works at: https://digitalcommons.odu.edu/computerscience_fac_pubs Part of the Computer Sciences Commons, and the Mathematics Commons Repository Citation Babel, Luitpold; Kloks, Ton; Kratochvíl, Jan; Kratsch, Dieter; Müller, Kaiko; and Olariu, Stephan, "Efficient Algorithms for Graphs with Few P-4’s" (2001). Computer Science Faculty Publications. 104. https://digitalcommons.odu.edu/computerscience_fac_pubs/104 Original Publication Citation Babel, L., Kloks, T., Kratochvil, J., Kratsch, D., Muller, H., & Olariu, S. (2001). Efficient algorithms for graphs with few P4's. Discrete Mathematics, 235(1-3), 29-51. doi:10.1016/s0012-365x(00)00258-2 This Article is brought to you for free and open access by the Computer Science at ODU Digital Commons. It has been accepted for inclusion in Computer Science Faculty Publications by an authorized administrator of ODU Digital Commons. For more information, please contact [email protected]. Authors Luitpold Babel, Ton Kloks, Jan Kratochvíl, Dieter Kratsch, Kaiko Müller, and Stephan Olariu This article is available at ODU Digital Commons: https://digitalcommons.odu.edu/computerscience_fac_pubs/104 Discrete Mathematics 235 (2001) 29–51 www.elsevier.com/locate/disc Ecient algorithms for graphs with few P4’s Luitpold Babela;∗, Ton Kloksb;1, Jan KratochvÃ.lb;2, Dieter Kratschc, Haiko Muller0 c, Stephan Olariud aZentrum Mathematik, Technische Universitat Munchen, 80290 Munchen, Germany bDIMATIA, Charles University, 118 00 Praha 1, Czech Republic cFriedrich-Schiller-Universitat Jena, Fakultat fur Mathematik und Informatik, 07740 Jena, Germany dDepartment of Computer Science, Old Dominion University, Norfolk, VA 23529, USA Abstract We show that a large variety ofNP-complete problems can be solved eciently forgraphs with ‘few’ P4’s.
    [Show full text]
  • Operator Decomposition of Graphs
    152 The International Arab Journal of Information Technology, Vol. 3, No. 2, April 2006 Operator Decomposition of Graphs Ruzayn Quaddoura Computer Science Department, Zarqa Private University, Jordan Abstract: In this paper we introduce a new form of decomposition of graphs, the (P, Q) -decomposition. We first give an optimal algorithm for finding the 1 -decomposition of a graph which is a special case of the (P, Q) -decomposition which was first introduced in [ 21 ]. We then examine the connections between the 1 -decomposition and well known forms of decomposition of graphs, namely, modular and homogeneous decomposition. The characterization of graphs totally decomposable by 1 -decomposition is also given. The last part of our paper is devoted to a generalization of the 1 - decomposition. We first show that some basic properties of modular decomposi tion can be extended in a new form of decomposition of graphs that we called operator decomposition. We introduce the notion of a (P, Q) -module, where P and Q are hereditary graph -theoretic properties, the notion of a (P, Q) -split graph and the closed here ditary class (P, Q) of graphs (P and Q are closed under the operations of join of graphs and disjoint union of graphs, respectively). On this base , we construct a special case of the operator decomposition that is called (P, Q) -decomposition. Such decompos ition is uniquely determined by an arbitrary minimal nontrivial (P, Q) -module in G. In particular, if G ( P, Q) , then G has the unique canonical (P, Q) -decomposition. Keywords: Graph decomposition, hereditary class, split graph .
    [Show full text]
  • 1.2 Graph Laplacians
    -Mm Active Flows and Networks by Aden Forrow Submitted to the Department of Mathematics in partial fulfillment of the requirements for the degree of Doctor of Philosophy at the MASSACHUSETTS INSTITUTE OF TECHNOLOGY June 2018 0 Massachusetts Institute of Technology 2018. All rights reserved. Signature redacted A u th or ................................ Department of Mathematics May 4, 2018 Signature redacted C ertified by ............................. J6rn Dunkel Assistant Professor Thesis Supervisor Accepted by ................. Signature redacted Jonathan Kelner Chairman, Department Committee on Graduate Theses MASSACHUSES INSTITUTE OF TECHNOLOGY MAY 3 0 2018 LIBRARIES ARCHIVES 2 Active Flows and Networks by Aden Forrow Submitted to the Department of Mathematics on May 4, 2018, in partial fulfillment of the requirements for the degree of Doctor of Philosophy Abstract Coherent, large scale dynamics in many nonequilibrium physical, biological, or in- formation transport networks are driven by small-scale local energy input. In the first part of this thesis, we introduce and explore two analytically tractable nonlinear models for such active flow networks, drawing motivation from recent microfluidic experiments on bacterial and other microbial suspensions. In contrast to equiparti- tion with thermal driving, we find that active friction selects discrete states with only a limited number of modes excited at distinct fixed amplitudes. When the active transport network is incompressible, these modes are cycles with constant flow; when it is compressible, they are oscillatory. As is common in such network dynamical sys- tems, the spectrum of the underlying graph Laplacian plays a key role in controlling the flow. Spectral graph theory has traditionally prioritized analyzing Laplacians of unweighted networks with specified adjacency properties.
    [Show full text]
  • Shrub-Depth and M-Partite Cographs?
    When Trees Grow Low: Shrub-depth and m-Partite Cographs? Robert Ganian1, Petr Hlinˇen´y2, Jaroslav Neˇsetˇril3, Jan Obdrˇz´alek2, and Patrice Ossona de Mendez4 1 Vienna University of Technology, Austria [email protected] 2 Faculty of Informatics, Masaryk University, Brno, Czech Republicy fhlineny,[email protected] 3 Computer Science Inst. of Charles University (IUUK), Praha, Czech Republicy;z [email protected] 4 CNRS UMR 8557, Ecole´ des Hautes Etudes´ en Sciences Sociales, Paris, Francez [email protected] Abstract. The recent increase of interest in the graph invariant called tree-depth and in its algorithmic applications leads to a natural question: Is there an analogously useful \depth" notion also for dense graphs (say; one which is stable by graph complementation)? To this end we intro- duce the notion of shrub-depth of a graph class which is related to the established notion of clique-width in a similar way as tree-depth is re- lated to tree-width. We also introduce a common extension of cographs and of classes with bounded shrub-depth | m-partite cographs, which are well-quasi-ordered by the relation \being an induced subgraph of" and therefore allow polynomial time testing of any hereditary properties. 1 Introduction In this paper, we are interested in structural graph parameters that are interme- diate between clique-width and tree-depth, sharing the nice properties of both. Clique-width, defined in [7], is the older of the two notions. In several aspects, the theory of graphs of bounded clique-width is similar to the one of bounded tree- width.
    [Show full text]
  • Defining Recursive Predicates in Graph Orders
    Logical Methods in Computer Science Vol. 14(3:21)2018, pp. 1–38 Submitted Sep. 12, 2017 https://lmcs.episciences.org/ Published Sep. 24, 2018 DEFINING RECURSIVE PREDICATES IN GRAPH ORDERS RAMANATHAN S. THINNIYAM The Institute of Mathematical Sciences, 4th Cross Street, CIT Campus, Tharamani, Chennai, Tamil Nadu 600113, India Homi Bhabha National Institute, Mumbai, India e-mail address: [email protected] Abstract. We study the first order theory of structures over graphs i.e. structures of the form (G; τ) where G is the set of all (isomorphism types of) finite undirected graphs and τ some vocabulary. We define the notion of a recursive predicate over graphs using Turing Machine recognizable string encodings of graphs. We also define the notion of an arithmetical relation over graphs(borrowed from [20]) using a total order ≤t on the set G such that (G; ≤t) is isomorphic to (N; ≤). We introduce the notion of a capable structure over graphs, which is an arithmetical structure satisfying the conditions : (1) definability of arithmetic, (2) definability of cardinality of a graph, and (3) definability of two particular graph predicates related to vertex labellings of graphs. We then show any capable structure can define every arithmetical predicate over graphs. As a corollary, any capable structure also defines every recursive graph relation. We identify capable structures which are expansions of graph orders, which are structures of the form (G; ≤) where ≤ is interpreted as a partial order. We show that the subgraph order i.e. (G; ≤s), induced subgraph order with one constant P3 i.e. (G; ≤i;P3) and an expansion of the minor order for counting edges i.e.
    [Show full text]
  • Well-Quasi-Ordering by the Induced-Minor Relation Chanun Lewchalermvongs Louisiana State University and Agricultural and Mechanical College, [email protected]
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Louisiana State University Louisiana State University LSU Digital Commons LSU Doctoral Dissertations Graduate School 2015 Well-Quasi-Ordering by the Induced-Minor Relation Chanun Lewchalermvongs Louisiana State University and Agricultural and Mechanical College, [email protected] Follow this and additional works at: https://digitalcommons.lsu.edu/gradschool_dissertations Part of the Applied Mathematics Commons Recommended Citation Lewchalermvongs, Chanun, "Well-Quasi-Ordering by the Induced-Minor Relation" (2015). LSU Doctoral Dissertations. 2224. https://digitalcommons.lsu.edu/gradschool_dissertations/2224 This Dissertation is brought to you for free and open access by the Graduate School at LSU Digital Commons. It has been accepted for inclusion in LSU Doctoral Dissertations by an authorized graduate school editor of LSU Digital Commons. For more information, please [email protected]. WELL-QUASI-ORDERING BY THE INDUCED-MINOR RELATION A Dissertation Submitted to the Graduate Faculty of the Louisiana State University and Agricultural and Mechanical College in partial fulfillment of the requirements for the degree of Doctor of Philosophy in The Department of Mathematics by Chanun Lewchalermvongs B.S., Mahidol University, 2004 M.S., Mahidol University, 2009 M.S., Louisiana State University, 2012 December 2015 Acknowledgments First and foremost I would like to thank my advisor, Professor Guoli Ding, for his incredible amount of help, support, and guidance. This work would not be possible without him. He always points me to the right direction and encourages me to move forward. I really appreciate his kindness and patience to me throughout these years.
    [Show full text]