Graph Theory

Total Page:16

File Type:pdf, Size:1020Kb

Graph Theory Combinatorics: The Fine Art of Counting Week 9 Lecture Notes – Graph Theory For completeness I have included the definitions from last week’s lecture which we will be using in today’s lecture along with statements of the theorems we proved. Definitions Graph: A graph G = (V, E) consists of an arbitrary set of objects V called vertices and a set E which contains unordered pairs of distinct elements of V called edges. Adjacent: Two vertices in a graph are adjacent if there is an edge containing both of them. Two edges are adjacent if they contain a common vertex. Adjacent vertices are called neighbors. Degree: For any vertex v in a graph, the degree of the vertex is equal to the number of edges which contain the vertex. The degree of v is denoted by d(v). Regular Graph: A graph in which every vertex has the same degree is called a regular graph. If all vertices have degree k, the graph is said to be k-regular. Complete Graph: The complete graph on n vertices Kn consists of the vertex set V = {v1,v2,…,vn} and the edge set E containing all pairs (vi,vj) of vertices in V. Isomorphic: Two graphs are isomorphic if there exists a one-to-one correspondence between their vertex sets (i.e. a re-labeling) which induces a one-to-one correspondence between their edge sets. More formally, if L is a re-labeling which maps the vertices of G to the vertices of H, then the edge set of H is precisely the set of edges (L(v),L(w)) where (v,w) is an edge in G. Sub-graph: A graph G1 = (V1, E1) is a sub-graph of G2 = (V2, E2) whenever V1 ⊆ V2 and E1 ⊆ E2. Path: A path of length n is the graph Pn on n+1 vertices {v0, v1, v2, …, vn} with n edges (v0,v1), (v1,v2), …, (vn-1,vn). Cycle: A cycle of length n is the graph Cn on n vertices {v0, v2, …, vn-1} with n edges (v0,v1), (v1,v2), …, (vn-1,v0). We say that a given graph contains a path (or cycle) of length n if it contains a sub-graph which is isomorphic to Pn (or Cn). Connected: A graph that contains a path between every pair of vertices is connected. Every graph consists of one or more disjoint connected sub-graphs called the connected components. Distance: The distance between two connected vertices is the length of the shortest path between the vertices. Diameter: The diameter of a connected graph is the maximum distance between any two vertices in the graph. 1 Forests and Trees: A graph which does not contain a cycle is called a forest. If it is a connected graph, it is called a tree. The connected components of a forest are trees. End-points and Isolated Vertices: An end-point is a vertex with degree 1. An isolated vertex is a vertex with degree 0. Hamiltonian Graph: A graph which contains a Hamiltonian cycle, i.e. a cycle which includes all the vertices, is said to be Hamiltonian. Walks, Trails, and Circuits: A walk in a graph is a sequence of adjacent edges. A trail is a walk with distinct edges. A circuit is a trail in which the first and last edge are adjacent. Eulerian Graph: A trail which includes all of the edges of a graph and visits every vertex is called an Eulerian Tour. If a graph contains an Eulerian tour which is a circuit, i.e. an Eulerian circuit, the graph is simply said to be Eulerian. Theorems Proven Last Week Theorem 1: The sum of the degrees of all the vertices in a graph is equal to twice the number of edges, i.e. Σd(v) = 2|E| Theorem 2: Every tree with at least one edge contains two end-points Theorem 3: A graph with n vertices is a tree if and only if it is connected and has n-1 edges. Theorem 4: A graph is Eulerian if and only if it is a connected graph in which every vertex has even degree. Corollary 4.1: A graph contains an Eulerian tour if and only if it is a connected graph with at most two vertices of odd degree. New Material We begin with a simple corollary to theorem 3 which follows almost immediately. Corollary 3.1: A graph with n vertices and at least n edges contains a cycle. Proof: Let G be a graph with n vertices. If G is connected then by theorem 3 it is not a tree, so it contains a cycle. If G is not connected, one of its connected components has at least as many edges as vertices so this component is not a tree and must contain a cycle, hence G contains a cycle. QED This simple fact has a lot of practical applications, e.g. the sleepy mathematicians USAMO problem mentioned previously. In many situations it may be difficult to find a particular cycle, but just by counting edges we can prove that a cycle must exist. There are a few more basic facts about trees that are useful to know. Theorem 5: A graph is a tree if and only if there is a unique path between any two vertices. Proof: We have two things to prove, the “if” and the “only if”. Suppose G is a tree containing vertices v and w. G is connected so there is a path from v and w, we simply need to show that this path must be unique. Suppose there were two distinct paths from v and w. Starting from v, let s be the first vertex where these paths diverge. s could be equal to v, but it cannot be equal to 2 w since the paths must diverge somewhere. Let t be the first vertex where the paths meet again – there must be such a vertex since they meet at w. The two segments of the paths between s and t are disjoint, so together they form a cycle containing s and t which contradicts our supposition that G is a tree. Thus the path from v to w must be unique. Conversely, suppose G is a graph which contains a unique path between any two vertices. G is clearly connected. G cannot contain a cycle, because a cycle contains two distinct paths between any pair of vertices in it. Therefore G is a tree. QED Trees are very nice graphs to work with. Unfortunately, not all graphs are trees. However all connected graphs contain a tree which includes all the vertices. Such a graph is called a spanning tree. Spanning Trees: A spanning sub-graph of G is a sub-graph H which includes all the vertices of G. In the case where H is a tree, H is called a spanning tree. Theorem 6: Every connected graph contains a spanning tree. Proof: Let G be a connected graph. If G is a tree we are done, otherwise G must contain a cycle. Removing an edge from this cycle will result in a connected graph with the same vertex set as G but fewer edges. We can continue in this manner until there are no more cycles (there are only a finite number of edges to remove), at which point the remaining graph must be a tree. QED This proof gives us one way to construct a spanning tree, namely by removing edges from cycles. This is not a particular good method if the graph contains a lot of edges. A more efficient approach is to simply pick a vertex to be a seedling, and then “grow” the spanning tree by connecting vertices one at a time. As long as not all the vertices are in the tree, there must be a vertex in the tree which has a neighboring vertex not in the tree – simply pick one such vertex, connect it to the tree with a single edge, and repeat until all the vertices are in the tree. Spanning trees are useful in a lot of situations – efficiently broadcasting a message to all nodes in a network is but one example. We now look at perhaps the simplest case of graphs which aren’t trees, graphs where every vertex has degree 2. Theorem 7: A graph is 2-regular if and only if all its connected components are cycles. Proof: One direction of the theorem is trivial – a graph whose connected components are all cycles is clearly 2-regular. We prove the other direction by induction on the number of vertices in the graph. The base case is K3 which is 2-regular and has one connected component which is a cycle. For a graph with n > 3 vertices, note that by Theorem 1, a 2-regular graph with n vertices has n edges and by Corollary 3.1 such a graph must contain a cycle. Since the graph is 2- regular, none of the vertices in this cycle can be contained in any other edges, so the cycle is a connected component. The remainder of the graph (if any) is 2-regular and has less than n vertices so the inductive hypothesis applies. QED The theorem above is a very special instance of a much more general result regarding graphs which can be decomposed into cycles, but first we need to define exactly what we mean by this. Decomposition: A decomposition of a graph G is a partitioning of the edges of the graph among a collection of sub-graphs H1, H2, H3, …, Hn.
Recommended publications
  • On Treewidth and Graph Minors
    On Treewidth and Graph Minors Daniel John Harvey Submitted in total fulfilment of the requirements of the degree of Doctor of Philosophy February 2014 Department of Mathematics and Statistics The University of Melbourne Produced on archival quality paper ii Abstract Both treewidth and the Hadwiger number are key graph parameters in structural and al- gorithmic graph theory, especially in the theory of graph minors. For example, treewidth demarcates the two major cases of the Robertson and Seymour proof of Wagner's Con- jecture. Also, the Hadwiger number is the key measure of the structural complexity of a graph. In this thesis, we shall investigate these parameters on some interesting classes of graphs. The treewidth of a graph defines, in some sense, how \tree-like" the graph is. Treewidth is a key parameter in the algorithmic field of fixed-parameter tractability. In particular, on classes of bounded treewidth, certain NP-Hard problems can be solved in polynomial time. In structural graph theory, treewidth is of key interest due to its part in the stronger form of Robertson and Seymour's Graph Minor Structure Theorem. A key fact is that the treewidth of a graph is tied to the size of its largest grid minor. In fact, treewidth is tied to a large number of other graph structural parameters, which this thesis thoroughly investigates. In doing so, some of the tying functions between these results are improved. This thesis also determines exactly the treewidth of the line graph of a complete graph. This is a critical example in a recent paper of Marx, and improves on a recent result by Grohe and Marx.
    [Show full text]
  • Graph Varieties Axiomatized by Semimedial, Medial, and Some Other Groupoid Identities
    Discussiones Mathematicae General Algebra and Applications 40 (2020) 143–157 doi:10.7151/dmgaa.1344 GRAPH VARIETIES AXIOMATIZED BY SEMIMEDIAL, MEDIAL, AND SOME OTHER GROUPOID IDENTITIES Erkko Lehtonen Technische Universit¨at Dresden Institut f¨ur Algebra 01062 Dresden, Germany e-mail: [email protected] and Chaowat Manyuen Department of Mathematics, Faculty of Science Khon Kaen University Khon Kaen 40002, Thailand e-mail: [email protected] Abstract Directed graphs without multiple edges can be represented as algebras of type (2, 0), so-called graph algebras. A graph is said to satisfy an identity if the corresponding graph algebra does, and the set of all graphs satisfying a set of identities is called a graph variety. We describe the graph varieties axiomatized by certain groupoid identities (medial, semimedial, autodis- tributive, commutative, idempotent, unipotent, zeropotent, alternative). Keywords: graph algebra, groupoid, identities, semimediality, mediality. 2010 Mathematics Subject Classification: 05C25, 03C05. 1. Introduction Graph algebras were introduced by Shallon [10] in 1979 with the purpose of providing examples of nonfinitely based finite algebras. Let us briefly recall this concept. Given a directed graph G = (V, E) without multiple edges, the graph algebra associated with G is the algebra A(G) = (V ∪ {∞}, ◦, ∞) of type (2, 0), 144 E. Lehtonen and C. Manyuen where ∞ is an element not belonging to V and the binary operation ◦ is defined by the rule u, if (u, v) ∈ E, u ◦ v := (∞, otherwise, for all u, v ∈ V ∪ {∞}. We will denote the product u ◦ v simply by juxtaposition uv. Using this representation, we may view any algebraic property of a graph algebra as a property of the graph with which it is associated.
    [Show full text]
  • Counting Independent Sets in Graphs with Bounded Bipartite Pathwidth∗
    Counting independent sets in graphs with bounded bipartite pathwidth∗ Martin Dyery Catherine Greenhillz School of Computing School of Mathematics and Statistics University of Leeds UNSW Sydney, NSW 2052 Leeds LS2 9JT, UK Australia [email protected] [email protected] Haiko M¨uller∗ School of Computing University of Leeds Leeds LS2 9JT, UK [email protected] 7 August 2019 Abstract We show that a simple Markov chain, the Glauber dynamics, can efficiently sample independent sets almost uniformly at random in polynomial time for graphs in a certain class. The class is determined by boundedness of a new graph parameter called bipartite pathwidth. This result, which we prove for the more general hardcore distribution with fugacity λ, can be viewed as a strong generalisation of Jerrum and Sinclair's work on approximately counting matchings, that is, independent sets in line graphs. The class of graphs with bounded bipartite pathwidth includes claw-free graphs, which generalise line graphs. We consider two further generalisations of claw-free graphs and prove that these classes have bounded bipartite pathwidth. We also show how to extend all our results to polynomially-bounded vertex weights. 1 Introduction There is a well-known bijection between matchings of a graph G and independent sets in the line graph of G. We will show that we can approximate the number of independent sets ∗A preliminary version of this paper appeared as [19]. yResearch supported by EPSRC grant EP/S016562/1 \Sampling in hereditary classes". zResearch supported by Australian Research Council grant DP190100977. 1 in graphs for which all bipartite induced subgraphs are well structured, in a sense that we will define precisely.
    [Show full text]
  • Forbidding Subgraphs
    Graph Theory and Additive Combinatorics Lecturer: Prof. Yufei Zhao 2 Forbidding subgraphs 2.1 Mantel’s theorem: forbidding a triangle We begin our discussion of extremal graph theory with the following basic question. Question 2.1. What is the maximum number of edges in an n-vertex graph that does not contain a triangle? Bipartite graphs are always triangle-free. A complete bipartite graph, where the vertex set is split equally into two parts (or differing by one vertex, in case n is odd), has n2/4 edges. Mantel’s theorem states that we cannot obtain a better bound: Theorem 2.2 (Mantel). Every triangle-free graph on n vertices has at W. Mantel, "Problem 28 (Solution by H. most bn2/4c edges. Gouwentak, W. Mantel, J. Teixeira de Mattes, F. Schuh and W. A. Wythoff). Wiskundige Opgaven 10, 60 —61, 1907. We will give two proofs of Theorem 2.2. Proof 1. G = (V E) n m Let , a triangle-free graph with vertices and x edges. Observe that for distinct x, y 2 V such that xy 2 E, x and y N(x) must not share neighbors by triangle-freeness. Therefore, d(x) + d(y) ≤ n, which implies that d(x)2 = (d(x) + d(y)) ≤ mn. ∑ ∑ N(y) x2V xy2E y On the other hand, by the handshake lemma, ∑x2V d(x) = 2m. Now by the Cauchy–Schwarz inequality and the equation above, Adjacent vertices have disjoint neigh- borhoods in a triangle-free graph. !2 ! 4m2 = ∑ d(x) ≤ n ∑ d(x)2 ≤ mn2; x2V x2V hence m ≤ n2/4.
    [Show full text]
  • Network Analysis of the Multimodal Freight Transportation System in New York City
    Network Analysis of the Multimodal Freight Transportation System in New York City Project Number: 15 – 2.1b Year: 2015 FINAL REPORT June 2018 Principal Investigator Qian Wang Researcher Shuai Tang MetroFreight Center of Excellence University at Buffalo Buffalo, NY 14260-4300 Network Analysis of the Multimodal Freight Transportation System in New York City ABSTRACT The research is aimed at examining the multimodal freight transportation network in the New York metropolitan region to identify critical links, nodes and terminals that affect last-mile deliveries. Two types of analysis were conducted to gain a big picture of the region’s freight transportation network. First, three categories of network measures were generated for the highway network that carries the majority of last-mile deliveries. They are the descriptive measures that demonstrate the basic characteristics of the highway network, the network structure measures that quantify the connectivity of nodes and links, and the accessibility indices that measure the ease to access freight demand, services and activities. Second, 71 multimodal freight terminals were selected and evaluated in terms of their accessibility to major multimodal freight demand generators such as warehousing establishments. As found, the most important highways nodes that are critical in terms of connectivity and accessibility are those in and around Manhattan, particularly the bridges and tunnels connecting Manhattan to neighboring areas. Major multimodal freight demand generators, such as warehousing establishments, have better accessibility to railroad and marine port terminals than air and truck terminals in general. The network measures and findings in the research can be used to understand the inventory of the freight network in the system and to conduct freight travel demand forecasting analysis.
    [Show full text]
  • The Labeled Perfect Matching in Bipartite Graphs Jérôme Monnot
    The Labeled perfect matching in bipartite graphs Jérôme Monnot To cite this version: Jérôme Monnot. The Labeled perfect matching in bipartite graphs. Information Processing Letters, Elsevier, 2005, to appear, pp.1-9. hal-00007798 HAL Id: hal-00007798 https://hal.archives-ouvertes.fr/hal-00007798 Submitted on 5 Aug 2005 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. The Labeled perfect matching in bipartite graphs J´erˆome Monnot∗ July 4, 2005 Abstract In this paper, we deal with both the complexity and the approximability of the labeled perfect matching problem in bipartite graphs. Given a simple graph G = (V, E) with |V | = 2n vertices such that E contains a perfect matching (of size n), together with a color (or label) function L : E → {c1, . , cq}, the labeled perfect matching problem consists in finding a perfect matching on G that uses a minimum or a maximum number of colors. Keywords: labeled matching; bipartite graphs; NP-complete; approximate algorithms. 1 Introduction Let Π be a NPO problem accepting simple graphs G = (V,E) as instances, edge-subsets E′ ⊆ E verifying a given polynomial-time decidable property Pred as solutions, and the solutions cardinality as objective function; the labeled problem associated to Π, denoted by Labeled Π, seeks, given an instance I = (G, L) where G = (V,E) is a simple graph ′ and L is a mapping from E to {c1,...,cq}, in finding a subset E verifying Pred that optimizes the size of the set L(E′)= {L(e): e ∈ E′}.
    [Show full text]
  • Arxiv:2006.06067V2 [Math.CO] 4 Jul 2021
    Treewidth versus clique number. I. Graph classes with a forbidden structure∗† Cl´ement Dallard1 Martin Milaniˇc1 Kenny Storgelˇ 2 1 FAMNIT and IAM, University of Primorska, Koper, Slovenia 2 Faculty of Information Studies, Novo mesto, Slovenia [email protected] [email protected] [email protected] Treewidth is an important graph invariant, relevant for both structural and algo- rithmic reasons. A necessary condition for a graph class to have bounded treewidth is the absence of large cliques. We study graph classes closed under taking induced subgraphs in which this condition is also sufficient, which we call (tw,ω)-bounded. Such graph classes are known to have useful algorithmic applications related to variants of the clique and k-coloring problems. We consider six well-known graph containment relations: the minor, topological minor, subgraph, induced minor, in- duced topological minor, and induced subgraph relations. For each of them, we give a complete characterization of the graphs H for which the class of graphs excluding H is (tw,ω)-bounded. Our results yield an infinite family of χ-bounded induced-minor-closed graph classes and imply that the class of 1-perfectly orientable graphs is (tw,ω)-bounded, leading to linear-time algorithms for k-coloring 1-perfectly orientable graphs for every fixed k. This answers a question of Breˇsar, Hartinger, Kos, and Milaniˇc from 2018, and one of Beisegel, Chudnovsky, Gurvich, Milaniˇc, and Servatius from 2019, respectively. We also reveal some further algorithmic implications of (tw,ω)- boundedness related to list k-coloring and clique problems. In addition, we propose a question about the complexity of the Maximum Weight Independent Set prob- lem in (tw,ω)-bounded graph classes and prove that the problem is polynomial-time solvable in every class of graphs excluding a fixed star as an induced minor.
    [Show full text]
  • Lecture 9-10: Extremal Combinatorics 1 Bipartite Forbidden Subgraphs 2 Graphs Without Any 4-Cycle
    MAT 307: Combinatorics Lecture 9-10: Extremal combinatorics Instructor: Jacob Fox 1 Bipartite forbidden subgraphs We have seen the Erd}os-Stonetheorem which says that given a forbidden subgraph H, the extremal 1 2 number of edges is ex(n; H) = 2 (1¡1=(Â(H)¡1)+o(1))n . Here, o(1) means a term tending to zero as n ! 1. This basically resolves the question for forbidden subgraphs H of chromatic number at least 3, since then the answer is roughly cn2 for some constant c > 0. However, for bipartite forbidden subgraphs, Â(H) = 2, this answer is not satisfactory, because we get ex(n; H) = o(n2), which does not determine the order of ex(n; H). Hence, bipartite graphs form the most interesting class of forbidden subgraphs. 2 Graphs without any 4-cycle Let us start with the ¯rst non-trivial case where H is bipartite, H = C4. I.e., the question is how many edges G can have before a 4-cycle appears. The answer is roughly n3=2. Theorem 1. For any graph G on n vertices, not containing a 4-cycle, 1 p E(G) · (1 + 4n ¡ 3)n: 4 Proof. Let dv denote the degree of v 2 V . Let F denote the set of \labeled forks": F = f(u; v; w):(u; v) 2 E; (u; w) 2 E; v 6= wg: Note that we do not care whether (v; w) is an edge or not. We count the size of F in two possible ways: First, each vertex u contributes du(du ¡ 1) forks, since this is the number of choices for v and w among the neighbors of u.
    [Show full text]
  • From Tree-Depth to Shrub-Depth, Evaluating MSO-Properties in Constant Parallel Time
    From Tree-Depth to Shrub-Depth, Evaluating MSO-Properties in Constant Parallel Time Yijia Chen Fudan University August 5th, 2019 Parameterized Complexity and Practical Computing, Bergen Courcelle’s Theorem Theorem (Courcelle, 1990) Every problem definable in monadic second-order logic (MSO) can be decided in linear time on graphs of bounded tree-width. In particular, the 3-colorability problem can be solved in linear time on graphs of bounded tree-width. Model-checking monadic second-order logic (MSO) on graphs of bounded tree-width is fixed-parameter tractable. Monadic second-order logic MSO is the restriction of second-order logic in which every second-order variable is a set variable. A graph G is 3-colorable if and only if _ ^ G j= 9X19X29X3 8u Xiu ^ 8u :(Xiu ^ Xju) 16i63 16i<j63 ! ^ ^8u8v Euv ! :(Xiu ^ Xiv) . 16i63 MSO can also characterize Sat,Connectivity,Independent-Set,Dominating-Set, etc. Can we do better than linear time? Constant Parallel Time = AC0-Circuits. 0 A family of Boolean circuits Cn n2N areAC -circuits if for every n 2 N n (i) Cn computes a Boolean function from f0, 1g to f0, 1g; (ii) the depth of Cn is bounded by a fixed constant; (iii) the size of Cn is polynomially bounded in n. AC0 and parallel computation AC0-circuits parallel computation # of input gates length of input depth # of parallel computation steps size # of parallel processes AC0 and logic Theorem (Barrington, Immerman, and Straubing, 1990) A problem can be decided by a family of dlogtime uniform AC0-circuits if and only if it is definable in first-order logic (FO) with arithmetic.
    [Show full text]
  • Maximum and Minimum Degree in Iterated Line Graphs by Manu
    Maximum and minimum degree in iterated line graphs by Manu Aggarwal A thesis submitted to the Graduate Faculty of Auburn University in partial fulfillment of the requirements for the Degree of Master of Science Auburn, Alabama August 3, 2013 Keywords: iterated line graphs, maximum degree, minimum degree Approved by Dean Hoffman, Professor of Mathematics Chris Rodger, Professor of Mathematics Andras Bezdek, Professor of Mathematics Narendra Govil, Professor of Mathematics Abstract In this thesis we analyze two papers, both by Dr.Stephen G. Hartke and Dr.Aparna W. Higginson, on maximum [2] and minimum [3] degrees of a graph G under iterated line graph operations. Let ∆k and δk denote the minimum and the maximum degrees, respectively, of the kth iterated line graph Lk(G). It is shown that if G is not a path, then, there exist integers A and B such that for all k > A, ∆k+1 = 2∆k − 2 and for all k > B, δk+1 = 2δk − 2. ii Table of Contents Abstract . ii List of Figures . iv 1 Introduction . .1 2 An elementary result . .3 3 Maximum degree growth in iterated line graphs . 10 4 Minimum degree growth in iterated line graphs . 26 5 A puzzle . 45 Bibliography . 46 iii List of Figures 1.1 ............................................1 2.1 ............................................4 2.2 : Disappearing vertex of degree two . .5 2.3 : Disappearing leaf . .7 3.1 ............................................ 11 3.2 ............................................ 12 3.3 ............................................ 13 3.4 ............................................ 14 3.5 ............................................ 15 3.6 : When CD is not a single vertex . 17 3.7 : When CD is a single vertex . 18 4.1 ...........................................
    [Show full text]
  • Degrees & Isomorphism: Chapter 11.1 – 11.4
    “mcs” — 2015/5/18 — 1:43 — page 393 — #401 11 Simple Graphs Simple graphs model relationships that are symmetric, meaning that the relationship is mutual. Examples of such mutual relationships are being married, speaking the same language, not speaking the same language, occurring during overlapping time intervals, or being connected by a conducting wire. They come up in all sorts of applications, including scheduling, constraint satisfaction, computer graphics, and communications, but we’ll start with an application designed to get your attention: we are going to make a professional inquiry into sexual behavior. Specifically, we’ll look at some data about who, on average, has more opposite-gender partners: men or women. Sexual demographics have been the subject of many studies. In one of the largest, researchers from the University of Chicago interviewed a random sample of 2500 people over several years to try to get an answer to this question. Their study, published in 1994 and entitled The Social Organization of Sexuality, found that men have on average 74% more opposite-gender partners than women. Other studies have found that the disparity is even larger. In particular, ABC News claimed that the average man has 20 partners over his lifetime, and the av- erage woman has 6, for a percentage disparity of 233%. The ABC News study, aired on Primetime Live in 2004, purported to be one of the most scientific ever done, with only a 2.5% margin of error. It was called “American Sex Survey: A peek between the sheets”—raising some questions about the seriousness of their reporting.
    [Show full text]
  • Arxiv:1906.05510V2 [Math.AC]
    BINOMIAL EDGE IDEALS OF COGRAPHS THOMAS KAHLE AND JONAS KRUSEMANN¨ Abstract. We determine the Castelnuovo–Mumford regularity of binomial edge ideals of complement reducible graphs (cographs). For cographs with n vertices the maximum regularity grows as 2n/3. We also bound the regularity by graph theoretic invariants and construct a family of counterexamples to a conjecture of Hibi and Matsuda. 1. Introduction Let G = ([n], E) be a simple undirected graph on the vertex set [n]= {1,...,n}. x1 ··· xn x1 ··· xn Let X = ( y1 ··· yn ) be a generic 2 × n matrix and S = k[ y1 ··· yn ] the polynomial ring whose indeterminates are the entries of X and with coefficients in a field k. The binomial edge ideal of G is JG = hxiyj −yixj : {i, j} ∈ Ei⊆ S, the ideal of 2×2 mi- nors indexed by the edges of the graph. Since their inception in [5, 15], connecting combinatorial properties of G with algebraic properties of JG or S/ JG has been a popular activity. Particular attention has been paid to the minimal free resolution of S/ JG as a standard N-graded S-module [3, 11]. The data of a minimal free res- olution is encoded in its graded Betti numbers βi,j (S/ JG) = dimk Tori(S/ JG, k)j . An interesting invariant is the highest degree appearing in the resolution, the Castelnuovo–Mumford regularity reg(S/ JG) = max{j − i : βij (S/ JG) 6= 0}. It is a complexity measure as low regularity implies favorable properties like vanish- ing of local cohomology. Binomial edge ideals have square-free initial ideals by arXiv:1906.05510v2 [math.AC] 10 Mar 2021 [5, Theorem 2.1] and, using [1], this implies that the extremal Betti numbers and regularity can also be derived from those initial ideals.
    [Show full text]