Degree in Mathematics

Total Page:16

File Type:pdf, Size:1020Kb

Degree in Mathematics Degree in Mathematics Title: An Experimental Study of the Minimum Linear Colouring Arrangement Problem. Author: Montserrat Brufau Vidal Advisor: Maria José Serna Iglesias Department: Computer Science Department Academic year: 2016-2017 ii An experimental study of the Minimum Linear Colouring Arrangement Problem Author: Montserrat Brufau Vidal Advisor: Maria Jos´eSerna Iglesias Facultat de Matem`atiquesi Estad´ıstica Universitat Polit`ecnicade Catalunya 26th June 2017 ii Als meus pares; a la Maria pel seu suport durant el projecte; al meu poble, Men`arguens. iii iv Abstract The Minimum Linear Colouring Arrangement problem (MinLCA) is a variation from the Min- imum Linear Arrangement problem (MinLA) and the Colouring problem. The objective of the MinLA problem is finding the best way of labelling each vertex of a graph in such a manner that the sum of the induced distances between two adjacent vertices is the minimum. In our case, instead of labelling each vertex with a different integer, we group them with the condition that two adjacent vertices cannot be in the same group, or equivalently, by allowing the vertex labelling to be a proper colouring of the graph. In this project, we undertake the task of broadening the previous studies for the MinLCA problem. The main goal is developing some exact algorithms based on backtracking and some heuristic algorithms based on a maximal independent set approach and testing them with dif- ferent instances of graph families. As a secondary goal we are interested in providing theoretical results for particular graphs. The results will be made available in a simple, open-access bench- marking platform. Keywords: MinLCA, Graph Colouring, Backtracking, Maximal Independent Set, Parame- terised Problems, Benchmarking. v vi Contents Abstract v 1 Introduction 1 1.1 Problem formulation . .1 1.2 Interest of the problem . .1 1.3 State of the art . .2 1.4 Goals and scope of the project . .2 2 Preliminaries 5 2.1 Graphs . .5 2.1.1 Graphs and notation . .5 2.1.2 Graph types . .6 2.1.3 Problems on graphs . .6 2.1.4 Data structures for graphs . .8 2.2 Computational Complexity . .9 2.3 Fixed-Parameter Algorithms . 12 2.4 Experimental platform . 13 2.4.1 Implementation details . 14 2.4.2 The cluster at RDLab . 14 3 The Minimum Linear Colouring Arrangement problem 15 3.1 Definition and examples . 15 3.1.1 The Minimum Linear Colouring Arrangement problem . 15 3.2 Computational complexity . 16 3.2.1 NP-Completeness . 16 3.2.2 Upper and lower bounds . 17 3.3 Previous results for particular graphs . 18 3.3.1 Bipartite graphs . 18 3.3.2 Complete graphs . 19 3.3.3 Planar graphs . 20 3.3.4 Outerplanar graphs . 21 3.4 New results for particular graphs . 21 vii viii CONTENTS 3.4.1 Complete balanced k-partite graphs . 21 3.4.2 k-tree . 24 3.4.3 Bounded treewidth graphs . 25 4 Algorithms and instances 27 4.1 Basic components . 27 4.2 Backtracking . 30 4.2.1 Basic schema . 30 4.2.2 Improvements . 30 4.3 Maximal Independent Set Approach . 34 4.4 Benchmarking platform . 39 4.4.1 Binomial random graphs . 39 4.4.2 Random geometric graphs . 40 4.4.3 Graphs with cliques . 40 4.4.4 Outerplanar graphs . 41 4.4.5 k-tree . 41 4.4.6 Almost 3-complete graphs . 41 4.4.7 Trees, meshes and hypercubes . 42 4.4.8 Other graphs . 42 5 Experimental Results for Backtracking 43 5.1 Experiment design . 43 5.2 Results . 43 5.2.1 MinLA instances . 43 5.2.2 MinLCA instances . 44 5.2.3 k-tree instances . 45 5.2.4 Almost 3-complete instances . 46 6 Experimental results for Maximal Independent Set 61 6.1 Experiment design . 61 6.1.1 MinLA instances . 61 6.1.2 MinLCA instances . 61 6.1.3 k-tree instances . 61 6.1.4 Almost 3-complete instances . 61 6.2 Results . 62 6.2.1 MinLA instances . 62 6.2.2 MinLCA instances . 62 6.2.3 k-tree instances . 62 6.2.4 Almost 3-complete instances . 63 7 Conclusions 75 Bibliography 77 List of Tables 4.1 MinLA instances . 39 5.1 Backtracking results for MinLA instances . 47 5.2 Chromatic number for MinLA instances . 48 5.3 Backtracking results for binomial random graphs compared with greedy algo- rithm results . 49 5.4 Backtracking results for random geometric graphs compared with greedy algo- rithm results . 50 5.5 Backtracking results for graphs with cliques compared with greedy algorithm results . 51 5.6 Backtracking results for outerplanar graphs compared with greedy algorithm results 52 5.7 Backtracking results for binomial random graphs of small orders . 53 5.8 Backtracking results for random geometric graphs of small orders . 54 5.9 Backtracking results for graphs with cliques of small orders . 55 5.10 Backtracking results for outerplanar graphs of small orders . 56 5.11 Backtracking results for k-trees . 57 5.12 Backtracking results for k-trees of small orders . 58 5.13 Backtracking results for almost 3-complete graphs . 59 5.14 Backtracking results for almost 3-complete graphs of small orders . 60 6.1 MaxInSet results for MinLA instances . 68 6.2 MaxInSet results for binomial random graphs . 69 6.3 MaxInSet results for random geometric graphs . 70 6.4 MaxInSet results for graphs with cliques . 71 6.5 MaxInSet results for random outerplanar graphs . 72 6.6 MaxInSet results for k-trees . 73 6.7 MaxInSet results for almost 3-complete graphs . 74 ix List of Figures 3.1 Original graph and optimal layout for MinLCA with cost 4. 16 3.2 Bipartite graph and optimal layout for MinLCA with cost 4. 19 3.3 Complete graph and optimal layout for MinLCA with cost 10. 20 3.4 Counterexample for the conjecture of the number of colours in an optimal linear colouring arrangement. 23 3.5 Comparison between using 3 colours and 4 colours for two complete balanced 3-partite graphs. 24 5.1 Backtracking results for MinLCA instances with small orders. 45 6.1 Results of Maximal Independent Set for MinLA instances . 64 6.2 Comparison between Best of Two and Random Selection algorithms . 65 6.3 Results of Maximal Independent Set for MinLCA instances . 66 6.4 Results of Maximal Independent Set for all instances used in MinLCA bench- marking. 67 List of Algorithms 3.1 Verifier for MinLCA-Deck .............................. 17 4.1 Set colour . 28 4.2 Uncolouring nodes . 28 4.3 Check node colouring . 29 4.4 Check all coloured . 29 4.5 Check colour used . 29 4.6 Backtracking . 32 4.7 Backtracking for.
Recommended publications
  • A New Approach to the Snake-In-The-Box Problem
    462 ECAI 2012 Luc De Raedt et al. (Eds.) © 2012 The Author(s). This article is published online with Open Access by IOS Press and distributed under the terms of the Creative Commons Attribution Non-Commercial License. doi:10.3233/978-1-61499-098-7-462 A New Approach to the Snake-In-The-Box Problem David Kinny1 Abstract. The “Snake-In-The-Box” problem, first described more Research on the SIB problem initially focused on applications in than 50 years ago, is a hard combinatorial search problem whose coding [14]. Coils are spread-k circuit codes for k =2, in which solutions have many practical applications. Until recently, techniques n-words k or more positions apart in the code differ in at least k based on Evolutionary Computation have been considered the state- bit positions [12]. (The well-known Gray codes are spread-1 circuit of-the-art for solving this deterministic maximization problem, and codes.) Longest snakes and coils provide the maximum number of held most significant records. This paper reviews the problem and code words for a given word size (i.e., hypercube dimension). prior solution techniques, then presents a new technique, based on A related application is in encoding schemes for analogue-to- Monte-Carlo Tree Search, which finds significantly better solutions digital converters including shaft (rotation) encoders. Longest SIB than prior techniques, is considerably faster, and requires no tuning. codes provide greatest resolution, and single bit errors are either recognised as such or map to an adjacent codeword causing an off- 1 INTRODUCTION by-one error.
    [Show full text]
  • The Snake-In-The-Box Problem: a Primer
    THE SNAKE-IN-THE-BOX PROBLEM: A PRIMER by THOMAS E. DRAPELA (Under the Direction of Walter D. Potter) ABSTRACT This thesis is a primer designed to introduce novice and expert alike to the Snake-in-the- Box problem (SIB). Using plain language, and including explanations of prerequisite concepts necessary for understanding SIB throughout, it introduces the essential concepts of SIB, its origin, evolution, and continued relevance, as well as methods for representing, validating, and evaluating snake and coil solutions in SIB search. Finally, it is structured to serve as a convenient reference for those exploring SIB. INDEX WORDS: Snake-in-the-Box, Coil-in-the-Box, Hypercube, Snake, Coil, Graph Theory, Constraint Satisfaction, Canonical Ordering, Canonical Form, Equivalence Class, Disjunctive Normal Form, Conjunctive Normal Form, Heuristic Search, Fitness Function, Articulation Points THE SNAKE-IN-THE-BOX PROBLEM: A PRIMER by THOMAS E. DRAPELA B.A., George Mason University, 1991 A Thesis Submitted to the Graduate Faculty of The University of Georgia in Partial Fulfillment of the Requirements for the Degree MASTER OF SCIENCE ATHENS, GEORGIA 2015 © 2015 Thomas E. Drapela All Rights Reserved THE SNAKE-IN-THE-BOX PROBLEM: A PRIMER by THOMAS E. DRAPELA Major Professor: Walter D. Potter Committee: Khaled Rasheed Pete Bettinger Electronic Version Approved: Julie Coffield Interim Dean of the Graduate School The University of Georgia May 2015 DEDICATION To my dearest Kristin: For loving me enough to give me a shove. iv ACKNOWLEDGEMENTS I wish to express my deepest gratitude to Dr. Potter for introducing me to the Snake-in-the-Box problem, for giving me the freedom to get lost in it, and finally, for helping me to find my way back.
    [Show full text]
  • An Archive of All Submitted Project Proposals
    CS 598 JGE ] Fall 2017 One-Dimensional Computational Topology Project Proposals Theory 0 Bhuvan Venkatesh: embedding graphs into hypercubes ....................... 1 Brendan Wilson: anti-Borradaile-Klein? .................................. 4 Charles Shang: vertex-disjoint paths in planar graphs ......................... 6 Hsien-Chih Chang: bichromatic triangles in pseudoline arrangements ............. 9 Sameer Manchanda: one more shortest-path tree in planar graphs ............... 11 Implementation 13 Jing Huang: evaluation of image segmentation algorithms ..................... 13 Shailpik Roy: algorithm visualization .................................... 15 Qizin (Stark) Zhu: evaluation of r-division algorithms ........................ 17 Ziwei Ba: algorithm visualization ....................................... 20 Surveys 22 Haizi Yu: topological music analysis ..................................... 22 Kevin Hong: topological data analysis .................................... 24 Philip Shih: planarity testing algorithms .................................. 26 Ross Vasko: planar graph clustering ..................................... 28 Yasha Mostofi: image processing via maximum flow .......................... 31 CS 598JGE Project Proposal Name and Netid: Bhuvan Venkatesh: bvenkat2 Introduction Embedding arbitrary graphs into Hypercubes has been the study of research for many practical implementation purposes such as interprocess communication or resource. A hypercube graph is any graph that has a set of 2d vertexes and all the vertexes are
    [Show full text]
  • Eindhoven University of Technology BACHELOR on the K-Independent
    Eindhoven University of Technology BACHELOR On the k-Independent Set Problem Koerts, Hidde O. Award date: 2021 Link to publication Disclaimer This document contains a student thesis (bachelor's or master's), as authored by a student at Eindhoven University of Technology. Student theses are made available in the TU/e repository upon obtaining the required degree. The grade received is not published on the document as presented in the repository. The required complexity or quality of research of student theses may vary by program, and the required minimum study period may vary in duration. General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. • Users may download and print one copy of any publication from the public portal for the purpose of private study or research. • You may not further distribute the material or use it for any profit-making activity or commercial gain On the k-Independent Set Problem Hidde Koerts Supervised by Aida Abiad February 1, 2021 Hidde Koerts Supervised by Aida Abiad Abstract In this thesis, we study several open problems related to the k-independence num- ber, which is defined as the maximum size of a set of vertices at pairwise dis- tance greater than k (or alternatively, as the independence number of the k-th graph power). Firstly, we extend the definitions of vertex covers and cliques to allow for natural extensions of the equivalencies between independent sets, ver- tex covers, and cliques.
    [Show full text]
  • Connectivity 1
    Ma/CS 6b Class 5: Graph Connectivity By Adam Sheffer A Connectivity Problem Prove. The vertices of a connected graph 퐺 can always be ordered as 푣1, 푣2, … , 푣푛 such that for every 1 < 푖 ≤ 푛, if we remove 푣푖, 푣푖+1, … , 푣푛 and the edges adjacent to these vertices, 퐺 remains connected. 푣3 푣4 푣1 푣2 푣5 Proof Pick any vertex as 푣1. Pick a vertex that is connected to 푣1 in 퐺 and set it as 푣2. Pick a vertex that is connected either to 푣1 or to 푣2 in 퐺 and set it as 푣3. … Communications Network We are given a set of routers and wish to connect pairs of them to obtain a connected communications network. The network should be reliable – a few malfunctioning routers should not disable the entire network. ◦ What condition should we require from the network? ◦ That after removing any 푘 routers, the network remains connected. 푘-connected Graphs An graph 퐺 = (푉, 퐸) is said to be 푘- connected if 푉 > 푘 and we cannot obtain a non-connected graph by removing 푘 − 1 vertices from 푉. Is the graph in the figure ◦ 1-connected? Yes. ◦ 2-connected? Yes. ◦ 3-connected? No! Connectivity Which graphs are 1-connected? ◦ These are exactly the connected graphs. The connectivity of a graph 퐺 is the maximum integer 푘 such that 퐺 is 푘- connected. What is the connectivity of the complete graph 퐾푛? 푛 − 1. The graph in the figure has a connectivity of 2. Hypercube A hypercube is a generalization of the cube into any dimension.
    [Show full text]
  • Layout Volumes of the Hypercube∗
    Layout Volumes of the Hypercube¤ Lubomir Torok Institute of Mathematics and Computer Science Severna 5, 974 01 Banska Bystrica, Slovak Republic Imrich Vrt'o Department of Informatics Institute of Mathematics, Slovak Academy of Sciences Dubravska 9, 841 04 Bratislava, Slovak Republic Abstract We study 3-dimensional layouts of the hypercube in a 1-active layer and general model. The problem can be understood as a graph drawing problem in 3D space and was addressed at Graph Drawing 2003 [5]. For both models we prove general lower bounds which relate volumes of layouts to a graph parameter cutwidth. Then we propose tight bounds on volumes of layouts of N-vertex hypercubes. Especially, we 2 3 3 have VOL (Q ) = N 2 log N + O(N 2 ); for even log N and VOL(Q ) = p 1¡AL log N 3 log N 3 2 6 2 4=3 9 N + O(N log N); for log N divisible by 3. The 1-active layer layout can be easily extended to a 2-active layer (bottom and top) layout which improves a result from [5]. 1 Introduction The research on three-dimensional circuit layouts started in seminal works [15, 17] as a response to advances in VLSI technology. Their model of a 3-dimensional circuit was a natural generalization of the 2-dimensional model [18]. Several basic results have been proved since then which show that the 3-dimensional layout may essentially reduce ma- terial, measured as volume [6, 12]. The problem may be also understood as a special 3-dimensional orthogonal drawing of graphs, see e.g., [9].
    [Show full text]
  • PERFECT DOMINATING SETS Ý Marilynn Livingston£ Quentin F
    In Congressus Numerantium 79 (1990), pp. 187-203. PERFECT DOMINATING SETS Ý Marilynn Livingston£ Quentin F. Stout Department of Computer Science Elec. Eng. and Computer Science Southern Illinois University University of Michigan Edwardsville, IL 62026-1653 Ann Arbor, MI 48109-2122 Abstract G G A dominating set Ë of a graph is perfect if each vertex of is dominated by exactly one vertex in Ë . We study the existence and construction of PDSs in families of graphs arising from the interconnection networks of parallel computers. These include trees, dags, series-parallel graphs, meshes, tori, hypercubes, cube-connected cycles, cube-connected paths, and de Bruijn graphs. For trees, dags, and series-parallel graphs we give linear time algorithms that determine if a PDS exists, and generate a PDS when one does. For 2- and 3-dimensional meshes, 2-dimensional tori, hypercubes, and cube-connected paths we completely characterize which graphs have a PDS, and the structure of all PDSs. For higher dimensional meshes and tori, cube-connected cycles, and de Bruijn graphs, we show the existence of a PDS in infinitely many cases, but our characterization d is not complete. Our results include distance d-domination for arbitrary . 1 Introduction = ´Î; Eµ Î E i Suppose G is a graph with vertex set and edge set . A vertex is said to dominate a E i j i = j Ë Î vertex j if contains an edge from to or if . A set of vertices is called a dominating G Ë G set of G if every vertex of is dominated by at least one member of .
    [Show full text]
  • Arxiv:2008.08856V2 [Math.CO] 5 Dec 2020 Graphs Correspond Exactly to the Graphs Induced by the Two Middle Layers of Odd-Dimensional Hypercubes
    Fast recognition of some parametric graph families Nina Klobas∗ and Matjaž Krnc† December 8, 2020 Abstract We identify all [1, λ, 8]-cycle regular I-graphs and all [1, λ, 8]-cycle reg- ular double generalized Petersen graphs. As a consequence we describe linear recognition algorithms for these graph families. Using structural properties of folded cubes we devise a o(N log N) recognition algorithm for them. We also study their [1, λ, 4], [1, λ, 6] and [2, λ, 6]-cycle regularity and settle the value of parameter λ. 1 Introduction Important graph classes such as bipartite graphs, (weakly) chordal graphs, (line) perfect graphs and (pseudo)forests are defined or characterized by their cycle structure. A particularly strong description of a cyclic structure is the notion of cycle-regularity, introduced by Mollard [24]: For integers l, λ, m a simple graph is [l, λ, m]-cycle regular if ev- ery path on l+1 vertices belongs to exactly λ different cycles of length m. It is perhaps natural that cycle-regularity mostly appears in the literature in the context of symmetric graph families such as hypercubes, Cayley graphs or circulants. Indeed, Mollard showed that certain extremal [3, 1, 6]-cycle regular arXiv:2008.08856v2 [math.CO] 5 Dec 2020 graphs correspond exactly to the graphs induced by the two middle layers of odd-dimensional hypercubes. Also, for [2, 1, 4]-cycle regular graphs, Mulder [25] showed that their degree is minimized in the case of Hadamard graphs, or in the case of hypercubes. In relation with other graph families, Fouquet and Hahn [12] described the symmetric aspect of certain cycle-regular classes, while in [19] authors describe all [1, λ, 8]-cycle regular members of generalized ∗Department of Computer Science, Durham University, UK.
    [Show full text]
  • 26 Jan 2020 Orientable Hamiltonian Embeddings of Hypercubes
    Orientable Hamiltonian Embeddings of Hypercubes Richard Leyland Abstract A Hamiltonian embedding is an embedding of a graph G such that the boundary of each face is a Hamiltonian cycle of G. It is shown that the hypercube graph Qn admits such an embedding on an orientable surface when n is a power of 2. Basic necessary conditions on Hamiltonian embeddings for Qn and conjectures are made about other values of n. 1 Introduction The hypercube graph Qn is an example of a graph with a large amount of symmetry. We shall define Qn in two different ways. Definition 1.1 The n-dimensional hypercube Qn, for n ≥ 1 is given by n V (Qn)= {0, 1} E(Qn)= {xy : x and y differ in exactly one coordinate} arXiv:2001.09383v1 [math.CO] 26 Jan 2020 We also provide an alternate definition which will be the basis of how we work with the hypercube graph. Definition 1.2 (Cartesian Product of Graphs) Let G and H be graphs. The cartesian product of graphs G2H is given by V (G2H)= V (G) × V (H), E(G2H)= {(x, y)(x′,y′) : either x = x′ and yy′ ∈ E(H) or y = y′ and xx′ ∈ E(G)}. 1 To illustrate this concept and the interpretation of the hypercube graph that we will be using, we introduce the merge operator. Definition 1.3 Let G and G′ be isomorphic graphs given by the isomorphism f : G → G′. The merge operator define a new graph G⋆G′, which is given by V (G⋆G′)= V (G)⊔V (G′) E(G⋆G′)= E(G)∪E(G′)∪{xy : x ∈ G,y ∈ G′, f(x)= y}.
    [Show full text]
  • Quantum Automorphism Groups of Finite Graphs
    Quantum automorphism groups of finite graphs Dissertation zur Erlangung des Grades des Doktors der Naturwissenschaften der Fakult¨atf¨urMathematik und Informatik der Universit¨atdes Saarlandes Simon Schmidt Saarbr¨ucken, 2020 Datum der Verteidigung: 2. Juli 2020 Dekan: Prof. Dr. Thomas Schuster Pr¨ufungsausschuss: Vorsitzende: Prof. Dr. Gabriela Weitze-Schmith¨usen Berichterstatter: Prof. Dr. Moritz Weber Prof. Dr. Roland Speicher Prof. Dr. Julien Bichon Akademischer Mitarbeiter: Dr. Tobias Mai ii Abstract The present work contributes to the theory of quantum permutation groups. More specifically, we develop techniques for computing quantum automorphism groups of finite graphs and apply those to several examples. Amongst the results, we give a criterion on when a graph has quantum symmetry. By definition, a graph has quantum symmetry if its quantum automorphism group does not coincide with its classical automorphism group. We show that this is the case if the classical automorphism group contains a pair of disjoint automorphisms. Furthermore, we prove that several families of distance-transitive graphs do not have quantum symmetry. This includes the odd graphs, the Hamming graphs H(n; 3), the Johnson graphs J(n; 2), the Kneser graphs K(n; 2) and all cubic distance-transitive graphs of order ≥ 10. In particular, this implies that the Petersen graph does not have quantum symmetry, answering a question asked by Banica and Bichon in 2007. Moreover, we show that the Clebsch graph does have quantum symmetry and −1 prove that its quantum automorphism group is equal to SO5 answering a question asked by Banica, Bichon and Collins. More generally, for odd n, the quantum −1 automorphism group of the folded n-cube graph is SOn .
    [Show full text]
  • Edge Decompositions of Hypercubes by Paths
    AUSTRALASIAN JOURNAL OF COMBINATORICS Volume 61(3) (2015), Pages 210{226 Edge decompositions of hypercubes by paths David Anick Laboratory for Water and Surface Studies Tufts University, Department of Chemistry 62 Pearson Rd., Medford, MA 02155 U.S.A. [email protected] Mark Ramras∗ Department of Mathematics Northeastern University Boston, MA 02115 U.S.A. [email protected] Abstract Many authors have investigated edge decompositions of graphs by the edge sets of isomorphic copies of special subgraphs. For q-dimensional hypercubes Qq various researchers have done this for certain trees, paths and cycles. In this paper we shall say that \H divides G" if E(G) is the disjoint union of fE(Hi) j Hi ' Hg. Our main result is that for q odd, q−1 the path of length m, Pm, divides Qq if and only if m ≤ q and m j q · 2 . 1 Introduction Edge decompositions of graphs by subgraphs have a long history. For example, there is a Steiner triple system of order n if and only if the complete graph Kn has an edge-decomposition by K3. In 1847 Kirkman [9] proved that for a Steiner triple system to exist it is necessary that n ≡ 1 (mod 6) or n ≡ 3 (mod 6). In 1850 [10] he proved the converse holds also. Theorem 1 A Steiner system of order n ≥ 3 exists if and only if n ≡ 1 (mod 6) or n ≡ 3 (mod 6). ∗ Corresponding author. D. ANICK AND M. RAMRAS / AUSTRALAS. J. COMBIN. 61 (2) (2015), 210{226 211 In more modern times (1964) Ringel [17] stated the following conjecture, which is still open.
    [Show full text]
  • The Automorphism Group of the Halved Cube
    Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2016 The Automorphism Group of the Halved Cube Benjamin B. MacKinnon Virginia Commonwealth University Follow this and additional works at: https://scholarscompass.vcu.edu/etd Part of the Algebra Commons, Discrete Mathematics and Combinatorics Commons, and the Other Mathematics Commons Ben MacKinnon Downloaded from https://scholarscompass.vcu.edu/etd/4609 This Thesis is brought to you for free and open access by the Graduate School at VCU Scholars Compass. It has been accepted for inclusion in Theses and Dissertations by an authorized administrator of VCU Scholars Compass. For more information, please contact [email protected]. Copyright c 2016 by Ben MacKinnon All rights reserved The Automorphism Group of The Halved Cube A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science at Virginia Commonwealth University. by Ben MacKinnon Master of Science Director: Richard H. Hammack , Professor Department of Mathematics and Applied Mathematics Virginia Commonwealth University Richmond, Virginia December 2016 iii Acknowledgements I can’t truly thank anyone before I thank my Lord and Savior Jesus Christ. He is the author of mathematical truth, so He created the topic of this thesis and was gracious enough to give Dr. Hammack and I the necessary insight to fill these pages. None of this would have been possible without my loving and supportive wife. She has always been my teammate and my best friend. Without her support and encouragement I would be a fraction of the man that I am now, and for that I am eternally grateful.
    [Show full text]