Chapter 8 Graph Colouring

Total Page:16

File Type:pdf, Size:1020Kb

Chapter 8 Graph Colouring Chapter 8 Graph colouring 8.1 Vertex colouring A (vertex) colouring of a graph G is a mapping c : V(G) S. The elements of S are called → colours; the vertices of one colour form a colour class. If S = k, we say that c is a k-colouring | | (often we use S = 1,...,k ). A colouring is proper if adjacent vertices have different colours. { } A graph is k-colourable if it has a proper k-colouring. The chromatic number χ(G) is the least k such that G is k-colourable. Obviously, χ(G) exists as assigning distinct colours to vertices yields a proper V(G) -colouring. An optimal colouring of G is a χ(G)-colouring. A graph G is | | k-chromatic if χ(G)=k. In a proper colouring, each colour class is a stable set. Hence a k-colouring may also be seen as a partition of the vertex set of G into k disjoint stable sets S = v c(v)=i for 1 i k. i { | } ≤ ≤ Therefore k-colourable are also called k-partite graphs. Moreover, 2-colourable graphs are very often called bipartite. Clearly, if H is a subgraph of G then any proper colouring of G is a proper colouring of H. Proposition 8.1. If H is a subgraph of G, then χ(H) χ(G). ≤ Proposition 8.2. χ(G)=max χ(C),C connected component of G . { } Proof. Proposition 8.1 gives the inequality χ(G) max χ(C),C connected component of G ≥ { } because every connected component of G is a subgraph of G. Let us now prove the opposite inequality. Let C1,C2,...,Cp be the connected components of G. For 1 i p, let c be a proper colouring of C with colours 1,2,...,χ(C ). Let c be the union ≤ ≤ i i i of the c that is the colouring of G defined by c(v)=c (v) for all v C . Since there is no edge be- i i ∈ i tween two vertices in different connected component, c is a proper colouring of G with colours 1,2,...,max χ(C ) 1 i p . Hence χ(G) max χ(C),C connected component of G . { i | ≤ ≤ } ≤ { } Often in the following, we will consider connected graphs. 113 114 CHAPTER 8. GRAPH COLOURING 8.1.1 Complexity On the algorithmic point of view, one may wonder what is the complexity of computing the chromatic number of graph. Moreover, for evey fixed k, we might ask for the complexity of deciding if a graph is k-colourable. k-COLOURABILITY Input: A graph G. Question: Is Gk-colourable? The 1-colourable graphs are the empty graphs (i.e. graphs with no edges). The 2-colourable graphs are the bipartite graphs and can be characterized and recognized in polynomial time (See Section 2.3). Hence for k 2, k-COLOURABILITY is polynomial-time solvable. In constrast, ≤ we now prove that k-COLOURABILITY is NP-complete for all k 3. ≥ Theorem 8.3 (Garey, Johnson and Stockmeyer [12]). 3-COLOURABILITY is NP-complete. Proof. 3-COLOURABILITY is clearly is NP as every proper 3-colouring is a certificate. To prove its hardness, we use a reduction from 3-SAT. Let Φ be a 3-SAT formula with n variables x1,...,xn and m clauses C1,...,Cm. Let us create a graph GΦ as follows: Create a 3-cycle with vertices v , v and v ; • true f alse base For each variable x , create two vertices x andx ¯ , and create the 3-cycle (v ,v ,v¯ ); • i i i base i i For each clause C = , add a small gadget graph G containing the vertices , • j 1 ∨ 2 ∨ 3 j 1 2, 3, v f alse and vbase as depicted in Figure 8.1. v j l3 w j y j l2 vbase u j t j l1 v f alse z j Figure 8.1: The clause gadget G j We claim that Φ is satisfiable if and only if GΦ is 3-colourable. Suppose first that GΦ is 3-colourable. Let c be proper colouring of GΦ with the three colours true, f alse and base. Without loss of generality, we may assume that c(vtrue)=true, c(v f alse)= f alse and c(v )=base. Then for each variable x , c(x ),c(x¯ ) = true, f alse , so c induces base i { i i } { } a truth assignment. Let us now prove that this truth assigment satisfies Φ. Suppose for a contradiction, that a clause C = is not satisfied. Then c( )=c( )=c( )= f alse. j 1 ∨ 2 ∨ 3 1 2 3 8.1. VERTEX COLOURING 115 Hence c(u ),c(v ) = base,true , so c(w )= f alse. Now c(t )=true, because it is adajcent { j j } { } j j to v f alse and vbase, so c(y j)=base. But z j is adjacent to 1, t j and y j which are coloured f alse, true and base respectively. This contradicts the fact that c is proper. Reciprocally, suppose that Φ is satisfiable. Let f be a truth assignment satisfying Φ. Then f defines a colouring of the xi andx ¯i with colours true and f alse. This colouring can be extended properly by setting f (vtrue)=true, f (v f alse)= f alse and f (vbase)=base. One can then check that this colouring can be extended properly to each G j using the colours three colours true, f alse, and base (Exercise 8.2). Corollary 8.4. For all k 3,k-COLOURABILITY is NP-complete. ≥ Proof. We can easily reduce 3-COLOURABILITY to k-COLOURABILITY. Let G be a graph. Let H be the graph obtained from the disjoint union of G and the complete graph Kk 3 by adding all − edges between V(G) and V(Kk 3). Easily G is 3-colourable if and only if H is k-colourable. − Furthermore, it is NP-hard to approximate the chromatic number within V(G) ε0 for some | | positive constant ε0 as shown by Lund and Yannakakis [19]. 8.1.2 Lower bounds for χ(G) Clearly, the complete graph Kn requires n colours, so χ(Kn)=n. Together with Proposition 8.1, it yields the following. Proposition 8.5. χ(G) ω(G). ≥ This bound can be tight, but it can also be very loose. Indeed, for any given integers k l, ≤ there are graphs with clique number k and chromatic number l. For example, the fact that a graph can be triangle-free (ω(G) 2) and yet have a large chromatic number has been estab- ≤ lished by a number of mathematicians including Descartes (alias Tutte) [7] (See Exercise 8.8), Kelly and Kelly [17] and Zykov [29]. We present here a proof of this fact due to Mycielski [21]. Theorem 8.6. For every positive integer k, there exists a triangle-free k-chromatic graph. Proof. The Mycielski graphs M , k 1 are defined inductively as follows. M = K and k ≥ 1 1 M = K . For k 2, let V(M )= v ,v ,...,v . The graph M is defined by V(M )= 2 2 ≥ k { 1 2 n} k+1 k+1 V(M ) w ,w ,...,w ,z and E(M )=E(M ) w v ,v v E(M ) w z,1 i n . k ∪{ 1 2 n } k+1 k ∪{ i j i j ∈ k }∪{ i ≤ ≤ } See Figure 8.2. Let us show by induction on k 1 that M is triangle-free and k-chromatic, the result ≥ k+1 holding trivially for k = 1. Let us first show that it is triangle-free. W = w ,w ,...,w is a stable set of M and z is { 1 2 n} k+1 adjacent to no vertex of Mk. So z is in no triangle. In addition, if there is a triangle T in Mk+1, then two of the three vertices must belong to Mk and the third vertex must belong to W, say V(T)= w ,v ,v . Since w is adjacent to v and v , by definition of M it follows that v is { i j k} i j k k+1 i also adjacent to v j and vk. Hence vi, v j and vk induce a triangle in Mk, which is a contradiction. Thus, as claimed, Mk+1 is triangle-free. 116 CHAPTER 8. GRAPH COLOURING v1 w1 v2 w2 v3 z w3 v1 w1 z v4 w4 v2 w2 v5 w5 M2 M3 M4 Figure 8.2: The graphs M2, M3 and M4. Next, we show that χ(Mk+1)=k + 1. Since Mk is a subgraph of Mk+1, by Proposition 8.1, χ(M ) k. Let a k-colouring of H in 1,...,k be given. Assign to w the same colour k+1 ≥ { } i that is assigned to v for 1 i n and assign k + 1 to z. The obtained colouring is a proper i ≤ ≤ (k + 1)-colouring of M and so χ(M ) k + 1. Suppose that χ(M )=k. Then there k+1 k+1 ≤ k+1 is a k-colouring of M with colours 1,...,k . Without loss of generality, we may ssume k+1 { } that z is coloured k. Then no vertex of W is coloured k. For each vertex vi of Mk coloured k, recolour it with the colour assigned to wi. Because the neighbours of vi are also neighbours of w , this produces a proper colouring of M . Moreover this colouring uses k 1 colours. This is i k − a contradiction, thus χ(M ) k + 1 and so χ(M )=k + 1.
Recommended publications
  • 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]
  • 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]
  • Assortativity and Mixing
    Assortativity and Assortativity and Mixing General mixing between node categories Mixing Assortativity and Mixing Definition Definition I Assume types of nodes are countable, and are Complex Networks General mixing General mixing Assortativity by assigned numbers 1, 2, 3, . Assortativity by CSYS/MATH 303, Spring, 2011 degree degree I Consider networks with directed edges. Contagion Contagion References an edge connects a node of type µ References e = Pr Prof. Peter Dodds µν to a node of type ν Department of Mathematics & Statistics Center for Complex Systems aµ = Pr(an edge comes from a node of type µ) Vermont Advanced Computing Center University of Vermont bν = Pr(an edge leads to a node of type ν) ~ I Write E = [eµν], ~a = [aµ], and b = [bν]. I Requirements: X X X eµν = 1, eµν = aµ, and eµν = bν. µ ν ν µ Licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License. 1 of 26 4 of 26 Assortativity and Assortativity and Outline Mixing Notes: Mixing Definition Definition General mixing General mixing Assortativity by I Varying eµν allows us to move between the following: Assortativity by degree degree Definition Contagion 1. Perfectly assortative networks where nodes only Contagion References connect to like nodes, and the network breaks into References subnetworks. General mixing P Requires eµν = 0 if µ 6= ν and µ eµµ = 1. 2. Uncorrelated networks (as we have studied so far) Assortativity by degree For these we must have independence: eµν = aµbν . 3. Disassortative networks where nodes connect to nodes distinct from themselves. Contagion I Disassortative networks can be hard to build and may require constraints on the eµν.
    [Show full text]
  • A Faster Parameterized Algorithm for PSEUDOFOREST DELETION
    A faster parameterized algorithm for PSEUDOFOREST DELETION Citation for published version (APA): Bodlaender, H. L., Ono, H., & Otachi, Y. (2018). A faster parameterized algorithm for PSEUDOFOREST DELETION. Discrete Applied Mathematics, 236, 42-56. https://doi.org/10.1016/j.dam.2017.10.018 Document license: Unspecified DOI: 10.1016/j.dam.2017.10.018 Document status and date: Published: 19/02/2018 Document Version: Accepted manuscript including changes made at the peer-review stage Please check the document version of this publication: • A submitted manuscript is the version of the article upon submission and before peer-review. There can be important differences between the submitted version and the official published version of record. People interested in the research are advised to contact the author for the final version of the publication, or visit the DOI to the publisher's website. • The final author version and the galley proof are versions of the publication after peer review. • The final published version features the final layout of the paper including the volume, issue and page numbers. Link to publication 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 • You may freely distribute the URL identifying the publication in the public portal.
    [Show full text]
  • Group, Graphs, Algorithms: the Graph Isomorphism Problem
    Proc. Int. Cong. of Math. – 2018 Rio de Janeiro, Vol. 3 (3303–3320) GROUP, GRAPHS, ALGORITHMS: THE GRAPH ISOMORPHISM PROBLEM László Babai Abstract Graph Isomorphism (GI) is one of a small number of natural algorithmic problems with unsettled complexity status in the P / NP theory: not expected to be NP-complete, yet not known to be solvable in polynomial time. Arguably, the GI problem boils down to filling the gap between symmetry and regularity, the former being defined in terms of automorphisms, the latter in terms of equations satisfied by numerical parameters. Recent progress on the complexity of GI relies on a combination of the asymptotic theory of permutation groups and asymptotic properties of highly regular combinato- rial structures called coherent configurations. Group theory provides the tools to infer either global symmetry or global irregularity from local information, eliminating the symmetry/regularity gap in the relevant scenario; the resulting global structure is the subject of combinatorial analysis. These structural studies are melded in a divide- and-conquer algorithmic framework pioneered in the GI context by Eugene M. Luks (1980). 1 Introduction We shall consider finite structures only; so the terms “graph” and “group” will refer to finite graphs and groups, respectively. 1.1 Graphs, isomorphism, NP-intermediate status. A graph is a set (the set of ver- tices) endowed with an irreflexive, symmetric binary relation called adjacency. Isomor- phisms are adjacency-preseving bijections between the sets of vertices. The Graph Iso- morphism (GI) problem asks to determine whether two given graphs are isomorphic. It is known that graphs are universal among explicit finite structures in the sense that the isomorphism problem for explicit structures can be reduced in polynomial time to GI (in the sense of Karp-reductions1) Hedrlı́n and Pultr [1966] and Miller [1979].
    [Show full text]
  • Navigating Networks by Using Homophily and Degree
    Navigating networks by using homophily and degree O¨ zgu¨r S¸ ims¸ek* and David Jensen Department of Computer Science, University of Massachusetts, Amherst, MA 01003 Edited by Peter J. Bickel, University of California, Berkeley, CA, and approved July 11, 2008 (received for review January 16, 2008) Many large distributed systems can be characterized as networks We show that, across a wide range of synthetic and real-world where short paths exist between nearly every pair of nodes. These networks, EVN performs as well as or better than the best include social, biological, communication, and distribution net- previous algorithms. More importantly, in the majority of cases works, which often display power-law or small-world structure. A where previous algorithms do not perform well, EVN synthesizes central challenge of distributed systems is directing messages to whatever homophily and degree information can be exploited to specific nodes through a sequence of decisions made by individual identify much shorter paths than any previous method. nodes without global knowledge of the network. We present a These results have implications for understanding the func- probabilistic analysis of this navigation problem that produces a tioning of current and prospective distributed systems that route surprisingly simple and effective method for directing messages. messages by using local information. These systems include This method requires calculating only the product of the two social networks routing messages, referral systems for finding measures widely used to summarize all local information. It out- informed experts, and also technological systems for routing performs prior approaches reported in the literature by a large messages on the Internet, ad hoc wireless networking, and margin, and it provides a formal model that may describe how peer-to-peer file sharing.
    [Show full text]
  • The Perceived Assortativity of Social Networks: Methodological Problems and Solutions
    The perceived assortativity of social networks: Methodological problems and solutions David N. Fisher1, Matthew J. Silk2 and Daniel W. Franks3 Abstract Networks describe a range of social, biological and technical phenomena. An important property of a network is its degree correlation or assortativity, describing how nodes in the network associate based on their number of connections. Social networks are typically thought to be distinct from other networks in being assortative (possessing positive degree correlations); well-connected individuals associate with other well-connected individuals, and poorly-connected individuals associate with each other. We review the evidence for this in the literature and find that, while social networks are more assortative than non-social networks, only when they are built using group-based methods do they tend to be positively assortative. Non-social networks tend to be disassortative. We go on to show that connecting individuals due to shared membership of a group, a commonly used method, biases towards assortativity unless a large enough number of censuses of the network are taken. We present a number of solutions to overcoming this bias by drawing on advances in sociological and biological fields. Adoption of these methods across all fields can greatly enhance our understanding of social networks and networks in general. 1 1. Department of Integrative Biology, University of Guelph, Guelph, ON, N1G 2W1, Canada. Email: [email protected] (primary corresponding author) 2. Environment and Sustainability Institute, University of Exeter, Penryn Campus, Penryn, TR10 9FE, UK Email: [email protected] 3. Department of Biology & Department of Computer Science, University of York, York, YO10 5DD, UK Email: [email protected] Keywords: Assortativity; Degree assortativity; Degree correlation; Null models; Social networks Introduction Network theory is a useful tool that can help us explain a range of social, biological and technical phenomena (Pastor-Satorras et al 2001; Girvan and Newman 2002; Krause et al 2007).
    [Show full text]
  • Chapter 10.8: Graph Coloring Tuesday, August 11
    Chapter 10.8: Graph Coloring Tuesday, August 11 Summary • Dual graph: formed by putting a vertex at each face of a graph and connecting vertices if the corre- sponding faces are adjacent. • Chromatic number (χ(G)): smallest number of colors required to color each vertex of the graph so that no adjacent vertices have the same color. • Independence number (α(G)): the size of the largest set S of vertices such that no two vertices in S share an edge. • Greedy algorithm: visit the vertices in random order and color each vertex with the first available color. • If G is planar then χ(G) ≤ 4. Coloring and Independence 1. (F) Find α(G) and χ(G) for each of the following: (a) Kn: α(G) = 1, χ(G) = n (b) Cn: α(G) = bn=2c, χ(G) = 2 if n is even and 3 if n is odd. (c) Pn: α(G) = dn=2e, χ(G) = 2. (d) Km;n: α(G) = max(m; n), χ(G) = 2. 2. What is χ(G), where G is a tree? χ(G) = 2. Prove by induction. 3. (F) For any graph G with n vertices, χ(G) ≤ n − α(G) + 1. Color α(G) of the vertices with 1 of the colors, then each of the other n − α(G) vertices gets a different color: total number of colors is n − α(G) + 1. 4. For any graph G with n vertices, α(G)χ(G) ≥ n. Let Ci be the set of vertices given color i. Since all of these vertices must be non-adjacent we know P P that jCij ≤ α(G) for any i.
    [Show full text]
  • Assortativity Measures for Weighted and Directed Networks
    Assortativity measures for weighted and directed networks Yelie Yuan1, Jun Yan1, and Panpan Zhang2,∗ 1Department of Statistics, University of Connecticut, Storrs, CT 06269 2Department of Biostatistics, Epidemiology and Informatics, University of Pennsylvania, Philadelphia, PA 19104 ∗Corresponding author: [email protected] January 15, 2021 arXiv:2101.05389v1 [stat.AP] 13 Jan 2021 Abstract Assortativity measures the tendency of a vertex in a network being connected by other ver- texes with respect to some vertex-specific features. Classical assortativity coefficients are defined for unweighted and undirected networks with respect to vertex degree. We propose a class of assortativity coefficients that capture the assortative characteristics and structure of weighted and directed networks more precisely. The vertex-to-vertex strength correlation is used as an example, but the proposed measure can be applied to any pair of vertex-specific features. The effectiveness of the proposed measure is assessed through extensive simula- tions based on prevalent random network models in comparison with existing assortativity measures. In application World Input-Ouput Networks, the new measures reveal interesting insights that would not be obtained by using existing ones. An implementation is publicly available in a R package wdnet. 1 Introduction In traditional network analysis, assortativity or assortative mixing (Newman, 2002) is a mea- sure assessing the preference of a vertex being connected (by edges) with other vertexes in a network. The measure reflects the principle of homophily (McPherson et al., 2001)|the tendency of the entities to be associated with similar partners in a social network. The prim- itive assortativity measure proposed by Newman(2002) was defined to study the tendency of connections between nodes based on their degrees, which is why it is also called degree-degree correlation (van der Hofstad and Litvak, 2014).
    [Show full text]
  • Graph Theory, Part 2
    Graph Theory, Part 2 7 Coloring Suppose that you are responsible for scheduling times for lectures in a university. You want to make sure that any two lectures with a common student occur at different times to avoid a conflict. We could put the various lectures on a chart and mark with an \X" any pair that has students in common: Lecture A C G H I L M P S Astronomy X X X X Chemistry X X Greek X X X X X History X X X X Italian X X X Latin X X X X X X Music X X X X Philosophy X X Spanish X X X X A more convenient representation of this information is a graph with one vertex for each lecture and in which two vertices are joined if there is a conflict between them: S H P C I L G A M Now, we cannot schedule two lectures at the same time if there is a conflict, but we would like to use as few separate times as possible, subject to this constraint. How many different times are necessary? We can code each time with a color, for example 11:00-12:00 might be given the color green, and those lectures that meet at this time will be colored green. The no-conflict rule then means that we need to color the vertices of our graph in such a way that no two adjacent vertices (representing courses which conflict with each other) have the same color. This motivates us to make a definition: Definition 15 (Proper Coloring, k-Coloring, k-Colorable).
    [Show full text]
  • Spatial Analysis and Modeling of Urban Transportation Networks
    Spatial analysis and modeling of urban transportation networks Jingyi Lin Doctoral Thesis in Geodesy and Geoinformatics with Specialization in Geoinformatics Royal Institute of Technology Stockholm, Sweden, 2017 TRITA SoM 2017-15 ISRN KTH/SoM/2017-15/SE ISBN 978-91-7729-613-3 Doctoral Thesis Royal Institute of Technology (KTH) Department of Urban Planning and Environment Division of Geodesy and Geoinformatics SE-100 44 Stockholm Sweden © Jingyi Lin, 2017 Printed by US AB, Sweden 2017 Abstract Transport systems in general, and urban transportation systems in particular, are the backbone of a country or a city, therefore play an intrinsic role in the socio- economic development. There have been numerous studies on real transportation systems from multiple fileds, including geography, urban planning, and engineering. Geographers have extensively investigated transportation systems, and transport geography has developed as an important branch of geography with various studies on system structure, efficiency optimization, and flow distribution. However, the emergence of complex network theory provided a brand-new perspective for geographers and other researchers; therefore, it invoked more widespread interest in exploring transportation systems that present a typical node-link network structure. This trend inspires the author and, to a large extent, constitutes the motivation of this thesis. The overall objective of this thesis is to study and simulate the structure and dynamics of urban transportation systems, including aviation systems and ground transportation systems. More specificically, topological features, geometric properties, and dynamic evolution processes are explored and discussed in this thesis. To illustrate different construction mechanisms, as well as distinct evolving backgrounds of aviation systems and ground systems, China’s aviation network, U.S.
    [Show full text]