Graph Algorithms Graph Algorithms a Brief Introduction 3 References 高晓沨 ((( Xiaofeng Gao )))

Total Page:16

File Type:pdf, Size:1020Kb

Graph Algorithms Graph Algorithms a Brief Introduction 3 References 高晓沨 ((( Xiaofeng Gao ))) 目录 1 Graph and Its Applications 2 Introduction to Graph Algorithms Graph Algorithms A Brief Introduction 3 References 高晓沨 ((( Xiaofeng Gao ))) Department of Computer Science Shanghai Jiao Tong Univ. 2015/5/7 Algorithm--Xiaofeng Gao 2 Konigsberg Once upon a time there was a city called Konigsberg in Prussia The capital of East Prussia until 1945 GRAPH AND ITS APPLICATIONS Definitions and Applications Centre of learning for centuries, being home to Goldbach, Hilbert, Kant … 2015/5/7 Algorithm--Xiaofeng Gao 3 2015/5/7 Algorithm--Xiaofeng Gao 4 Position of Konigsberg Seven Bridges Pregel river is passing through Konigsberg It separated the city into two mainland area and two islands. There are seven bridges connecting each area. 2015/5/7 Algorithm--Xiaofeng Gao 5 2015/5/7 Algorithm--Xiaofeng Gao 6 Seven Bridge Problem Euler’s Solution A Tour Question: Leonhard Euler Solved this Can we wander around the city, crossing problem in 1736 each bridge once and only once? Published the paper “The Seven Bridges of Konigsbery” Is there a solution? The first negative solution The beginning of Graph Theory 2015/5/7 Algorithm--Xiaofeng Gao 7 2015/5/7 Algorithm--Xiaofeng Gao 8 Representing a Graph More Examples Undirected Graph: Train Maps G=(V, E) V: vertex E: edges Directed Graph: G=(V, A) V: vertex A: arcs 2015/5/7 Algorithm--Xiaofeng Gao 9 2015/5/7 Algorithm--Xiaofeng Gao 10 More Examples (2) More Examples (3) Chemical Models 2015/5/7 Algorithm--Xiaofeng Gao 11 2015/5/7 Algorithm--Xiaofeng Gao 12 More Examples (4) More Examples (5) Family/Genealogy Tree Airline Traffic 2015/5/7 Algorithm--Xiaofeng Gao 13 2015/5/7 Algorithm--Xiaofeng Gao 14 Icosian Game Icosian Game In 1859, Sir William Rowan Hamilton Examples developed the Icosian Game. Traverse the edges of an dodecahedron, i.e., a path such that every vertex is visited a single time, no edge is visited twice, and the ending point is the same as the starting point. Also refer as Hamiltonian Game . 3D3D3D-3D ---DemoDemo http://mathworld.wolfram.com/IcosianGame.html 2015/5/7 Algorithm--Xiaofeng Gao 15 2015/5/7 Algorithm--Xiaofeng Gao 16 Four Color Theorem Four Color Theorem The four color theorem was stated, but not The theorem asserts that four colors are proved, in 1853 by Francis Guthrie. enough to color any geographical map in such a way that no neighboring two countries are of the same color. 2015/5/7 Algorithm--Xiaofeng Gao 17 2015/5/7 Algorithm--Xiaofeng Gao 18 Snark Graph Petersen Family Each point has degree 3 Y-Δ Strong connectivity (breaking any three edges will not violating the connectivity of the graph) Single Star Snark Double Star Snark (Petersen Graph) http://en.wikipedia.org/wiki/Petersen_graph 2015/5/7 Algorithm--Xiaofeng Gao 19 2015/5/7 Algorithm--Xiaofeng Gao 20 Snark Family Well-Known Results Complete Graph Kn Bipartite Graph Km,n Star K1,n K r-Partite Graph K r(m) 1,7 Subgraph H⊆⊆⊆G Spanning/Induced Subgraph Handshaking Theorem ∑ d(v) = 2 E ∈Vv K4(3) http://en.wikipedia.org/wiki/Snark_(graph_theory) 2015/5/7 Algorithm--Xiaofeng Gao 21 2015/5/7 Algorithm--Xiaofeng Gao 22 Algorithms on Graphs Elementary Graph Algorithms Breadth-First Search Depth-First Search Minimum Spanning Tree Shortest Path Problem Single-Source Shortest Path INTRODUCTION TO GRAPH ALGORITHMS All-Pairs Shortest Path Three Categories Maximum Flow Max-Flow vs Min-Cut Applications 2015/5/7 Algorithm--Xiaofeng Gao 23 2015/5/7 Algorithm--Xiaofeng Gao 24 Breadth-First Search Depth-First Search Basic Strategy Basic Strategy visit and inspect a node Starts at arbitrary root of a graph Explores as far as possible gain access to visit the along each branch before nodes that neighbor the backtracking currently visited node Applications and Theories Applications and Theories Finding (strong) connected components Find nodes within one connected component Topological sorting Find shortest path between two nodes u and v Solving mazes puzzles with only one solution Ford-Fulkerson method for computing the parenthesis theorem maximum flow in a flow network 2015/5/7 Algorithm--Xiaofeng Gao 25 2015/5/7 Algorithm--Xiaofeng Gao 26 Minimum Spanning Tree Single-Source Shortest Path Classical Algorithms Dijkstra’s Algorithm Prim: maintain an optimal subtree Greedy Approach Kruskal: maintain min-weight acyclic edge set Graph with positive weights Reverse-Delete: circle-deletion Borüvka Algorithm Bellman-Ford Algorithm Fundamental Results Dynamic Programming All greedy Approach with exchange property Graph with negative weights (without Correctness proof: cycle/cut property negative-cycle) Efficiency: time complexity heap 2015/5/7 Algorithm--Xiaofeng Gao 27 2015/5/7 Algorithm--Xiaofeng Gao 28 All-Pair Shortest Path Maximum Flow Problem Basic Dynamic Programming Maximum Flow and Minimum Cut Matrix multiplication Max-Flow Min-Cut Theorem: The value of the Time Complexity: Θ(n3 lg n). max flow is equal to the value of the min cut Floyd-Warshall algorithm Ford-Fulkerson Algorithm Also dynamic programming, but faster Find s-t flow of maximum value Time Complexity: Θ(n3) Augmenting Path Algorithm Johnson ’s algorithm Augmenting path theorem. Flow f is a max flow For sparse graph iff there are no augmenting paths Time Complexity: O(VE + V2 lg V). 2015/5/7 Algorithm--Xiaofeng Gao 29 2015/5/7 Algorithm--Xiaofeng Gao 30 References (1) Title: Algorithms Author : S. Dasgupta, C. Papadimitriou, U. Vazirani REFERENCES Publisher: McGraw-Hill, 2007. Berkeley, Princeton, Cornell, MIT 2015/5/7 Algorithm--Xiaofeng Gao 31 2015/5/7 Algorithm--Xiaofeng Gao 32 Reference (2) Reference (3) Title: Algorithms Author : Robert Sedgewick, Title: Algorithm Design Kevin Wayne Author : J. Kleinberg Publisher: Addison-Wesley E. Tardos Professional, 2011 Publisher: Addison Wesley, Edition: 4th Edition 2005. (First Edition was published in 1983) 2015/5/7 Algorithm--Xiaofeng Gao 33 2015/5/7 Algorithm--Xiaofeng Gao 34 Reference (4) Title: Introduction to Algorithms Author : T. Cormen, C. Leiserson, R. Rivest, C. Stein Publisher: The MIT Press, 2009 ISBN-10: 0262033844 ISBN-13: 978-0262033848 Edition: Third Edition Xiaofeng Gao (First Edition was published in 1990) 2015/5/7 Algorithm--Xiaofeng Gao 35.
Recommended publications
  • A Brief History of Edge-Colorings — with Personal Reminiscences
    Discrete Mathematics Letters Discrete Math. Lett. 6 (2021) 38–46 www.dmlett.com DOI: 10.47443/dml.2021.s105 Review Article A brief history of edge-colorings – with personal reminiscences∗ Bjarne Toft1;y, Robin Wilson2;3 1Department of Mathematics and Computer Science, University of Southern Denmark, Odense, Denmark 2Department of Mathematics and Statistics, Open University, Walton Hall, Milton Keynes, UK 3Department of Mathematics, London School of Economics and Political Science, London, UK (Received: 9 June 2020. Accepted: 27 June 2020. Published online: 11 March 2021.) c 2021 the authors. This is an open access article under the CC BY (International 4.0) license (www.creativecommons.org/licenses/by/4.0/). Abstract In this article we survey some important milestones in the history of edge-colorings of graphs, from the earliest contributions of Peter Guthrie Tait and Denes´ Konig¨ to very recent work. Keywords: edge-coloring; graph theory history; Frank Harary. 2020 Mathematics Subject Classification: 01A60, 05-03, 05C15. 1. Introduction We begin with some basic remarks. If G is a graph, then its chromatic index or edge-chromatic number χ0(G) is the smallest number of colors needed to color its edges so that adjacent edges (those with a vertex in common) are colored differently; for 0 0 0 example, if G is an even cycle then χ (G) = 2, and if G is an odd cycle then χ (G) = 3. For complete graphs, χ (Kn) = n−1 if 0 0 n is even and χ (Kn) = n if n is odd, and for complete bipartite graphs, χ (Kr;s) = max(r; s).
    [Show full text]
  • On the Cycle Double Cover Problem
    On The Cycle Double Cover Problem Ali Ghassâb1 Dedicated to Prof. E.S. Mahmoodian Abstract In this paper, for each graph , a free edge set is defined. To study the existence of cycle double cover, the naïve cycle double cover of have been defined and studied. In the main theorem, the paper, based on the Kuratowski minor properties, presents a condition to guarantee the existence of a naïve cycle double cover for couple . As a result, the cycle double cover conjecture has been concluded. Moreover, Goddyn’s conjecture - asserting if is a cycle in bridgeless graph , there is a cycle double cover of containing - will have been proved. 1 Ph.D. student at Sharif University of Technology e-mail: [email protected] Faculty of Math, Sharif University of Technology, Tehran, Iran 1 Cycle Double Cover: History, Trends, Advantages A cycle double cover of a graph is a collection of its cycles covering each edge of the graph exactly twice. G. Szekeres in 1973 and, independently, P. Seymour in 1979 conjectured: Conjecture (cycle double cover). Every bridgeless graph has a cycle double cover. Yielded next data are just a glimpse review of the history, trend, and advantages of the research. There are three extremely helpful references: F. Jaeger’s survey article as the oldest one, and M. Chan’s survey article as the newest one. Moreover, C.Q. Zhang’s book as a complete reference illustrating the relative problems and rather new researches on the conjecture. A number of attacks, to prove the conjecture, have been happened. Some of them have built new approaches and trends to study.
    [Show full text]
  • An Exploration of Late Twentieth and Twenty-First Century Clarinet Repertoire
    Southern Illinois University Carbondale OpenSIUC Research Papers Graduate School Spring 2021 An Exploration of Late Twentieth and Twenty-First Century Clarinet Repertoire Grace Talaski [email protected] Follow this and additional works at: https://opensiuc.lib.siu.edu/gs_rp Recommended Citation Talaski, Grace. "An Exploration of Late Twentieth and Twenty-First Century Clarinet Repertoire." (Spring 2021). This Article is brought to you for free and open access by the Graduate School at OpenSIUC. It has been accepted for inclusion in Research Papers by an authorized administrator of OpenSIUC. For more information, please contact [email protected]. AN EXPLORATION OF LATE TWENTIETH AND TWENTY-FIRST CENTURY CLARINET REPERTOIRE by Grace Talaski B.A., Albion College, 2017 A Research Paper Submitted in Partial Fulfillment of the Requirements for the Master of Music School of Music in the Graduate School Southern Illinois University Carbondale April 2, 2021 Copyright by Grace Talaski, 2021 All Rights Reserved RESEARCH PAPER APPROVAL AN EXPLORATION OF LATE TWENTIETH AND TWENTY-FIRST CENTURY CLARINET REPERTOIRE by Grace Talaski A Research Paper Submitted in Partial Fulfillment of the Requirements for the Degree of Master of Music in the field of Music Approved by: Dr. Eric Mandat, Chair Dr. Christopher Walczak Dr. Douglas Worthen Graduate School Southern Illinois University Carbondale April 2, 2021 AN ABSTRACT OF THE RESEARCH PAPER OF Grace Talaski, for the Master of Music degree in Performance, presented on April 2, 2021, at Southern Illinois University Carbondale. TITLE: AN EXPLORATION OF LATE TWENTIETH AND TWENTY-FIRST CENTURY CLARINET REPERTOIRE MAJOR PROFESSOR: Dr. Eric Mandat This is an extended program note discussing a selection of compositions featuring the clarinet from the mid-1980s through the present.
    [Show full text]
  • Snarks and Flow-Critical Graphs 1
    Snarks and Flow-Critical Graphs 1 CˆandidaNunes da Silva a Lissa Pesci a Cl´audioL. Lucchesi b a DComp – CCTS – ufscar – Sorocaba, sp, Brazil b Faculty of Computing – facom-ufms – Campo Grande, ms, Brazil Abstract It is well-known that a 2-edge-connected cubic graph has a 3-edge-colouring if and only if it has a 4-flow. Snarks are usually regarded to be, in some sense, the minimal cubic graphs without a 3-edge-colouring. We defined the notion of 4-flow-critical graphs as an alternative concept towards minimal graphs. It turns out that every snark has a 4-flow-critical snark as a minor. We verify, surprisingly, that less than 5% of the snarks with up to 28 vertices are 4-flow-critical. On the other hand, there are infinitely many 4-flow-critical snarks, as every flower-snark is 4-flow-critical. These observations give some insight into a new research approach regarding Tutte’s Flow Conjectures. Keywords: nowhere-zero k-flows, Tutte’s Flow Conjectures, 3-edge-colouring, flow-critical graphs. 1 Nowhere-Zero Flows Let k > 1 be an integer, let G be a graph, let D be an orientation of G and let ϕ be a weight function that associates to each edge of G a positive integer in the set {1, 2, . , k − 1}. The pair (D, ϕ) is a (nowhere-zero) k-flow of G 1 Support by fapesp, capes and cnpq if every vertex v of G is balanced, i. e., the sum of the weights of all edges leaving v equals the sum of the weights of all edges entering v.
    [Show full text]
  • Generation of Cubic Graphs and Snarks with Large Girth
    Generation of cubic graphs and snarks with large girth Gunnar Brinkmanna, Jan Goedgebeura,1 aDepartment of Applied Mathematics, Computer Science & Statistics Ghent University Krijgslaan 281-S9, 9000 Ghent, Belgium Abstract We describe two new algorithms for the generation of all non-isomorphic cubic graphs with girth at least k ≥ 5 which are very efficient for 5 ≤ k ≤ 7 and show how these algorithms can be efficiently restricted to generate snarks with girth at least k. Our implementation of these algorithms is more than 30, respectively 40 times faster than the previously fastest generator for cubic graphs with girth at least 6 and 7, respec- tively. Using these generators we have also generated all non-isomorphic snarks with girth at least 6 up to 38 vertices and show that there are no snarks with girth at least 7 up to 42 vertices. We present and analyse the new list of snarks with girth 6. Keywords: cubic graph, snark, girth, chromatic index, exhaustive generation 1. Introduction A cubic (or 3-regular) graph is a graph where every vertex has degree 3. Cubic graphs have interesting applications in chemistry as they can be used to represent molecules (where the vertices are e.g. carbon atoms such as in fullerenes [20]). Cubic graphs are also especially interesting in mathematics since for many open problems in graph theory it has been proven that cubic graphs are the smallest possible potential counterexamples, i.e. that if the conjecture is false, the smallest counterexample must be a cubic graph. For examples, see [5]. For most problems the possible counterexamples can be further restricted to the sub- class of cubic graphs which are not 3-edge-colourable.
    [Show full text]
  • Beatrice Ruini
    LE MATEMATICHE Vol. LXV (2010) – Fasc. I, pp. 3–21 doi: 10.4418/2010.65.1.1 SOME INFINITE CLASSES OF ASYMMETRIC NEARLY HAMILTONIAN SNARKS CARLA FIORI - BEATRICE RUINI We determine the full automorphism group of each member of three infinite families of connected cubic graphs which are snarks. A graph is said to be nearly hamiltonian if it has a cycle which contains all vertices but one. We prove, in particular, that for every possible order n ≥ 28 there exists a nearly hamiltonian snark of order n with trivial automorphism group. 1. Introduction Snarks are non-trivial connected cubic graphs which do not admit a 3-edge- coloring (a precise definition will be given below). The term snark owes its origin to Lewis Carroll’s famouse nonsense poem “The Hunting of the Snark”. It was introduced as a graph theoretical term by Gardner in [13] when snarks were thought to be very rare and unusual “creatures”. Tait initiated the study of snarks in 1880 when he proved that the Four Color Theorem is equivalent to the statement that no snark is planar. Asymmetric graphs are graphs pos- sessing a single graph automorphism -the identity- and for that reason they are also called identity graphs. Twenty-seven examples of asymmetric graphs are illustrated in [27]. Two of them are the snarks Sn8 and Sn9 of order 20 listed in [21] p. 276. Asymmetric graphs have been the subject of many studies, see, Entrato in redazione: 4 febbraio 2009 AMS 2000 Subject Classification: 05C15, 20B25. Keywords: full automorphism group, snark, nearly hamiltonian snark.
    [Show full text]
  • SNARKS Generation, Coverings and Colourings
    SNARKS Generation, coverings and colourings jonas hägglund Doctoral thesis Department of mathematics and mathematical statistics Umeå University April 2012 Doctoral dissertation Department of mathematics and mathematical statistics Umeå University SE-901 87 Umeå Sweden Copyright © 2012 Jonas Hägglund Doctoral thesis No. 53 ISBN: 978-91-7459-399-0 ISSN: 1102-8300 Printed by Print & Media Umeå 2012 To my family. ABSTRACT For a number of unsolved problems in graph theory such as the cycle double cover conjecture, Fulkerson’s conjecture and Tutte’s 5-flow conjecture it is sufficient to prove them for a family of graphs called snarks. Named after the mysterious creature in Lewis Carroll’s poem, a snark is a cyclically 4-edge connected 3-regular graph of girth at least 5 which cannot be properly edge coloured using three colours. Snarks and problems for which an edge minimal counterexample must be a snark are the central topics of this thesis. The first part of this thesis is intended as a short introduction to the area. The second part is an introduction to the appended papers and the third part consists of the four papers presented in a chronological order. In Paper I we study the strong cycle double cover conjecture and stable cycles for small snarks. We prove that if a bridgeless cubic graph G has a cycle of length at least jV(G)j - 9 then it also has a cycle double cover. Furthermore we show that there exist cyclically 5-edge connected snarks with stable cycles and that there exists an infinite family of snarks with stable cycles of length 24.
    [Show full text]
  • On Measures of Edge-Uncolorability of Cubic Graphs: a Brief Survey and Some New Results
    On measures of edge-uncolorability of cubic graphs: A brief survey and some new results M.A. Fiola, G. Mazzuoccolob, E. Steffenc aBarcelona Graduate School of Mathematics and Departament de Matem`atiques Universitat Polit`ecnicade Catalunya Jordi Girona 1-3 , M`odulC3, Campus Nord 08034 Barcelona, Catalonia. bDipartimento di Informatica Universit´adi Verona Strada le Grazie 15, 37134 Verona, Italy. cPaderborn Center for Advanced Studies and Institute for Mathematics Universit¨atPaderborn F¨urstenallee11, D-33102 Paderborn, Germany. E-mails: [email protected], [email protected], [email protected] February 24, 2017 Abstract There are many hard conjectures in graph theory, like Tutte's 5-flow conjec- arXiv:1702.07156v1 [math.CO] 23 Feb 2017 ture, and the 5-cycle double cover conjecture, which would be true in general if they would be true for cubic graphs. Since most of them are trivially true for 3-edge-colorable cubic graphs, cubic graphs which are not 3-edge-colorable, often called snarks, play a key role in this context. Here, we survey parameters measuring how far apart a non 3-edge-colorable graph is from being 3-edge- colorable. We study their interrelation and prove some new results. Besides getting new insight into the structure of snarks, we show that such measures give partial results with respect to these important conjectures. The paper closes with a list of open problems and conjectures. 1 Mathematics Subject Classifications: 05C15, 05C21, 05C70, 05C75. Keywords: Cubic graph; Tait coloring; snark; Boole coloring; Berge's conjecture; Tutte's 5-flow conjecture; Fulkerson's Conjecture.
    [Show full text]
  • Snarks from a Kaszonyi Perspective: a Survey
    SNARKS FROM A KASZONYI´ PERSPECTIVE: A SURVEY Richard C. Bradley Department of Mathematics Indiana University Bloomington Indiana 47405 USA [email protected] Abstract. This is a survey or exposition of a particular collection of results and open problems involving snarks — simple “cubic” (3-valent) graphs for which, for nontrivial rea- sons, the edges cannot be 3-colored. The results and problems here are rooted in a series of papers by L´aszl´oK´aszonyi that were published in the early 1970s. The problems posed in this survey paper can be tackled without too much specialized mathematical preparation, and in particular seem well suited for interested undergraduate mathematics students to pursue as independent research projects. This survey paper is intended to facilitate re- search on these problems. arXiv:1302.2655v2 [math.CO] 9 Mar 2014 1 1. Introduction The Four Color Problem was a major fascination for mathematicians ever since it was posed in the middle of the 1800s. Even after it was answered affirmatively (by Ken- neth Appel and Wolfgang Haken in 1976-1977, with heavy assistance from computers) and finally became transformed into the Four Color Theorem, it has continued to be of substantial mathematical interest. In particular, there is the ongoing quest for a shorter proof (in particular, one that can be rigorously checked by a human being without the assistance of a computer); and there is the related ongoing philosophical controversy as to whether a proof that requires the use of a computer (i.e. is so complicated that it cannot be rigorously checked by a human being without the assistance of a computer) is really a proof at all.
    [Show full text]
  • 1 Snarks the Hunting of the Snark by Lewis Carroll by Vizing's Theorem, (As Well As by Shannon's Theorem), Every Degree
    1 Snarks The Hunting of the Snark by Lewis Carroll By Vizing’s theorem, (as well as by Shannon’s theorem), every degree- three graph is 4-colorable. The problem of determining if χ′(G)=3 or 4 is NP-complete: I.J. Holyer, The NP-completeness of edge col- oring, SIAM J. Comput., 1981, Vol. 10, pp. 718-720. Tutte conjectured in “On the algebraic theory of graph colorings,” J. Combinatorial Theory, 1 (1966), pp. 15-50, that every 2-connected cubic graph not containing the Petersen graph is 3-edge-colorable. This would imply the 4-color-theorem, which was computer-proved. 1 Definition 1 A graph G = (V,E) is called k-edge-cyclically con- nected if the removal of any k−1 edges yields a graph with at least one connected components which is not a tree, i.e. k is smallest number such that the removal of some k edges disconnects the graph into trees. Definition 2 A snark is a 3-regular graph with the chromatic index 4 satisfying the additional condition of non-triviality: it is at least 5-edge-cyclically connected. Petersen Graph: smallest snark; The Flower snark 2 Why 5-edge-cyclically connected? Consider the construction illustrated below: the dot-edges and result- ing isolated vertices are removed from the two copies of the Petersen graphs; 4 new edges are added to the union. One can prove that the chromatic index of the new graph is 4. The reverse is also true: if G is a cubic, 4-edge-chromatic graph with 4 edges disconnecting G, then it is obtained from two 4-edge-chromatic cubic graphs by the operation Linking (below).
    [Show full text]
  • Flower-Snarks Are Flow-Critical
    Flower-Snarks are Flow-Critical Cˆandida Nunes da Silva 1,3 DComp – CCTS ufscar Sorocaba, sp, Brazil Cl´audio L. Lucchesi 2,4 Faculty of Computing facom-ufms Campo Grande, ms, Brazil Abstract In this paper we show that all flower-snarks are 4-flow-critical graphs. Keywords: nowhere-zero k-flows, Tutte’s Conjectures, flower-snarks, 3-edge-colouring 1 Snarks and Flower-Snarks A snark is a cubic graph that does not admit a 3-edge-colouring, which is cyclically 4-edge-connected and has girth at least five. The Petersen graph 1 Support by fapesp and capes 2 Support by cnpq 3 Email: [email protected] 4 Email:[email protected] was the first snark discovered and, for several decades later, very few other snarks were found. This apparent difficulty in finding such graphs inspired Descartes to name them snarks after the Lewis Carroll poem ”The Hunting of the Snark”. Good accounts on the delightful history behind snarks hunt and their relevance in Graph Theory can be found in [2,7,1]. In 1975, Isaacs [5] showed that there were infinite families of snarks, one of such being the flower- snarks. A flower-snark Jn is a graph on 4n vertices, for n ≥ 5 and odd, whose vertices are labelled Vi = {wi, xi,yi, zi}, for 1 ≤ i ≤ n and whose edges can be partitioned into n star graphs and two cycles as we will next describe. Each quadruple Vi of vertices induce a star graph with wi as its center. Ver- tices zi induce an odd cycle (z1, z2,...,zn, z1).
    [Show full text]
  • A Study of Critical Snarks∗†
    A Study of Critical Snarks∗† Breno Lima de Freitas1, Candidaˆ Nunes da Silva1, Claudio´ L. Lucchesi2 1 DComp – CCGT – Federal University of Sao˜ Carlos (UFSCar) 18052-780 – Sorocaba – SP – Brazil 2 Faculty of Computing, FACOM-UFMS PO Box 549 – 79070-900 – Campo Grande – MS – Brazil [email protected], [email protected], [email protected] Abstract. Snarks are cubic graphs that do not admit a 3-edge-colouring and that are regarded to be the minimal cubic graphs without this property. Snarks have been studied by many researchers throughout the history, since many fa- mous open problems are known to have their potential counter-examples resid- ing in this family of graphs. In this paper we present relations between several classes of critical snarks. It follows from one of such relations that no hypo- hamiltonian snark is a counter-example to Tutte’s 5-flow Conjecture, thus giving a positive answer to a question proposed by Cavicchioli et al. in 2003. Resumo. Snarks sao˜ grafos cubicos´ que nao˜ admitem 3-colorac¸ao˜ de arestas e que sao˜ considerados os grafos cubicos´ minimais sem esta propriedade. Snarks vemˆ sendo estudados por varios´ pesquisadores no decorrer da historia,´ uma vez que e´ sabido que varios´ problemas abertos famosos devem ter seus potenci- ais contra-exemplos dentro desta fam´ılia de grafos. Neste artigo apresentamos relac¸oes˜ entre varias´ classes de snarks cr´ıticos. E´ consequenciaˆ de uma destas relac¸oes˜ que nenhum snark hipohamiltoniano e´ um contra-exemplo para a Con- jectura dos 5-fluxos de Tutte. Essa asserc¸ao˜ responde afirmativamente a uma questao˜ proposta por Cavicchioli et al.
    [Show full text]