Chapter 10: Graphs 10.1

Total Page:16

File Type:pdf, Size:1020Kb

Chapter 10: Graphs 10.1 Chapter 10: Graphs 10.1 - Introduction to Graphs Definition 1 (Graph). A graph G = (V; E) consists of a nonempty set V of vertices (or nodes) and a set E of edges. V may be finite or infinite { if V is finite we say the graph is finite, if V is infinite then we say the graph is infinite. Every edge has either one or two vertices associated with it, called its endpoints. An edge is said to connect its endpoints. Example 1. Definition 2 (Types of Graphs). Simple Graph: Undirected edges, no multiple edges, no loops. a f b e c d Multigraph: Undirected edges, multiple edges allowed, no loops. a f b e c d Pseudograph: Undirected edges, multiple edges allowed, loops allowed. a f b e c d 1 Digraph: Directed edges, no multiple edges [in the same direction], loops allowed. a f b e c d Simple Directed Graph (Simple Digraph): Directed edges, no multiple edges, no loops. a f b e c d Directed Multigraph: Directed edges, multiple edges allowed, loops allowed. a f b e c d Mixed Graph: Anything goes. a f b e c d 2 10.2 - Terminology and Special Graphs Definition 3. Two vertices u and v in an undirected graph G are said to be adjacent (or neighbors) if and only if u and v are endpoints of the same edge e of G. The edge e is said to be incident with u and v and said to connect u and v. Definition 4 (Neighborhood). The set of all neighbors of a vertex v in a graph G = (V; E) is denoted by N(v) and is called the neighborhood of v. If A ⊆ V then the set of all vertices in G that are adjacent to at least one vertex in A is [ N(A) = N(v): v2A Definition 5 (Degree). The degree of a vertex v in an undirected graph, denoted deg(v), is the number of edges incident with v. A loop at v contributes twice to the degree of v. Theorem 1 (The Handshaking Theorem). Suppose G = (V; E) is an undirected graph with jEj = m. Then X 2m = deg(v): v2V Definition 6. Suppose (u; v) is an edge of a directed graph G. Then u is said to be adjacent to v and v is said to be adjacent from u. We say that u is the initial vertex of (u; v) and that v is the terminal vertex of (u; v). Definition 7 (Degree). Let G be a directed graph. The in-degree of a vertex v is the number of edges with v as their terminal vertex, and is denoted by deg−(v). The out-degree of v is the number of edges with v as their initial vertex, and is denoted by deg+(v). A loop at v adds 1 to both the in- and out-degrees. 3 Special Graphs Complete Graphs Kn, n ≥ 1 Vertex set V = fv1; v2; v3; : : : ; vng. Edge set E = f(vi; vj) j 1 ≤ i < j ≤ ng (i.e., all possible edges). Cycles Cn, n ≥ 3 Vertex set V = fv1; v2; v3; : : : ; vng. Edge set E = f(v1; v2); (v2; v3); (v3; v4);::: (vn−1; vn); (vn; v1)g. Wheels Wn, n ≥ 3 Vertex set V = fv1; v2; v3; : : : ; vn; vn+1g. Edge set E = f(v1; v2); (v2; v3); (v3; v4);::: (vn−1; vn); (vn; v1); (vn+1; v1); (vn+1; v2); (vn+1; v3);:::; (vn+1; vn)g. n-Cubes Qn,, n ≥ 1 4 Bipartite Graphs Definition 8 (Bipartite Graph). A pseudograph [i.e., undirected, multiple edges and loops allowed] G = (V; E) is said 1 to be bipartite iff there is a \two-set partition fV1;V2g of V " such that every edge e 2 E has one of its endpoints in V1 and the other in V2. Complete Bipartite Graphs Km;n A simple bipartite graph with m + n vertices and as many edges as possbile: Theorem 2. A simple graph is bipartite iff it is possible to assign one of two different colors to each vertex of the graph so that no two adjacent vertices are assigned the same color. 1 In this context this means that V1 [ V2 = V and V1 \ V2 = ?. 5 Creating New Graphs from Old Definition 9 (Subgraph). A graph Ge = V;e Ee is a subgraph of G = (V; E) iff Ve ⊆ V and Ee ⊆ E. Definition 10 (Union and Intersection). The union of two graphs G1 = (V1;E1) and G2 = (V2;E2) is G1 [ G2 = (V1 [ V2;E1 [ E2). The intersection of G1 and G2 is G1 \ G2 = (V1 \ V2;E1 \ E2). Definition 11 (Complement). The complement of a graph G = (V; E) is the graph G = V; E = fall possible edges that are not also in Eg : Example 2. a a f b f b e c e c d d G1 G2 (a) Is the following graph a subgraph of either G1 or G2? f b c d (b) Find G1, G2, G1 [ G2, and G1 \ G2. 6 10.4 - Connectivity Definition 12 (Path of Length n). Let G = (V; E) be a pseudograph and let n be a positive integer. A path of length n between vertices v and w is a sequence of edges e1; e2; : : : ; en 2 E such that e1 = fv; v1g, e2 = fv1; v2g,..., en−1 = fvn−2; vn−1g, en = fvn−1; wg for some v1; v2; : : : ; vn−1 2 V . Example 3. a b e d c Definition 13 (Circuit). A circuit of length n is a path of length n with v = w (i.e., the same starting and ending vertex). Definition 14 (Simple Path/Circuit). A simple path or simple circuit is one in which no edge is repeated. Definition 15 (Connected). An undirected graph is said to be connected if and only if there is a path between every pair of distinct vertices. Example 4. a b a b d d c c Definition 16 (Disconnecting). We say that we have disconnected a graph when, given a connected graph, we remove vertices or edges (or both) to form a disconnected graph. Example 5. (10.4.1) a b c Are these paths? If so are they simple? circuits? What is the length? 1. a; e; b; c; b 2. a; e; a; d; b; c; a d e 3. e; b; a; d; b; e 4. c; b; d; a; e; c 7 10.5 - Euler and Hamilton Paths Definition 17 (Euler Path). An Euler path is a simple path containing every edge of G. Definition 18 (Euler Circuit). An Euler circuit is a simple circuit containing every edge of G. Definition 19 (Hamilton Path). A simple path that passes through every vertex exactly once is called a Hamilton path. Definition 20 (Hamilton Circuit). A simple circuit that passes through every vertex exactly once is called a Hamilton circuit. (The preceding definitions all hold for directed and undirected graphs.) Recall that a multigraph is an undirected graph in which multiple edges are allowed but loops are not allowed. Theorem 3. A connected multigraph with jV j ≥ 2 has an Euler circuit if and only if each of its vertices has even degree. Theorem 4. A connected multigraph has an Euler path (but not an Euler circuit) if and only if it has exactly two vertices of odd degree. (The book has the reader prove analogous theorems for directed graphs in the exercises.) Theorem 5 (Dirac's Theorem). If G is a simple graph with n ≥ 3 vertices such that the degree of every vertex in G is n ≥ 2 then G has a Hamilton circuit. Theorem 6 (Ore's Theorem). If G is a simple graph with n ≥ 3 vertices such that deg(u) + deg(v) ≥ n for every pair of non-adjacent vertices u; v 2 G then G has a Hamilton circuit. Example 6. Determine whether there exists an Euler circuit (if so, draw one). If no Euler circuit then determine whether it has an Euler path (if so, draw one). 1. (10.5.2) 2. (10.5.4) 8 10.7 - Planar Graphs Definition 21 (Planar). A graph is planar if and only if it can be drawn in the plane without any crossing edges. Example 7. K5 and K3;3 are not planar. Q3 is planar: K2;3 is planar: Theorem 7 (Euler's Formula). Let G = (V; E) be a connected simple planar graph and let r be the number of regions in a planar representation of G. Then r = jEj − jV j + 2: Corollary 8. Let G = (V; E) be a connected simple graph with jEj = e and jV j = v ≥ 3. 1. If G is planar then e ≤ 3v − 6. So, if e > 3v − 6 then G is not planar. 2. If G is planar then there exists a vertex of degree ≤ 5. So, if the degrees of all vertices are > 5 then G is not planar. 3. Suppose G also has no circuits of length 3. If G is planar then e ≤ 2v − 4. So, if e > 2v − 4 then G is not planar. Note that in the preceeding corollary the contrapositive is the more useful form of the result if our goal is to determine whether a graph is not planar. Example 8. K5 Example 9. K3;3 9 Definition 22 (Elementary Subdivision). An elementary subdivision of a graph is the operation whereby we remove an edge fu; vg and add a vertex w and the edges fu; wg and fw; vg Definition 23 (Homeomorphic).
Recommended publications
  • Directed Graphs Definition: an Directed Graph (Or Digraph) G = (V, E) Consists of a Nonempty Set V of Vertices (Or Nodes) and a Set E of Directed Edges (Or Arcs)
    Chapter 10 Chapter Summary Graphs and Graph Models Graph Terminology and Special Types of Graphs Representing Graphs and Graph Isomorphism Connectivity Euler and Hamiltonian Graphs Shortest-Path Problems (not currently included in overheads) Planar Graphs (not currently included in overheads) Graph Coloring (not currently included in overheads) Section 10.1 Section Summary Introduction to Graphs Graph Taxonomy Graph Models Graphs Definition: A graph G = (V, E) consists of a nonempty set V of vertices (or nodes) and a set E of edges. Each edge has either one or two vertices associated with it, called its endpoints. An edge is said to connect its endpoints. Example: a b This is a graph with four vertices and five edges. d c Remarks: The graphs we study here are unrelated to graphs of functions studied in Chapter 2. We have a lot of freedom when we draw a picture of a graph. All that matters is the connections made by the edges, not the particular geometry depicted. For example, the lengths of edges, whether edges cross, how vertices are depicted, and so on, do not matter A graph with an infinite vertex set is called an infinite graph. A graph with a finite vertex set is called a finite graph. We (following the text) restrict our attention to finite graphs. Some Terminology In a simple graph each edge connects two different vertices and no two edges connect the same pair of vertices. Multigraphs may have multiple edges connecting the same two vertices. When m different edges connect the vertices u and v, we say that {u,v} is an edge of multiplicity m.
    [Show full text]
  • Adjacency and Incidence Matrices
    Adjacency and Incidence Matrices 1 / 10 The Incidence Matrix of a Graph Definition Let G = (V ; E) be a graph where V = f1; 2;:::; ng and E = fe1; e2;:::; emg. The incidence matrix of G is an n × m matrix B = (bik ), where each row corresponds to a vertex and each column corresponds to an edge such that if ek is an edge between i and j, then all elements of column k are 0 except bik = bjk = 1. 1 2 e 21 1 13 f 61 0 07 3 B = 6 7 g 40 1 05 4 0 0 1 2 / 10 The First Theorem of Graph Theory Theorem If G is a multigraph with no loops and m edges, the sum of the degrees of all the vertices of G is 2m. Corollary The number of odd vertices in a loopless multigraph is even. 3 / 10 Linear Algebra and Incidence Matrices of Graphs Recall that the rank of a matrix is the dimension of its row space. Proposition Let G be a connected graph with n vertices and let B be the incidence matrix of G. Then the rank of B is n − 1 if G is bipartite and n otherwise. Example 1 2 e 21 1 13 f 61 0 07 3 B = 6 7 g 40 1 05 4 0 0 1 4 / 10 Linear Algebra and Incidence Matrices of Graphs Recall that the rank of a matrix is the dimension of its row space. Proposition Let G be a connected graph with n vertices and let B be the incidence matrix of G.
    [Show full text]
  • Graph Homomorphisms with Complex Values: a Dichotomy Theorem ∗
    SIAM J. COMPUT. c 2013 Society for Industrial and Applied Mathematics Vol. 42, No. 3, pp. 924–1029 GRAPH HOMOMORPHISMS WITH COMPLEX VALUES: A DICHOTOMY THEOREM ∗ † ‡ § JIN-YI CAI ,XICHEN, AND PINYAN LU Abstract. Each symmetric matrix A over C defines a graph homomorphism function ZA(·)on undirected graphs. The function ZA(·) is also called the partition function from statistical physics, and can encode many interesting graph properties, including counting vertex covers and k-colorings. We study the computational complexity of ZA(·) for arbitrary symmetric matrices A with algebraic complex values. Building on work by Dyer and Greenhill [Random Structures and Algorithms,17 (2000), pp. 260–289], Bulatov and Grohe [Theoretical Computer Science, 348 (2005), pp. 148–186], and especially the recent beautiful work by Goldberg et al. [SIAM J. Comput., 39 (2010), pp. 3336– 3402], we prove a complete dichotomy theorem for this problem. We show that ZA(·)iseither computable in polynomial-time or #P-hard, depending explicitly on the matrix A. We further prove that the tractability criterion on A is polynomial-time decidable. Key words. computational complexity, counting complexity, graph homomorphisms, partition functions AMS subject classifications. 68Q17, 68Q25, 68R05, 68R10, 05C31 DOI. 10.1137/110840194 1. Introduction. Graph homomorphism has been studied intensely over the years [28, 23, 13, 18, 4, 12, 21]. Given two graphs G and H, a graph homomorphism from G to H is a map f from the vertex set V (G)to V (H) such that, whenever (u, v)isanedgeinG,(f(u),f(v)) is an edge in H. The counting problem for graph homomorphism is to compute the number of homomorphisms from G to H.Forafixed graph H, this problem is also known as the #H-coloring problem.
    [Show full text]
  • Multilayer Networks
    Journal of Complex Networks (2014) 2, 203–271 doi:10.1093/comnet/cnu016 Advance Access publication on 14 July 2014 Multilayer networks Mikko Kivelä Oxford Centre for Industrial and Applied Mathematics, Mathematical Institute, University of Oxford, Oxford OX2 6GG, UK Alex Arenas Departament d’Enginyeria Informática i Matemátiques, Universitat Rovira I Virgili, 43007 Tarragona, Spain Marc Barthelemy Downloaded from Institut de Physique Théorique, CEA, CNRS-URA 2306, F-91191, Gif-sur-Yvette, France and Centre d’Analyse et de Mathématiques Sociales, EHESS, 190-198 avenue de France, 75244 Paris, France James P. Gleeson MACSI, Department of Mathematics & Statistics, University of Limerick, Limerick, Ireland http://comnet.oxfordjournals.org/ Yamir Moreno Institute for Biocomputation and Physics of Complex Systems (BIFI), University of Zaragoza, Zaragoza 50018, Spain and Department of Theoretical Physics, University of Zaragoza, Zaragoza 50009, Spain and Mason A. Porter† Oxford Centre for Industrial and Applied Mathematics, Mathematical Institute, University of Oxford, by guest on August 21, 2014 Oxford OX2 6GG, UK and CABDyN Complexity Centre, University of Oxford, Oxford OX1 1HP, UK †Corresponding author. Email: [email protected] Edited by: Ernesto Estrada [Received on 16 October 2013; accepted on 23 April 2014] In most natural and engineered systems, a set of entities interact with each other in complicated patterns that can encompass multiple types of relationships, change in time and include other types of complications. Such systems include multiple subsystems and layers of connectivity, and it is important to take such ‘multilayer’ features into account to try to improve our understanding of complex systems. Consequently, it is necessary to generalize ‘traditional’ network theory by developing (and validating) a framework and associated tools to study multilayer systems in a comprehensive fashion.
    [Show full text]
  • Arxiv:1602.02002V1 [Math.CO] 5 Feb 2016 Dept
    a The Structure of W4-Immersion-Free Graphs R´emy Belmonteb;c Archontia Giannopouloud;e Daniel Lokshtanovf ;g Dimitrios M. Thilikosh;i ;j Abstract We study the structure of graphs that do not contain the wheel on 5 vertices W4 as an immersion, and show that these graphs can be constructed via 1, 2, and 3-edge-sums from subcubic graphs and graphs of bounded treewidth. Keywords: Immersion Relation, Wheel, Treewidth, Edge-sums, Structural Theorems 1 Introduction A recurrent theme in structural graph theory is the study of specific properties that arise in graphs when excluding a fixed pattern. The notion of appearing as a pattern gives rise to various graph containment relations. Maybe the most famous example is the minor relation that has been widely studied, in particular since the fundamental results of Kuratowski and Wagner who proved that planar graphs are exactly those graphs that contain neither K5 nor K3;3 as a (topological) minor. A graph G contains a graph H as a topological minor if H can be obtained from G by a sequence of vertex deletions, edge deletions and replacing internally vertex-disjoint paths by single edges. Wagner also described the structure of the graphs that exclude K5 as a minor: he proved that K5- minor-free graphs can be constructed by \gluing" together (using so-called clique-sums) planar graphs and a specific graph on 8 vertices, called Wagner's graph. aEmails of authors: [email protected] [email protected], [email protected], [email protected] b arXiv:1602.02002v1 [math.CO] 5 Feb 2016 Dept.
    [Show full text]
  • Multidimensional Network Analysis
    Universita` degli Studi di Pisa Dipartimento di Informatica Dottorato di Ricerca in Informatica Ph.D. Thesis Multidimensional Network Analysis Michele Coscia Supervisor Supervisor Fosca Giannotti Dino Pedreschi May 9, 2012 Abstract This thesis is focused on the study of multidimensional networks. A multidimensional network is a network in which among the nodes there may be multiple different qualitative and quantitative relations. Traditionally, complex network analysis has focused on networks with only one kind of relation. Even with this constraint, monodimensional networks posed many analytic challenges, being representations of ubiquitous complex systems in nature. However, it is a matter of common experience that the constraint of considering only one single relation at a time limits the set of real world phenomena that can be represented with complex networks. When multiple different relations act at the same time, traditional complex network analysis cannot provide suitable an- alytic tools. To provide the suitable tools for this scenario is exactly the aim of this thesis: the creation and study of a Multidimensional Network Analysis, to extend the toolbox of complex network analysis and grasp the complexity of real world phenomena. The urgency and need for a multidimensional network analysis is here presented, along with an empirical proof of the ubiquity of this multifaceted reality in different complex networks, and some related works that in the last two years were proposed in this novel setting, yet to be systematically defined. Then, we tackle the foundations of the multidimensional setting at different levels, both by looking at the basic exten- sions of the known model and by developing novel algorithms and frameworks for well-understood and useful problems, such as community discovery (our main case study), temporal analysis, link prediction and more.
    [Show full text]
  • 6.042J Chapter 6: Directed Graphs
    “mcs-ftl” — 2010/9/8 — 0:40 — page 189 — #195 6 Directed Graphs 6.1 Definitions So far, we have been working with graphs with undirected edges. A directed edge is an edge where the endpoints are distinguished—one is the head and one is the tail. In particular, a directed edge is specified as an ordered pair of vertices u, v and is denoted by .u; v/ or u v. In this case, u is the tail of the edge and v is the ! head. For example, see Figure 6.1. A graph with directed edges is called a directed graph or digraph. Definition 6.1.1. A directed graph G .V; E/ consists of a nonempty set of D nodes V and a set of directed edges E. Each edge e of E is specified by an ordered pair of vertices u; v V . A directed graph is simple if it has no loops (that is, edges 2 of the form u u) and no multiple edges. ! Since we will focus on the case of simple directed graphs in this chapter, we will generally omit the word simple when referring to them. Note that such a graph can contain an edge u v as well as the edge v u since these are different edges ! ! (for example, they have a different tail). Directed graphs arise in applications where the relationship represented by an edge is 1-way or asymmetric. Examples include: a 1-way street, one person likes another but the feeling is not necessarily reciprocated, a communication channel such as a cable modem that has more capacity for downloading than uploading, one entity is larger than another, and one job needs to be completed before another job can begin.
    [Show full text]
  • Discrete Mathematics & Mathematical Reasoning Chapter 10: Graphs
    Discrete Mathematics & Mathematical Reasoning Chapter 10: Graphs Kousha Etessami U. of Edinburgh, UK Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 1 / 13 Overview Graphs and Graph Models Graph Terminology and Special Types of Graphs Representations of Graphs, and Graph Isomorphism Connectivity Euler and Hamiltonian Paths Brief look at other topics like graph coloring Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 2 / 13 What is a Graph? Informally, a graph consists of a non-empty set of vertices (or nodes), and a set E of edges that connect (pairs of) nodes. But different types of graphs (undirected, directed, simple, multigraph, ...) have different formal definitions, depending on what kinds of edges are allowed. This creates a lot of (often inconsistent) terminology. Before formalizing, let’s see some examples.... During this course, we focus almost exclusively on standard (undirected) graphs and directed graphs, which are our first two examples. Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 3 / 13 A (simple undirected) graph: ED NY SF LA Only undirected edges; at most one edge between any pair of distinct nodes; and no loops (edges between a node and itself). Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 4 / 13 A directed graph (digraph) (with loops): ED NY SF LA Only directed edges; at most one directed edge from any node to any node; and loops are allowed. Kousha Etessami (U. of Edinburgh, UK) Discrete Mathematics (Chapter 6) 5 / 13 A simple directed graph: ED NY SF LA Only directed edges; at most one directed edge from any node to any other node; and no loops allowed.
    [Show full text]
  • 1.3 Matrices and Graphs
    Thus Tˆ(bˆj) = ajibˆi, �i and the matrix of Tˆ with respect to Bˆ isA T , the transpose of the matrix ofT with respect toB. Remark: Natural isomorphism betweenV and its double dual Vˆ. We have seen above that everyfinite dimensional vector spaceV has the same dimension as its dual Vˆ, and hence they are isomorphic as vector spaces. Once we choose a basis forV we also define a dual basis for Vˆ and the correspondence between the two bases gives us an explicit isomorphism betweenV and Vˆ. However this isomorphism is not intrinsic to the spaceV, in the sense that it depends upon a choice of basis and cannot be described independently of a choice of basis. ˆ The dual space of Vˆ is denoted Vˆ; it is the space of all linear mappings from Vˆ toF. By all of the above discussion it has the same dimension as Vˆ andV. The reason for mentioning this however is that there is a “natural” isomorphismθ fromV to Vˆ. It is defined in the following way, ˆ forx V andf Vˆ - note thatθ(x) belongs to Vˆ, soθ(x)(f) should be an element ofF. ∈ ∈ θ(x)(f) =f(x). To see thatθ is an isomorphism, suppose thatx 1,...,x k are independent elements ofV. Then ˆ θ(x1),...,θ(x k) are independent elements of Vˆ. To see this leta 1,...,a k be element ofF for which a θ(x ) + +a θ(x ) = 0. This means thatf(a x + +a x ) = 0 for allf Vˆ, which means 1 1 ··· k k 1 1 ··· k k ∈ thata x + +a x = 0, which means that eacha = 0.
    [Show full text]
  • Homomorphisms of Signed Graphs: an Update Reza Naserasr, Eric Sopena, Thomas Zaslavsky
    Homomorphisms of signed graphs: An update Reza Naserasr, Eric Sopena, Thomas Zaslavsky To cite this version: Reza Naserasr, Eric Sopena, Thomas Zaslavsky. Homomorphisms of signed graphs: An update. European Journal of Combinatorics, Elsevier, inPress, 10.1016/j.ejc.2020.103222. hal-02429415v2 HAL Id: hal-02429415 https://hal.archives-ouvertes.fr/hal-02429415v2 Submitted on 17 Oct 2020 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. Homomorphisms of signed graphs: An update Reza Naserasra, Eric´ Sopenab, Thomas Zaslavskyc aUniversit´ede Paris, IRIF, CNRS, F-75013 Paris, France. E-mail: [email protected] b Univ. Bordeaux, Bordeaux INP, CNRS, LaBRI, UMR5800, F-33400 Talence, France cDepartment of Mathematical Sciences, Binghamton University, Binghamton, NY 13902-6000, U.S.A. Abstract A signed graph is a graph together with an assignment of signs to the edges. A closed walk in a signed graph is said to be positive (negative) if it has an even (odd) number of negative edges, counting repetition. Recognizing the signs of closed walks as one of the key structural properties of a signed graph, we define a homomorphism of a signed graph (G; σ) to a signed graph (H; π) to be a mapping of vertices and edges of G to (respectively) vertices and edges of H which preserves incidence, adjacency and the signs of closed walks.
    [Show full text]
  • Graph Theory
    Graph Theory MAT230 Discrete Mathematics Fall 2019 MAT230 (Discrete Math) Graph Theory Fall 2019 1 / 72 Outline 1 Definitions 2 Theorems 3 Representations of Graphs: Data Structures 4 Traversal: Eulerian and Hamiltonian Graphs 5 Graph Optimization 6 Planarity and Colorings MAT230 (Discrete Math) Graph Theory Fall 2019 2 / 72 Definitions Definition A graph G = (V ; E) consists of a set V of vertices (also called nodes) and a set E of edges. Definition If an edge connects to a vertex we say the edge is incident to the vertex and say the vertex is an endpoint of the edge. Definition If an edge has only one endpoint then it is called a loop edge. Definition If two or more edges have the same endpoints then they are called multiple or parallel edges. MAT230 (Discrete Math) Graph Theory Fall 2019 3 / 72 Definitions Definition Two vertices that are joined by an edge are called adjacent vertices. Definition A pendant vertex is a vertex that is connected to exactly one other vertex by a single edge. Definition A walk in a graph is a sequence of alternating vertices and edges v1e1v2e2 ::: vnenvn+1 with n ≥ 0. If v1 = vn+1 then the walk is closed. The length of the walk is the number of edges in the walk. A walk of length zero is a trivial walk. MAT230 (Discrete Math) Graph Theory Fall 2019 4 / 72 Definitions Definition A trail is a walk with no repeated edges. A path is a walk with no repeated vertices. A circuit is a closed trail and a trivial circuit has a single vertex and no edges.
    [Show full text]
  • Adjacency Matrix a (Or AG) of G, with Respect to This Listing of the Vertices, Is the N  N Zero-One Matrix with 1 As Its
    Graph (cont’d) Representing Graphs and Graph Isomorphism • Sometimes, two graphs have exactly the same form, in the sense that there is a one-to-one correspondence between their vertex sets that preserves edges. In such a case, we say that the two graphs are isomorphic. Representing Graphs • One way to represent a graph without multiple edges is to list all the edges of this graph. • Another way to represent a graph with no multiple edges is to use adjacency lists, which specify the vertices that are adjacent to each vertex of the graph. Example • Use adjacency lists to describe the simple graph given in figure Solution •Use table to list vertices adjacent to each of the vertices of the graph. An Edge List for a Simple Graph. Vertex Adjacent Vertices a b, c, e b a c a, d, e d c, e e a, c, d Example • Draw the directed graph from the table. An Edge List for a Directed Graph. Initial Vertex Terminal Vertices Solution a b, c, d, e b b, d c a, c, e d - e b, c, d Adjacency matrices • Graphs can be represented using matrices. • Two types of matrices commonly used to represent graphs will be presented. • One is based on the adjacency of vertices, and the other is based on incidence of vertices and edges. Suppose that G = (V, E) is a simple graph where |V| = n. Suppose that the vertices of G are listed arbitrarily as v1, v2, …, vn. The adjacency matrix A (or AG) of G, with respect to this listing of the vertices, is the n n zero-one matrix with 1 as its (i, j)th entry when vi and vj are adjacent, and 0 as its (i, j)th entry when they are not adjacent.
    [Show full text]