Degree (Graph Theory) from Wikipedia, the Free Encyclopedia Contents

Total Page:16

File Type:pdf, Size:1020Kb

Degree (Graph Theory) from Wikipedia, the Free Encyclopedia Contents Degree (graph theory) From Wikipedia, the free encyclopedia Contents 1 Degree (graph theory) 1 1.1 Handshaking lemma .......................................... 1 1.2 Degree sequence ............................................ 2 1.3 Special values ............................................. 3 1.4 Global properties ........................................... 3 1.5 See also ................................................ 4 1.6 Notes ................................................. 4 1.7 References ............................................... 4 2 Graph operations 5 2.1 Unary operations ........................................... 5 2.1.1 Elementary operations .................................... 5 2.1.2 Advanced operations ..................................... 5 2.2 Binary operations ........................................... 5 2.3 Notes ................................................. 6 3 Regular graph 7 3.1 Existence ............................................... 7 3.2 Algebraic properties .......................................... 7 3.3 Generation .............................................. 8 3.4 See also ................................................ 8 3.5 References .............................................. 8 3.6 External links ............................................. 8 3.7 Text and image sources, contributors, and licenses .......................... 9 3.7.1 Text .............................................. 9 3.7.2 Images ............................................ 9 3.7.3 Content license ........................................ 9 i Chapter 1 Degree (graph theory) A graph with vertices labeled by degree In graph theory, the degree (or valency) of a vertex of a graph is the number of edges incident to the vertex, with loops counted twice.[1] The degree of a vertex v is denoted deg(v) or deg v . The maximum degree of a graph G, denoted by Δ(G), and the minimum degree of a graph, denoted by δ(G), are the maximum and minimum degree of its vertices. In the graph on the right, the maximum degree is 5 and the minimum degree is 0. In a regular graph, all degrees are the same, and so we can speak of the degree of the graph. 1.1 Handshaking lemma Main article: handshaking lemma The degree sum formula states that, given a graph G = (V; E) , X deg(v) = 2jEj : v2V 1 2 CHAPTER 1. DEGREE (GRAPH THEORY) The formula implies that in any graph, the number of vertices with odd degree is even. This statement (as well as the degree sum formula) is known as the handshaking lemma. The latter name comes from a popular mathematical problem, to prove that in any group of people the number of people who have shaken hands with an odd number of other people from the group is even. 1.2 Degree sequence Two non-isomorphic graphs with the same degree sequence (3, 2, 2, 2, 2, 1, 1, 1). The degree sequence of an undirected graph is the non-increasing sequence of its vertex degrees;[2] for the above graph it is (5, 3, 3, 2, 2, 1, 0). The degree sequence is a graph invariant so isomorphic graphs have the same degree sequence. However, the degree sequence does not, in general, uniquely identify a graph; in some cases, non-isomorphic graphs have the same degree sequence. The degree sequence problem is the problem of finding some or all graphs with the degree sequence being a given non-increasing sequence of positive integers. (Trailing zeroes may be ignored since they are trivially realized by adding an appropriate number of isolated vertices to the graph.) A sequence which is the degree sequence of some graph, i.e. for which the degree sequence problem has a solution, is called a graphic or graphical sequence. As a consequence of the degree sum formula, any sequence with an odd sum, such as (3, 3, 1), cannot be realized as the degree sequence of a graph. The converse is also true: if a sequence has an even sum, it is the degree sequence 1.3. SPECIAL VALUES 3 of a multigraph. The construction of such a graph is straightforward: connect vertices with odd degrees in pairs by a matching, and fill out the remaining even degree counts by self-loops. The question of whether a given degree sequence can be realized by a simple graph is more challenging. This problem is also called graph realization problem and can either be solved by the Erdős–Gallai theorem or the Havel–Hakimi algorithm. The problem of finding or estimating the number of graphs with a given degree sequence is a problem from the field of graph enumeration. 1.3 Special values An undirected graph with leaf nodes 4, 5, 6, 7, 10, 11, and 12 • A vertex with degree 0 is called an isolated vertex. • A vertex with degree 1 is called a leaf vertex or end vertex, and the edge incident with that vertex is called a pendant edge. In the graph on the right, {3,5} is a pendant edge. This terminology is common in the study of trees in graph theory and especially trees as data structures. • A vertex with degree n − 1 in a graph on n vertices is called a dominating vertex. 1.4 Global properties • If each vertex of the graph has the same degree k the graph is called a k-regular graph and the graph itself is said to have degree k. Similarly, a bipartite graph in which every two vertices on the same side of the bipartition as each other have the same degree is called a biregular graph. • An undirected, connected graph has an Eulerian path if and only if it has either 0 or 2 vertices of odd degree. If it has 0 vertices of odd degree, the Eulerian path is an Eulerian circuit. • A directed graph is a pseudoforest if and only if every vertex has outdegree at most 1. A functional graph is a special case of a pseudoforest in which every vertex has outdegree exactly 1. 4 CHAPTER 1. DEGREE (GRAPH THEORY) • By Brooks’ theorem, any graph other than a clique or an odd cycle has chromatic number at most Δ, and by Vizing’s theorem any graph has chromatic index at most Δ + 1. • A k-degenerate graph is a graph in which each subgraph has a vertex of degree at most k. 1.5 See also • Indegree, outdegree for digraphs • Degree distribution • degree sequence for bipartite graphs 1.6 Notes [1] Diestel p.5 [2] Diestel p.278 1.7 References • Diestel, Reinhard (2005), Graph Theory (3rd ed.), Berlin, New York: Springer-Verlag, ISBN 978-3-540- 26183-4. • Erdős, P.; Gallai, T. (1960), “Gráfok előírt fokszámú pontokkal” (PDF), Matematikai Lapok (in Hungarian) 11: 264–274. • Havel, Václav (1955), “A remark on the existence of finite graphs”, Časopis pro pěstování matematiky (in Czech) 80: 477–480 • Hakimi, S. L. (1962), “On realizability of a set of integers as degrees of the vertices of a linear graph. I”, Journal of the Society for Industrial and Applied Mathematics 10: 496–506, MR 0148049. • Sierksma, Gerard; Hoogeveen, Han (1991), “Seven criteria for integer sequences being graphic”, Journal of Graph Theory 15 (2): 223–231, doi:10.1002/jgt.3190150209, MR 1106533. Chapter 2 Graph operations Operations on graphs produce new graphs from old ones. They may be separated into the following major cate- gories. 2.1 Unary operations Unary operations create a new graph from the old one. 2.1.1 Elementary operations These are sometimes called “editing operations” on graphs. They create a new graph from the original one by a simple, local change, such as addition or deletion of a vertex or an edge, merging and splitting of vertices, edge contraction, etc. 2.1.2 Advanced operations • Transpose graph • Complement graph • Line graph • Graph minor • Power of graph: The k-th power Gk of a graph G is a supergraph formed by adding an edge between all pairs of vertices of G with distance at most k. The second power of a graph is also called its square. • Dual graph (only applies to a graph embedded in a surface) • Medial graph • Y-Δ transform • Mycielskian 2.2 Binary operations Binary operations create a new graph from two initial graphs G1(V1, E1) and G2(V2, E2): • The union of two graphs G = (VG ,EG) and H = (VH ,EH) is the union of their vertex and edge sets: G ∪ H = (VG ∪ VH,EG ∪ EH). When VG and VH are disjoint, their union is referred to as the disjoint union, and denoted G + H.[1] 5 6 CHAPTER 2. GRAPH OPERATIONS • Similarly to above, the intersection of two graphs G = (VG ,EG) and H = (VH ,EH) is G ∩ H = (VG ∩ VH, EG ∩ EH).[1] • The graph join (or complete join) of two graphs is their graph union with all the edges that connect the vertices of the first graph with the vertices of the second graph.[2] It is a commutative operation (for unlabelled graphs) • Graph products based on the Cartesian product of the vertex sets: • Cartesian product of graphs[2] It is a commutative and associative operation (for unlabelled graphs). • Lexicographic product of graphs (also called graph composition) [2] It is associative (for unlabelled graphs), but not commutative. • Strong product of graphs; It is commutative and associative (for unlabelled graphs). • Tensor product of graphs, also called direct product, categorical product, cardinal product, or Kro- necker product. It is a commutative and associative operation (for unlabelled graphs). • Zig-zag product of graphs [3] Let [N] denote the set of integers from 1 to N. It is supposed that k-regular graphs used in the definition below are k-edge colored, i.e., their edge sets are partitioned into k perfect matchings. For each color i and a vertex v let v[i] denote the neighbor of v along the edge colored with color i. Let G1 be a D1-regular graph on [N1] and let G2 be a D2-regular graph on [D1]. Then the zig-zag product H is a graph with vertex set [N1] × [D1], where for all n in [N1], d in [D1], and i,j, in [D2], the vertex (n, d) is connected to (n[d[i]], d[i][j]).
Recommended publications
  • On J-Colorability of Certain Derived Graph Classes
    On J-Colorability of Certain Derived Graph Classes Federico Fornasiero Department of mathemathic Universidade Federal de Pernambuco Recife, Pernambuco, Brasil [email protected] Sudev Naduvath Centre for Studies in Discrete Mathematics Vidya Academy of Science & Technology Thrissur, Kerala, India. [email protected] Abstract A vertex v of a given graph G is said to be in a rainbow neighbourhood of G, with respect to a proper coloring C of G, if the closed neighbourhood N[v] of the vertex v consists of at least one vertex from every colour class of G with respect to C. A maximal proper colouring of a graph G is a J-colouring of G if and only if every vertex of G belongs to a rainbow neighbourhood of G. In this paper, we study certain parameters related to J-colouring of certain Mycielski type graphs. Key Words: Mycielski graphs, graph coloring, rainbow neighbourhoods, J-coloring arXiv:1708.09798v2 [math.GM] 4 Sep 2017 of graphs. Mathematics Subject Classification 2010: 05C15, 05C38, 05C75. 1 Introduction For general notations and concepts in graphs and digraphs we refer to [1, 3, 13]. For further definitions in the theory of graph colouring, see [2, 4]. Unless specified otherwise, all graphs mentioned in this paper are simple, connected and undirected graphs. 1 2 On J-colorability of certain derived graph classes 1.1 Mycielskian of Graphs Let G be a triangle-free graph with the vertex set V (G) = fv1; : : : ; vng. The Myciel- ski graph or the Mycielskian of a graph G, denoted by µ(G), is the graph with ver- tex set V (µ(G)) = fv1; v2; : : : ; vn; u1; u2; : : : ; un; wg such that vivj 2 E(µ(G)) () vivj 2 E(G), viuj 2 E(µ(G)) () vivj 2 E(G) and uiw 2 E(µ(G)) for all i = 1; : : : ; n.
    [Show full text]
  • Mathematicians Fleeing from Nazi Germany
    Mathematicians Fleeing from Nazi Germany Mathematicians Fleeing from Nazi Germany Individual Fates and Global Impact Reinhard Siegmund-Schultze princeton university press princeton and oxford Copyright 2009 © by Princeton University Press Published by Princeton University Press, 41 William Street, Princeton, New Jersey 08540 In the United Kingdom: Princeton University Press, 6 Oxford Street, Woodstock, Oxfordshire OX20 1TW All Rights Reserved Library of Congress Cataloging-in-Publication Data Siegmund-Schultze, R. (Reinhard) Mathematicians fleeing from Nazi Germany: individual fates and global impact / Reinhard Siegmund-Schultze. p. cm. Includes bibliographical references and index. ISBN 978-0-691-12593-0 (cloth) — ISBN 978-0-691-14041-4 (pbk.) 1. Mathematicians—Germany—History—20th century. 2. Mathematicians— United States—History—20th century. 3. Mathematicians—Germany—Biography. 4. Mathematicians—United States—Biography. 5. World War, 1939–1945— Refuges—Germany. 6. Germany—Emigration and immigration—History—1933–1945. 7. Germans—United States—History—20th century. 8. Immigrants—United States—History—20th century. 9. Mathematics—Germany—History—20th century. 10. Mathematics—United States—History—20th century. I. Title. QA27.G4S53 2008 510.09'04—dc22 2008048855 British Library Cataloging-in-Publication Data is available This book has been composed in Sabon Printed on acid-free paper. ∞ press.princeton.edu Printed in the United States of America 10 987654321 Contents List of Figures and Tables xiii Preface xvii Chapter 1 The Terms “German-Speaking Mathematician,” “Forced,” and“Voluntary Emigration” 1 Chapter 2 The Notion of “Mathematician” Plus Quantitative Figures on Persecution 13 Chapter 3 Early Emigration 30 3.1. The Push-Factor 32 3.2. The Pull-Factor 36 3.D.
    [Show full text]
  • Arxiv:1907.00626V1 [Math.RT] 1 Jul 2019 Ru Srltdt Hto H Rp.Nml,W Prove: We Namely, 1.1
    REPRESENTABILITY OF PERMUTATION REPRESENTATIONS ON COALGEBRAS AND THE ISOMORPHISM PROBLEM CRISTINA COSTOYA, DAVID MENDEZ,´ AND ANTONIO VIRUEL Abstract. Let G be a group and let ρ: G → Sym(V ) be a permutation representation of G on a set V . We prove that there is a faithful G-coalgebra C such that G arises as the image of the restriction of Aut(C) to G(C), the set of grouplike elements of C. Furthermore, we show that V can be regarded as a subset of G(C) invariant through the G-action, and that the composition of the inclusion G ֒→ Aut(C) with the restriction Aut(C) → Sym(V ) is precisely ρ. We use these results to prove that isomorphism classes of certain families of groups can be distinguished through the coalgebras on which they act faithfully. 1. Introduction Given X an object in a category C, the study of its automorphism group, Aut(X), is a difficult task. In fact, even deciding which groups arise as the automorphism groups of objects in C is far from trivial, see [13]. Nonetheless, it is also rewarding, as it can be expected that distinguished objects have distinguished automorphism groups, which in turn may give valuable information regarding the object X. Not only that, but if we know the automorphism groups of enough objects in C, we can also draw conclusions regarding the category itself. One clear example of this comes from representation theory, as the automorphism groups of the objects of a category tell us a lot about which groups may act on which objects.
    [Show full text]
  • On Topological Relaxations of Chromatic Conjectures
    European Journal of Combinatorics 31 (2010) 2110–2119 Contents lists available at ScienceDirect European Journal of Combinatorics journal homepage: www.elsevier.com/locate/ejc On topological relaxations of chromatic conjectures Gábor Simonyi a, Ambrus Zsbán b a Alfréd Rényi Institute of Mathematics, Hungarian Academy of Sciences, Hungary b Department of Computer Science and Information Theory, Budapest University of Technology and Economics, Hungary article info a b s t r a c t Article history: There are several famous unsolved conjectures about the chromatic Received 24 February 2010 number that were relaxed and already proven to hold for the Accepted 17 May 2010 fractional chromatic number. We discuss similar relaxations for the Available online 16 July 2010 topological lower bound(s) of the chromatic number. In particular, we prove that such a relaxed version is true for the Behzad–Vizing conjecture and also discuss the conjectures of Hedetniemi and of Hadwiger from this point of view. For the latter, a similar statement was already proven in Simonyi and Tardos (2006) [41], our main concern here is that the so-called odd Hadwiger conjecture looks much more difficult in this respect. We prove that the statement of the odd Hadwiger conjecture holds for large enough Kneser graphs and Schrijver graphs of any fixed chromatic number. ' 2010 Elsevier Ltd. All rights reserved. 1. Introduction There are several hard conjectures about the chromatic number that are still open, while their fractional relaxation is solved, i.e., a similar, but weaker statement is proven for the fractional chromatic number in place of the chromatic number.
    [Show full text]
  • Contemporary Mathematics 352
    CONTEMPORARY MATHEMATICS 352 Graph Colorings Marek Kubale Editor http://dx.doi.org/10.1090/conm/352 Graph Colorings CoNTEMPORARY MATHEMATICS 352 Graph Colorings Marek Kubale Editor American Mathematical Society Providence, Rhode Island Editorial Board Dennis DeTurck, managing editor Andreas Blass Andy R. Magid Michael Vogeli us This work was originally published in Polish by Wydawnictwa Naukowo-Techniczne under the title "Optymalizacja dyskretna. Modele i metody kolorowania graf6w", © 2002 Wydawnictwa N aukowo-Techniczne. The present translation was created under license for the American Mathematical Society and is published by permission. 2000 Mathematics Subject Classification. Primary 05Cl5. Library of Congress Cataloging-in-Publication Data Optymalizacja dyskretna. English. Graph colorings/ Marek Kubale, editor. p. em.- (Contemporary mathematics, ISSN 0271-4132; 352) Includes bibliographical references and index. ISBN 0-8218-3458-4 (acid-free paper) 1. Graph coloring. I. Kubale, Marek, 1946- II. Title. Ill. Contemporary mathematics (American Mathematical Society); v. 352. QA166 .247.06813 2004 5111.5-dc22 2004046151 Copying and reprinting. Material in this book may be reproduced by any means for edu- cational and scientific purposes without fee or permission with the exception of reproduction by services that collect fees for delivery of documents and provided that the customary acknowledg- ment of the source is given. This consent does not extend to other kinds of copying for general distribution, for advertising or promotional purposes, or for resale. Requests for permission for commercial use of material should be addressed to the Acquisitions Department, American Math- ematical Society, 201 Charles Street, Providence, Rhode Island 02904-2294, USA. Requests can also be made by e-mail to reprint-permissien@ams.
    [Show full text]
  • On the Generalized Θ-Number and Related Problems for Highly Symmetric Graphs
    On the generalized #-number and related problems for highly symmetric graphs Lennart Sinjorgo ∗ Renata Sotirov y Abstract This paper is an in-depth analysis of the generalized #-number of a graph. The generalized #-number, #k(G), serves as a bound for both the k-multichromatic number of a graph and the maximum k-colorable subgraph problem. We present various properties of #k(G), such as that the series (#k(G))k is increasing and bounded above by the order of the graph G. We study #k(G) when G is the graph strong, disjunction and Cartesian product of two graphs. We provide closed form expressions for the generalized #-number on several classes of graphs including the Kneser graphs, cycle graphs, strongly regular graphs and orthogonality graphs. Our paper provides bounds on the product and sum of the k-multichromatic number of a graph and its complement graph, as well as lower bounds for the k-multichromatic number on several graph classes including the Hamming and Johnson graphs. Keywords k{multicoloring, k-colorable subgraph problem, generalized #-number, Johnson graphs, Hamming graphs, strongly regular graphs. AMS subject classifications. 90C22, 05C15, 90C35 1 Introduction The k{multicoloring of a graph is to assign k distinct colors to each vertex in the graph such that two adjacent vertices are assigned disjoint sets of colors. The k-multicoloring is also known as k-fold coloring, n-tuple coloring or simply multicoloring. We denote by χk(G) the minimum number of colors needed for a valid k{multicoloring of a graph G, and refer to it as the k-th chromatic number of G or the multichromatic number of G.
    [Show full text]
  • Multi-Coloring the Mycielskian of Graphs
    Multi-Coloring the Mycielskian of Graphs Wensong Lin,1 Daphne Der-Fen Liu,2 and Xuding Zhu3,4 1DEPARTMENT OF MATHEMATICS SOUTHEAST UNIVERSITY NANJING 210096, PEOPLE’S REPUBLIC OF CHINA E-mail: [email protected] 2DEPARTMENT OF MATHEMATICS CALIFORNIA STATE UNIVERSITY LOS ANGELES, CALIFORNIA 90032 E-mail: [email protected] 3DEPARTMENT OF APPLIED MATHEMATICS NATIONAL SUN YAT-SEN UNIVERSITY KAOHSIUNG 80424, TAIWAN E-mail: [email protected] 4NATIONAL CENTER FOR THEORETICAL SCIENCES TAIWAN Received June 1, 2007; Revised March 24, 2009 Published online 11 May 2009 in Wiley InterScience (www.interscience.wiley.com). DOI 10.1002/jgt.20429 Abstract: A k-fold coloring of a graph is a function that assigns to each vertex a set of k colors, so that the color sets assigned to adjacent Contract grant sponsor: NSFC; Contract grant number: 10671033 (to W.L.); Contract grant sponsor: National Science Foundation; Contract grant number: DMS 0302456 (to D.D.L.); Contract grant sponsor: National Science Council; Contract grant number: NSC95-2115-M-110-013-MY3 (to X.Z.). Journal of Graph Theory ᭧ 2009 Wiley Periodicals, Inc. 311 312 JOURNAL OF GRAPH THEORY vertices are disjoint. The kth chromatic number of a graph G, denoted by k (G), is the minimum total number of colors used in a k-fold coloring of G. Let (G) denote the Mycielskian of G. For any positive integer k,it + ≤ ≤ + holds that k (G) 1 k( (G)) k(G) k (W. Lin, Disc. Math., 308 (2008), 3565–3573). Although both bounds are attainable, it was proved in (Z. Pan, X.
    [Show full text]
  • Automorphism Groups of Simple Graphs
    AUTOMORPHISM GROUPS OF SIMPLE GRAPHS LUKE RODRIGUEZ Abstract Group and graph theory both provide interesting and meaninful ways of examining relationships between elements of a given set. In this paper we investigate connections between the two. This investigation begins with automorphism groups of common graphs and an introduction of Frucht's Theorem, followed by an in-depth examination of the automorphism groups of generalized Petersen graphs and cubic Hamiltonian graphs in LCF notation. In conclusion, we examine how Frucht's Theorem applies to the specific case of cubic Hamiltonian graphs. 1. Group Theory Fundamentals In the field of Abstract Algebra, one of the fundamental concepts is that of combining particular sets with operations on their elements and studying the resulting behavior. This allows us to consider a set in a more complete way than if we were just considering their elements themselves outside of the context in which they interact. For example, we might be interested in how the set of all integers modulo m behaves under addition, or how the elements of a more abstract set S behave under some set of permutations defined on the elements of S. Both of these are examples of a group. Definition 1.1. A group is a set S together with an operation ◦ such that: (1) For all a; b 2 S, the element a ◦ b = c has the property that c 2 S. (2) For all a; b; c 2 S, the equality a ◦ (b ◦ c) = (a ◦ b) ◦ c holds. (3) There exists an element e 2 S such that a ◦ e = e ◦ a = a for all a 2 S.
    [Show full text]
  • Automorphism Group of Graphs (Supplemental Material for Intro to Graph Theory)
    Automorphism Group of Graphs (Supplemental Material for Intro to Graph Theory) Robert A. Beeler∗ January 15, 2018 1 Introduction and Preliminary Results In this supplement, we will assume that all graphs are undirected graphs with no loops or multiple edges. In graph theory, we talk about graph isomor- phisms. As a reminder, an isomorphism between graphs G and H is a bijec- tion φ : V (G) → V (H) such that uv ∈ E(G) if and only if φ(u)φ(v) ∈ E(H). 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). This definition gener- alizes to digraphs, multigraphs, and graph with loops. Let Aut(G) denote the set of all automorphisms on a graph G. Note that this forms a group under function composition. In other words, (i) Aut(G) is closed under function composition. (ii) Function composition is associative on Aut(G). This follows from the fact that function composition is associative in general. (iii) There is an identity element in Aut(G). This is mapping e(v) = v for all v ∈ V (G). ∗Department of Mathematics and Statistics, East Tennessee State University, Johnson City, TN 37614-1700 USA email: [email protected] 1 2 a c d b d b c a e α a c b d b d c a β αβ Figure 1: A graph and its automorphisms (iv) For every σ ∈ Aut(G), there is an inverse element σ−1 ∈ Aut(G).
    [Show full text]
  • On B-Colorings and B-Continuity of Graphs
    On b-colorings and b-continuity of graphs By the Faculty of Mathematics and Computer Science of the Technische Universität Bergakademie Freiberg approved Thesis to attain the academic degree doctor rerum naturalium Dr. rer. nat., submitted by Dipl.-Math. Mais Alkhateeb born on January 24, 1979 in Tartous, Syria Referees: Prof. Dr. rer. nat. Ingo Schiermeyer Prof. Dr. rer. nat. Margit Voigt Conferment date: Freiberg, June 28, 2012 To my Home Syria I feel it’s my duty to offer my sincere gratitude to each person who has helped me reach my aim here, either directly or indirectly. I am deeply indebted to my supervisor, Professor Ingo Schiermeyer, and Doctor Anja Kohl for all their help and support. They were there for me whenever I needed them, answered my questions, monitored my progress, helped me and corrected me when I got off the subject. Some shared their knowledge, some shared their experience, some inspired me, but all of them shared the passion I had for this project and made this possible for me. I thank also the Institute of Discrete Mathematics and Algebra, the professors, and all the institute members who gave me the direction and walked with me all along this way. Special thanks go to Professor Margit Voigt for all her interesting suggestions and for refereeing this PhD thesis. I want to remember a few people in my life at this moment, who made this possible for me. I start with my parents who had this vision of providing the best education for their child and created all possible avenues for growth, making numerous personal sacrifices in the process.
    [Show full text]
  • Graph Classes Generated by Mycielskians
    Discussiones Mathematicae Graph Theory 40 (2020) 1163–1173 doi:10.7151/dmgt.2345 GRAPH CLASSES GENERATED BY MYCIELSKIANS Mieczyslaw Borowieckia, Piotr Borowieckib,1 Ewa Drgas-Burchardta and Elzbieta˙ Sidorowicza aInstitute of Mathematics University of Zielona G´ora Prof. Z. Szafrana 4a, 65–516 Zielona G´ora, Poland bFaculty of Electronics, Telecommunications and Informatics Gda´nsk University of Technology Narutowicza 11/12, 80-233 Gda´nsk, Poland e-mail: [email protected] [email protected] [email protected] [email protected] Abstract In this paper we use the classical notion of weak Mycielskian M ′(G) ′ ′ ′ of a graph G and the following sequence: M0(G) = G, M1(G) = M (G), ′ ′ ′ and Mn(G) = M Mn−1(G), to show that if G is a complete graph of order p, then the above sequence is a generator of the class of p-colorable graphs. Similarly, using Mycielskian M(G) we show that analogously de- fined sequence is a generator of the class consisting of graphs for which the chromatic number of the subgraph induced by all vertices that belong to at least one triangle is at most p. We also address the problem of characterizing the latter class in terms of forbidden graphs. Keywords: Mycielski graphs, graph coloring, chromatic number. 2010 Mathematics Subject Classification: 05C15, 05C75, 68R10, 05C60. 1. Introduction The notion of the Mycielski graph (also called the Mycielskian of a graph) was introduced in 1955 by Mycielski [17], which led to the famous construction of 1 Partially supported under Ministry of Science and Higher Education (Poland) subsidy for Gda´nsk University od Technology.
    [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]