Detecting Non-Hamiltonian Graphs by Improved Linear Programs and Graph Reductions

Total Page:16

File Type:pdf, Size:1020Kb

Detecting Non-Hamiltonian Graphs by Improved Linear Programs and Graph Reductions Detecting Non-Hamiltonian Graphs by Improved Linear Programs and Graph Reductions A thesis submitted for the degree of Doctor of Philosophy Kieran Clancy B.Sc. (Hons) School of Computer Science, Engineering & Mathematics Faculty of Science & Engineering Flinders University May 2017 To my mother Gina for her immeasurable support. Contents Contentsi List of Tables iv List of Figures vii Summaryx Declaration xiii Acknowledgements xiv Glossary of terms xviii Archive of problem sets and algorithms xx 1 Introduction and background1 1.1 Hamiltonian cycle problem....................1 1.2 Graph theory...........................6 1.2.1 Hamiltonian cycle problem for cubic graphs...... 11 1.3 Linear programming relaxations................. 12 2 Identifying non-Hamiltonian graphs by linear programming 15 2.1 Existing models to solve TSP and HCP............. 17 i Contents ii 2.1.1 Subtour elimination model and MCF.......... 17 2.1.2 Tightened multi-commodity flow model......... 21 2.1.3 SST model......................... 23 2.1.4 The Base Model...................... 25 2.2 Comparisons of LP models.................... 28 2.2.1 Adapting TSP models to solve HCP.......... 29 2.2.2 Results of LP models on HCP instances........ 32 2.2.3 Adapting the Base Model to solve TSP......... 34 2.2.4 Generating TSP instances based on cubic graphs... 37 2.2.5 Results of LP models on TSP instances......... 42 2.2.6 A conjecture on the strength of the Base Model.... 44 2.3 Classifications of difficult cubic graphs............. 51 2.3.1 Vertex and edge connectivity.............. 51 2.3.2 Graph toughness..................... 55 2.4 Concluding remarks on the Base Model............. 62 3 Hamiltonicity-preserving graph reductions 64 3.1 Graph reductions based on subgraphs.............. 70 3.2 Graph reductions based on Hamiltonian and non-Hamiltonian edges................................ 74 3.3 Edge orbits and their classification............... 79 3.4 Graph reductions based on edge orbits............. 92 3.5 Graph reduction algorithm.................... 98 3.6 Results of reduction algorithm on cubic graphs......... 110 4 Extending the Base Model 120 4.1 Merging SST with the Base Model............... 125 Contents iii 4.1.1 Base-SST model with multiple starting vertices.... 127 4.1.2 Extended Base-SST model................ 130 4.2 Constraints involving forced edges................ 142 4.3 Constraints based on 3-cuts................... 149 4.4 Constraints based on an eigenvalue of Hamiltonian permuta- tion matrices........................... 152 4.5 Results of combined extensions................. 162 4.6 Detecting non-Hamiltonicity of graphs by using LP models on their subgraphs.......................... 173 5 Conclusions and future work 176 5.1 Summary of results........................ 177 5.2 Future work arising from Chapter 2............... 178 5.3 Future work arising from Chapter 3............... 179 5.4 Future work arising from Chapter 4............... 179 Appendix A Non-Hamiltonian non-bridge cubic graph sets 182 A.1 NHNB20 GENREG IDs..................... 183 A.2 NHNB20PR edge lists...................... 185 Appendix B ATSP problem sets 189 Appendix C Implementation of graph reduction algorithm 204 Bibliography 220 List of Tables 2.5 Results of MCF, MCF+, SST and the Base Model on non- Hamiltonian graphs up to order 20............... 33 2.6 Results of MCF, MCF+, SST and the Base Model on NHNB20 34 2.9 Results of MCF, MCF+, SST and the Base Model on ATSP16A 43 2.10 Results of MCF, MCF+, SST and the Base Model on ATSP16AC 43 2.13 Hamiltonicity of connected 10-vertex graphs up to isomor- phism by vertex connectivity................... 53 2.14 The numbers of non-Hamiltonian and Hamiltonian cubic graphs up to order 20........................... 54 2.15 The percentage of cubic graphs up to order 20 that are Hamil- tonian............................... 54 2.16 Contingency table for cubic graphs up to order 20 by Hamil- tonicity and connectivity..................... 55 2.17 Contingency table for non-Hamiltonian cubic graphs up to order 20 by Base Model feasibility and connectivity...... 55 2.19 Hamiltonian and non-Hamiltonian cubic graphs up to order 20 by toughness.......................... 59 2.20 Base Model feasibility for non-Hamiltonian cubic graphs up to order 20 by toughness...................... 60 iv List of Tables v 3.7 Number of asymmetric and non-asymmetric cubic graphs by order up to 20 vertices...................... 81 3.12 Percentage of edges in each type of orbit, as classified by The- orem 3.36, for non-asymmetric cubic graphs up to order 20.. 90 3.18 Automorphism group size of cubic graphs of order between 6 and 20 with at least one triangle................. 100 3.19 Cubic graphs up to order 18 where multiple graph reductions of the types star, pinwheel, cycle and cut were simultaneously applicable............................. 102 3.20 The number of comparisons made between each pair of reduc- tions................................ 102 3.21 The number of comparisons between reductions where one re- duction led to a graph with fewer edges than the other reduction103 3.24 Number of cubic graphs up to order 20 that are reducible by Algorithm 3.1........................... 110 3.25 Number of Hamiltonian cubic graphs up to order 20 that are reducible by Algorithm 3.1.................... 111 3.26 Number of graphs in NHNB20 that are reducible by Algo- rithm 3.1.............................. 111 3.27 Base Model feasibility of reducible instances of NHNB20, be- fore and after reduction...................... 112 3.28 Base Model feasibility after reduction versus Base Model fea- sibility before reduction, for instances of NHNB20 that are partially reduced by Algorithm 3.1............... 113 4.1 Results of the Base Model on NHNB20 and NHNB20PR... 124 4.2 Results of the Base Model on ATSP16A and ATSP16AC... 124 4.3 Results of Base-SST on NHNB20 and NHNB20PR....... 127 List of Tables vi 4.4 Results of Base-SST on ATSP16A and ATSP16AC...... 128 4.5 Results of Base-SST-k on ATSP16A and ATSP16AC..... 130 4.7 Results of Base-SST-k-Ext on ATSP16A and ATSP16AC... 138 4.8 Gaps for each of the Base Model, Base-SST, Base-SST-k and Base-SST-k-Ext on the four instances from ATSP16A for which SST outperforms the Base Model................ 139 4.12 Results of Base-Forced on NHNB20 and NHNB20PR..... 148 4.13 Results of Base-Forced on ATSP16AC............. 148 4.14 Results of Base-3-Cut on NHNB20 and NHNB20PR...... 151 4.15 Results of Base-3-Cut on ATSP16AC.............. 152 4.16 Results of Base-Spectral on NHNB20 and NHNB20PR.... 159 4.17 Results of Base-Spectral on ATSP16A and ATSP16AC.... 160 4.19 Results of Base-Combined on NHNB20 and NHNB20PR... 166 4.21 Results of Base-Combined on ATSP16A and ATSP16AC... 167 4.22 A comparison of Base-Combined with the other extended mod- els on ATSP16A and ATSP16AC................ 168 4.23 Gaps for various models on ATSP16AC instance 31...... 168 4.27 Results of the Base Model and Base-Combined using the sub- graph method on NHNB20 and NHNB20PR.......... 175 5.1 Successive results of the approach described in Section 5.1 on NHNB20.............................. 178 List of Figures 1.1 An example of a Hamiltonian cycle in the 20 vertex dodeca- hedral cubic graph........................2 1.2 The first of Euler's solutions to the knight's tour problem...3 1.3 The Petersen graph and its corresponding adjacency matrix.8 2.1 Visualisation of the feasible region for a relaxed model of HCP 16 2.2 Example of subtours in a TSP instance............. 18 2.3 Example of a subtour elimination constraint.......... 19 2.4 Visualisation of the feasible region after adding additional con- straints............................... 22 2.7 The smallest instance of NHNB20 that induces infeasibility in MCF, MCF+, SST and the Base Model............ 34 2.8 Base Model gaps for randomly generated TSP instances.... 41 2.11 Plot of gaps for the Base Model against gaps for SST..... 45 2.12 The smallest cubic graphs having connectivity 1, 2, and 3... 52 2.18 Selected examples of tough and non-tough cubic graphs.... 58 2.21 The smallest tough cubic graph that induces infeasibility in MCF, MCF+, SST and the Base Model............ 62 3.1 Trivially Hamiltonian and trivially non-Hamiltonian graphs.. 66 3.2 The contraction of a triangle in a graph............. 72 vii List of Figures viii 3.3 A diamond before and after its reduction with diamond .... 74 3.4 A graph with known Hamiltonian edges before and after its reduction with forced ....................... 77 3.5 A graph with a path of degree-2 vertices before and after its reduction with path ....................... 78 3.6 A 6-vertex graph with automorphism group of order 8..... 79 3.8 The Frucht graph, one of the five minimal asymmetric cubic graphs............................... 81 3.9 Vertex and edge orbits for the graph shown in Figure 3.6... 83 3.10 An example of a graph and its line graph............ 85 3.11 Example showing five types of edge orbits in a non-Hamiltonian cubic graph............................ 91 3.13 Examples of incompatible edge sets............... 93 3.14 A graph with known redundant edges before and after its re- duction with star ......................... 95 3.15 A graph with a known Hamiltonian edge and known redundant edges, before and after its reduction with pinwheel ....... 96 3.16 A graph with known redundant edges in a short cycle, before and after its reduction with cycle ................ 97 3.17 A graph with known redundant edges forming a minimal cut set of odd size, before and after its reduction with cut .... 98 3.22 Flowchart of Algorithm 3.1.................... 105 3.23 Flowchart of Algorithms 3.2 to 3.4............... 106 4.6 An example of two directed Hamiltonian cycles showing both possible vertex orderings of four vertices...........
Recommended publications
  • Graph Automorphism Groups
    Graph Automorphism Groups Robert A. Beeler, Ph.D. East Tennessee State University February 23, 2018 Robert A. Beeler, Ph.D. (East Tennessee State University)Graph Automorphism Groups February 23, 2018 1 / 1 What is a graph? A graph G =(V , E) is a set of vertices, V , together with as set of edges, E. For our purposes, each edge will be an unordered pair of distinct vertices. a e b d c V (G)= {a, b, c, d, e} E(G)= {ab, ae, bc, be, cd, de} Robert A. Beeler, Ph.D. (East Tennessee State University)Graph Automorphism Groups February 23, 2018 2 / 1 Graph Automorphisms A graph automorphism is simply an isomorphism from a graph to itself. In other words, an automorphism on a graph G is a bijection φ : V (G) → V (G) such that uv ∈ E(G) if and only if φ(u)φ(v) ∈ E(G). Note that graph automorphisms preserve adjacency. In layman terms, a graph automorphism is a symmetry of the graph. Robert A. Beeler, Ph.D. (East Tennessee State University)Graph Automorphism Groups February 23, 2018 3 / 1 An Example Consider the following graph: a d b c Robert A. Beeler, Ph.D. (East Tennessee State University)Graph Automorphism Groups February 23, 2018 4 / 1 An Example (Part 2) One automorphism simply maps every vertex to itself. This is the identity automorphism. a a d b d b c 7→ c e =(a)(b)(c)(d) Robert A. Beeler, Ph.D. (East Tennessee State University)Graph Automorphism Groups February 23, 2018 5 / 1 An Example (Part 3) One automorphism switches vertices a and c.
    [Show full text]
  • An Introduction to Algebraic Graph Theory
    An Introduction to Algebraic Graph Theory Cesar O. Aguilar Department of Mathematics State University of New York at Geneseo Last Update: March 25, 2021 Contents 1 Graphs 1 1.1 What is a graph? ......................... 1 1.1.1 Exercises .......................... 3 1.2 The rudiments of graph theory .................. 4 1.2.1 Exercises .......................... 10 1.3 Permutations ........................... 13 1.3.1 Exercises .......................... 19 1.4 Graph isomorphisms ....................... 21 1.4.1 Exercises .......................... 30 1.5 Special graphs and graph operations .............. 32 1.5.1 Exercises .......................... 37 1.6 Trees ................................ 41 1.6.1 Exercises .......................... 45 2 The Adjacency Matrix 47 2.1 The Adjacency Matrix ...................... 48 2.1.1 Exercises .......................... 53 2.2 The coefficients and roots of a polynomial ........... 55 2.2.1 Exercises .......................... 62 2.3 The characteristic polynomial and spectrum of a graph .... 63 2.3.1 Exercises .......................... 70 2.4 Cospectral graphs ......................... 73 2.4.1 Exercises .......................... 84 3 2.5 Bipartite Graphs ......................... 84 3 Graph Colorings 89 3.1 The basics ............................. 89 3.2 Bounds on the chromatic number ................ 91 3.3 The Chromatic Polynomial .................... 98 3.3.1 Exercises ..........................108 4 Laplacian Matrices 111 4.1 The Laplacian and Signless Laplacian Matrices .........111 4.1.1
    [Show full text]
  • Discriminating Power of Centrality Measures (Working Paper)
    Discriminating Power of Centrality Measures (working paper) M. Puck Rombach∗ Mason A. Porterz July 27, 2018 Abstract The calculation of centrality measures is common practice in the study of networks, as they attempt to quantify the importance of individual vertices, edges, or other components. Different centralities attempt to measure importance in different ways. In this paper, we examine a conjecture posed by E. Estrada regarding the ability of several measures to distinguish the vertices of networks. Estrada conjectured [9, 12] that if all vertices of a graph have the same subgraph centrality, then all vertices must also have the same degree, eigenvector, closeness, and betweenness centralities. We provide a counterexample for the latter two centrality measures and propose a revised conjecture. 1 Introduction Many problems in the study of networks focus on flows along the edges of a network [20]. Although flows such as the transportation of physical objects or the spread of disease are conservative, the flow of information tends to diminish as it moves through a network, and the influence of one vertex on another decreases with increasing network distance between them [17]. Such considerations have sparked an interest in network communicability, in which a arXiv:1305.3146v1 [cs.SI] 14 May 2013 perturbation of one vertex is felt by the other vertices with differing intensities [10]. These intensities depend on all paths between a pair of vertices, though longer paths have smaller influence. This idea is expressed in a general communicability function 1 n X X k ci = ck(A )ij ; (1) k=0 j=1 ∗Oxford Centre for Industrial and Applied Mathematics, Mathematical Institute, University of Oxford, [email protected] yOxford Centre for Industrial and Applied Mathematics, Mathematical Institute and CABDyN Complex- ity Centre, University of Oxford, [email protected] 1 where A is the adjacency matrix|whose entries are 1 if vertices i and j are connected to each other and 0 if they are not|and n is the total number of vertices in the network.
    [Show full text]
  • Package 'Igraph'
    Package ‘igraph’ February 28, 2013 Version 0.6.5-1 Date 2013-02-27 Title Network analysis and visualization Author See AUTHORS file. Maintainer Gabor Csardi <[email protected]> Description Routines for simple graphs and network analysis. igraph can handle large graphs very well and provides functions for generating random and regular graphs, graph visualization,centrality indices and much more. Depends stats Imports Matrix Suggests igraphdata, stats4, rgl, tcltk, graph, Matrix, ape, XML,jpeg, png License GPL (>= 2) URL http://igraph.sourceforge.net SystemRequirements gmp, libxml2 NeedsCompilation yes Repository CRAN Date/Publication 2013-02-28 07:57:40 R topics documented: igraph-package . .5 aging.prefatt.game . .8 alpha.centrality . 10 arpack . 11 articulation.points . 15 as.directed . 16 1 2 R topics documented: as.igraph . 18 assortativity . 19 attributes . 21 autocurve.edges . 23 barabasi.game . 24 betweenness . 26 biconnected.components . 28 bipartite.mapping . 29 bipartite.projection . 31 bonpow . 32 canonical.permutation . 34 centralization . 36 cliques . 39 closeness . 40 clusters . 42 cocitation . 43 cohesive.blocks . 44 Combining attributes . 48 communities . 51 community.to.membership . 55 compare.communities . 56 components . 57 constraint . 58 contract.vertices . 59 conversion . 60 conversion between igraph and graphNEL graphs . 62 convex.hull . 63 decompose.graph . 64 degree . 65 degree.sequence.game . 66 dendPlot . 67 dendPlot.communities . 68 dendPlot.igraphHRG . 70 diameter . 72 dominator.tree . 73 Drawing graphs . 74 dyad.census . 80 eccentricity . 81 edge.betweenness.community . 82 edge.connectivity . 84 erdos.renyi.game . 86 evcent . 87 fastgreedy.community . 89 forest.fire.game . 90 get.adjlist . 92 get.edge.ids . 93 get.incidence . 94 get.stochastic .
    [Show full text]
  • Characterization of Perfect Matching Transitive Graphs
    Electronic Journal of Graph Theory and Applications 6 (2) (2018), 362–370 Characterization of perfect matching transitive graphs Ju Zhou Department of Mathematics Kutztown University of Pennsylvania Kutztown, PA 19530, USA [email protected] Abstract A graph G is perfect matching transitive, shortly PM-transitive, if for any two perfect matchings M and N of G, there is an automorphism f : V (G) 7! V (G) such that fe(M) = N, where fe(uv) = f(u)f(v). In this paper, the author proposed the definition of PM-transitive, verified PM-transitivity of some symmetric graphs, constructed several families of PM-transitive graphs which are neither vertex-transitive nor edge-transitive, and discussed PM-transitivity of generalized Petersen graphs. Keywords: vertex-transitive, edge-transitive, symmetric, PM-transitive Mathematics Subject Classification : 68R10, 05C60 DOI: 10.5614/ejgta.2018.6.2.15 1. Introduction An automorphism of a graph is a form of symmetry in which the graph is mapped onto it- self while preserving the edge-vertex connectivity. Formally, an automorphism of a graph G = (V (G);E(G)) is a permutation f of the vertex set V (G), such that the pair of vertices uv is an edge of G if and only if f(u)f(v) is also an edge of G. That is, it is a graph isomorphism from G to itself. Every graph automorphism f induces a map fe : E(G) 7! E(G) such that fe(uv) = f(u)f(v). For any vertex set X ⊆ V (G) and edge set M ⊆ E(G), denote f(X) = ff(v): v 2 Xg and Received: 20 March 2018, Revised: 2 September 2018, Accepted: 27 September 2018.
    [Show full text]
  • (V, E ) Be a Graph and Let F Be a Function That Assigns to Each Vertex of F:V(G) → {1,2,.....K} Such That for V to a Set of Values from the Set {1,2
    BALANCED DOMINATION NUMBER OF SPECIAL GRAPHS 1S.CHRISTILDA and 2P.NAMASIVAYAM 1Department of Mathematics, Sadakathullah Appa College, Tirunelveli – 627011, Tamil Nadu, INDIA. E-mail: [email protected] 2PG and Research Department of Mathematics, The MDT Hindu College, Tirunelveli – 627010, Tamil Nadu, INDIA. ABSTRACT INTRODUCTION Let G= (V, E) be a graph. A Subset D of V is called a dominating Let G = (V, E ) be a graph and let f set of G if every vertex in V-D is be a function that assigns to each adjacent to atleast one vertex in D. The Domination number γ (G) of G is the vertex of V to a set of values from cardinality of the minimum dominating set of G. Let the set {1,2,.......k} that is, G = (V, E ) be a graph and let f be a function that assigns to each vertex of f:V(G) → {1,2,.....k} such that for V to a set of values from the set {1,2,.......k} that is, f:V(G) → each u,v ϵ V(G), f(u)≠f(v), if u is {1,2,.....k} such that for each u,v V(G), f(u) ≠ f(v), if u is adjacent to v in adjacent to v in G. Then the set D G. Then the dominating set D V (G) V (G) is called a balanced is called a balanced dominating set if In this dominating set if paper, we investigate the balanced domination number for some special graphs. Keywords: balanced, domination, The special graph balanced domination number Mathematics subject classification: 05C69 is the minimum cardinality of the balanced weak balanced dominating set dominating set.
    [Show full text]
  • Fixing Numbers of Graphs and Groups Courtney Gibbons Hamilton College, [email protected]
    Hamilton College Hamilton Digital Commons Articles Works by Type 2009 Fixing Numbers of Graphs and Groups Courtney Gibbons Hamilton College, [email protected] Joshua D. Laison Follow this and additional works at: https://digitalcommons.hamilton.edu/articles Part of the Algebra Commons, and the Discrete Mathematics and Combinatorics Commons This document is the publisher's version of an article published in: The Electronic Journal of Combinatorics., vol. 16, no. 1, (2009): #R39 1-13. http://www.combinatorics.org/ojs/index.php/eljc/article/ view/v16i1r39 Citation Information Gibbons, Courtney and Laison, Joshua D., "Fixing Numbers of Graphs and Groups" (2009). Hamilton Digital Commons. https://digitalcommons.hamilton.edu/articles/59 This work is made available by Hamilton College for educational and research purposes under a Creative Commons BY-NC-ND 4.0 license. For more information, visit http://digitalcommons.hamilton.edu/about.html or contact [email protected]. Fixing Numbers of Graphs and Groups Courtney R. Gibbons Joshua D. Laison University of Nebraska – Lincoln Mathematics Department Department of Mathematics Willamette University 228 Avery Hall 900 State St. PO Box 880130 Salem, OR 97301 Lincoln, NE 68588-0130 [email protected] [email protected] Submitted: Sep 11, 2006; Accepted: Mar 12, 2009; Published: Mar 20, 2009 Mathematics Subject Classification: 05C25 Abstract The fixing number of a graph G is the smallest cardinality of a set of vertices S such that only the trivial automorphism of G fixes every vertex in S. The fixing set of a group Γ is the set of all fixing numbers of finite graphs with automorphism group Γ.
    [Show full text]
  • Constructions for Cubic Graphs with Large Girth
    Constructions for cubic graphs with large girth Norman Biggs Department of Mathematics London School of Economics Houghton St., London WC2A 2AE, UK [email protected] Submitted: October 11, 1997; Accepted: August 31, 1998 Abstract The aim of this paper is to give a coherent account of the problem of constructing cubic graphs with large girth. There is a well-defined integer µ0(g), the smallest number of vertices for which a cubic graph with girth at least g exists, and furthermore, the minimum value µ0(g) is attained by a graph whose girth is exactly g.Thevaluesofµ0(g)when 3 ≤ g ≤ 8 have been known for over thirty years. For these values of g each minimal graph is unique and, apart from the case g =7, a simple lower bound is attained. This paper is mainly concerned with what happens when g ≥ 9, where the situation is quite different. Here it is known that the simple lower bound is attained if and only if g =12. A number of techniques are described, with emphasis on the construction of families of graphs {Gi} for which the number of vertices ni and the girth gi are such that cgi ni ≤ 2 for some finite constant c. The optimum value of c is known to lie between 0.5 and 0.75. At the end of the paper there is a selection of open questions, several of them containing suggestions which might lead to improvements in the known results. There are also some historical notes on the current-best graphs for girth up to 36.
    [Show full text]
  • Groups, Graphs, and Symmetry-Breaking
    Groups, Graphs, and Symmetry-Breaking Karen S. Potanka Thesis submitted to the Faculty of the Virginia Polytechnic Institute and State University in partial fulfillment of the requirements for the degree of Master of Science in Mathematics Dr. Ezra Brown, Chair Dr. Joseph Ball Dr. Monte Boisen April 16, 1998 Blacksburg, Virginia Keywords: Petersen Graph, Symmetry-Breaking, Graph Theory Copyright 1998, Karen S. Potanka Groups, Graphs, and Symmetry-Breaking Karen S. Potanka (ABSTRACT) A labeling of a graph G is said to be r-distinguishing if no automorphism of G preserves all of the vertex labels. The smallest such number r for which there is an r-distinguishing labeling on G is called the distinguishing number of G.Thedistinguishing set of a group Γ, D(Γ), is the set of distinguishing numbers of graphs G in which Aut(G) ∼= Γ. It is shown that D(Γ) is non-empty for any finite group Γ. In particular, D(Dn) is found where Dn is the dihedral group with 2n elements. From there, the generalized Petersen graphs, GP (n, k), are defined and the automorphism groups and distinguishing numbers of such graphs are given. Contents 1 Introduction 1 2 Representation of Graphs 2 3 Automorphism Groups and Group Actions 3 3.1Automorphisms.................................. 3 3.2GroupActions................................... 4 4 Distinguishing Number of a Graph 7 5 Groups and Graphs 10 5.1CayleyGraphs.................................. 10 5.2Frucht’sConstruction............................... 11 6 Distinguishing the Orbits of a Graph 14 6.1DistinguishingtheOrbits............................. 16 6.2SizeoftheOrbit................................. 17 6.3NumberofOrbits................................. 17 7 Dihedral Groups 18 7.1 Subgroups of Dn ................................. 18 7.1.1 Types of Subgroups of Dn .......................
    [Show full text]
  • Results on the Inverse Domination Number of Some Class of Graphs
    International Journal of Mechanical Engineering and Technology (IJMET) Volume 9, Issue 1, January 2018, pp. 995–1004 Article ID: IJMET_09_01_106 Available online at http://iaeme.com/Home/issue/IJMET?Volume=9&Issue=1 ISSN Print: 0976-6340 and ISSN Online: 0976-6359 © IAEME Publication Scopus Indexed RESULTS ON THE INVERSE DOMINATION NUMBER OF SOME CLASS OF GRAPHS Jayasree T G Department of Mathematics, Adi Shankara Institute of Engineering and Technology, Kerala, India Radha R Iyer Department of Mathematics, Amrita School of Engineering, Coimbatore, Amrita Vishwa Vidyapeetham, Amrita University, India ABSTRACT A set D of vertices in a graph G(V, E) is a dominating set of G, if every vertex of V not in D is adjacent to at least one vertex in D. Let D be a minimum dominating set of G. If V – D contains a dominating set say D’ is called an inverse dominating set with respect to D. The inverse domination number γ’(G) of G is the order of a smallest inverse dominating set of G. In this paper we establish inverse domination number for some families of graphs. Keywords: Dominating sets, Domination number, Inverse Domination number. Cite this Article: Jayasree T G and Radha R Iyer, Results on the Inverse Domination Number of Some Class of Graphs, International Journal of Mechanical Engineering and Technology 9(1), 2018. pp. 995–1004. http://iaeme.com/Home/issue/IJMET?Volume=9&Issue=1 1. INTRODUCTION The graphs considered here are simple, finite, non-trivial, undirected graphs without isolated vertices. The study of domination in graphs was initiated by Ore[13] and Berge.
    [Show full text]
  • Arxiv:1807.04372V1 [Math.CO] 11 Jul 2018 Fixing Numbers of Graphs and Groups
    Fixing Numbers of Graphs and Groups Courtney R. Gibbons Joshua D. Laison University of Nebraska – Lincoln Mathematics Department Department of Mathematics Willamette University 228 Avery Hall 900 State St. PO Box 880130 Salem, OR 97301 Lincoln, NE 68588-0130 [email protected] [email protected] Submitted: September 2006; Accepted: March 2009 Mathematics Subject Classification: 05C25 Abstract The fixing number of a graph G is the smallest cardinality of a set of vertices S such that only the trivial automorphism of G fixes every vertex in S. The fixing set of a group Γ is the set of all fixing numbers of finite graphs with automorphism group Γ. Several authors have studied the distinguishing number of a graph, the smallest number of labels needed to label G so that the automorphism group of the labeled graph is trivial. The fixing number can be thought of as a variation of the distinguishing number in which every label may be used only once, and not every vertex need be labeled. We characterize the fixing sets of finite abelian groups, and investigate the fixing sets of symmetric groups. 1 Introduction In this paper we investigate breaking the symmetries of a finite graph G by labeling its vertices. There are two standard techniques to do this. The first is to label all arXiv:1807.04372v1 [math.CO] 11 Jul 2018 of the vertices of G with k distinct labels. A labeling is distinguishing if no non- trivial automorphism of G preserves the vertex labels. The distinguishing number of G is the minimum number of labels used in any distinguishing labeling [1, 13].
    [Show full text]
  • A Spectral Assignment Approach for the Graph Isomorphism Problem
    A Spectral Assignment Approach for the Graph Isomorphism Problem Stefan Klus1 and Tuhin Sahai2 1Department of Mathematics and Computer Science, Freie Universit¨atBerlin, Germany 2United Technologies Research Center, Berkeley, CA, USA Abstract In this paper, we propose algorithms for the graph isomorphism (GI) problem that are based on the eigendecompositions of the adjacency matrices. The eigenvalues of isomorphic graphs are identical. However, two graphs GA and GB can be isospectral but non-isomorphic. We first construct a graph isomorphism testing algorithm for friendly graphs and then extend it to unambiguous graphs. We show that isomorphisms can be detected by solving a linear assignment problem. If the graphs possess repeated eigenvalues, which typically correspond to graph symmetries, finding isomorphisms is much harder. By repeatedly perturbing the adjacency matrices and by using properties of eigenpolytopes, it is possible to break symmetries of the graphs and iteratively assign vertices of GA to vertices of GB, provided that an admissible assignment exists. This heuristic approach can be used to construct a permutation which transforms GA into GB if the graphs are isomorphic. The methods will be illustrated with several guiding examples. 1 Introduction We consider the problem of determining whether two undirected weighted graphs are iso- morphic using spectral information. Efficient algorithms for the solution of the graph iso- morphism or graph matching problem are required in a wide variety of different areas such as pattern recognition, object detection, image indexing, face recognition, and fingerprint analysis. Furthermore, novel applications such as the analysis of neural networks and social networks require matching of graphs with millions or even billions of vertices [1].
    [Show full text]