Network Science

Total Page:16

File Type:pdf, Size:1020Kb

Network Science Network Science Class 2: Graph Theory (Ch2) Albert-László Barabási with Emma K. Towlson. Sebastian Ruf, Michael Danziger, and Louis Shekhtman www.BarabasiLab.com Section 1 The Bridges of Konigsberg THE BRIDGES OF KONIGSBERG Can one walk across the seven bridges and never cross the same bridge twice? Network Science: Graph Theory THE BRIDGES OF KONIGSBERG Can one walk across the seven bridges and never cross the same bridge twice? 1735: Euler’s theorem: a) If a graph has more than two nodes of odd degree, there is no path. b) If a graph is connected and has no odd degree nodes, it has at least one path. Network Science: Graph Theory Section 2 Networks and graphs COMPONENTS OF A COMPLEX SYSTEM . components: nodes, vertices N . interactions: links, edges L . system: network, graph (N,L) Network Science: Graph Theory NETWORKS OR GRAPHS? network often refers to real systems • www, • social network • metabolic network. Language: (Network, node, link) graph: mathematical representation of a network • web graph, • social graph (a Facebook term) Language: (Graph, vertex, edge) We will try to make this distinction whenever it is appropriate, but in most cases we will use the two terms interchangeably. Network Science: Graph Theory A COMMON LANGUAGE N=4 L=4 Network Science: Graph Theory CHOOSING A PROPER REPRESENTATION The choice of the proper network representation determines our ability to use network theory successfully. In some cases there is a unique, unambiguous representation. In other cases, the representation is by no means unique. For example, the way we assign the links between a group of individuals will determine the nature of the question we can study. Network Science: Graph Theory CHOOSING A PROPER REPRESENTATION If you connect individuals that work with each other, you will explore the professional network. Network Science: Graph Theory CHOOSING A PROPER REPRESENTATION If you connect those that have a romantic and sexual relationship, you will be exploring the sexual networks. Network Science: Graph Theory CHOOSING A PROPER REPRESENTATION If you connect individuals based on their first name (all Peters connected to each other), you will be exploring what? It is a network, nevertheless. Network Science: Graph Theory Section 2.3 Degree, Average Degree and Degree Distribution NODE DEGREES d Node degree: the number of links connected to the node. e A t c e r i kA =1 kB = 4 d B n U In directed networks we can define an in-degree and out-degree. B D d C e The (total) degree is the sum of in- and out-degree. t c e in out r E kC = 2 kC = 1 kC = 3 i G A D F Source: a node with kin= 0; Sink: a node with kout= 0. A BIT OF STATISTICS Network Science: Graph Theory AVERAGE DEGREE d N e 1 2L t k ki c j k N i=1 e N r i i d n N – the number of nodes in the graph U D 1 N 1 N B k in k in , k out k out , k in = k out d C i i N i=1 N i=1 e t c e E r i A L D k F N Network Science: Graph Theory Average Degree Network Science: Graph Theory DEGREE DISTRIBUTION Degree distribution P(k): probability that a randomly chosen node has degree k Nk = # nodes with degree k P(k) = Nk / N ➔ plot DEGREE DISTRIBUTION DEGREE DISTRIBUTION Discrete Representation: pk is the probability that a node has degree k. Continuum Description: p(k) is the pdf of the degrees, where k2 ò p(k)dk k1 represents the probability that a node’s degree is between k1 and k2. Normalization condition: ¥ ¥ pk =1 ò p(k)dk =1 0 K min where Kmin is the minimal degree in the network. Network Science: Graph Theory UNDIRECTED VS. DIRECTED NETWORKS Undirected Directed Links: undirected (symmetrical) Links: directed (arcs). Graph: Digraph = directed graph: L A D F M B An undirected C link is the I superposition of D two opposite directed links. B G E G H A C F Undirected links : Directed links : coauthorship links URLs on the www Actor network phone calls protein interactions metabolic reactions Network Science: Graph Theory Section 2.2 Reference Networks Question 4 Q4: Adjacency Matrices Section 2.4 Adjacency matrix ADJACENCY MATRIX 4 4 3 3 2 2 1 1 Aij=1 if there is a link between node i and j Aij=0 if nodes i and j are not connected to each other. Note that for a directed graph (right) the matrix is not symmetric. if there is a link pointing from node j and i Network Science: Graph Theory if there is no link pointing from j to i. ADJACENCY MATRIX AND NODE DEGREES æ 0 1 0 1ö N 4 ki = Aij d ç ÷ 1 0 0 1 j =1 e ç ÷ t A = ij N c ç 0 0 0 1÷ e 3 ç ÷ k j = Aij r 2 i è 1 1 1 0ø i=1 1 d n Aij = A ji 1 N 1 N U L = ki = Aij A = 0 2 2 ii i=1 ij æ 0 0 0 0 ö ç ÷ d 4 1 0 0 1 e A = ç ÷ t ij ç ÷ N c 0 0 0 1 out e ç ÷ k j = Aij r è 1 0 0 0 ø i 3 2 i=1 D N N N 1 in out L = ki = k j = Aij Aij ¹ A ji i=1 j=1 i, j Aii = 0 ADJACENCY MATRIX a e a b c d e f g h a 0 1 0 0 1 0 1 0 b 1 0 1 0 0 0 0 1 c 0 1 0 1 0 1 1 0 d 0 0 1 0 1 0 0 0 h b d e 1 0 0 1 0 0 0 0 f 0 0 1 0 0 0 1 0 g 1 0 1 0 0 0 0 0 f h 0 1 0 0 0 0 0 0 g c Network Science: Graph Theory ADJACENCY MATRICES ARE SPARSE Network Science: Graph Theory Section 4 Real networks are sparse COMPLETE GRAPH The maximum number of links a network æ Nö N(N -1) of N nodes can have is: Lmax = ç ÷ = è 2 ø 2 A graph with degree L=Lmax is called a complete graph, and its average degree is <k>=N-1 Network Science: Graph Theory REAL NETWORKS ARE SPARSE Most networks observed in real systems are sparse: L << Lmax or <k> <<N-1. 6 12 WWW (ND Sample): N=325,729; L=1.4 10 Lmax=10 <k>=4.51 7 Protein (S. Cerevisiae): N= 1,870; L=4,470 Lmax=10 <k>=2.39 5 10 Coauthorship (Math): N= 70,975; L=2 10 Lmax=3 10 <k>=3.9 6 13 Movie Actors: N=212,250; L=6 10 Lmax=1.8 10 <k>=28.78 (Source: Albert, Barabasi, RMP2002) Network Science: Graph Theory ADJACENCY MATRICES ARE SPARSE Network Science: Graph Theory METCALFE’S LAW The maximum number of links a network æ Nö N(N -1) of N nodes can have is: Lmax = ç ÷ = è 2 ø 2 Network Science: Graph Theory Section 2.6 WEIGHTED AND UNWEIGHTED NETWORKS WEIGHTED AND UNWEIGHTED NETWORKS METCALFE’S LAW The maximum number of links a network æ Nö N(N -1) of N nodes can have is: Lmax = ç ÷ = è 2 ø 2 Network Science: Graph Theory Section 2.7 BIPARTITE NETWORKS BIPARTITE GRAPHS bipartite graph (or bigraph) is a graph whose nodes can be divided into two disjoint sets U and V such that every link connects a node in U to one in V; that is, U and V are independent sets. Examples: Hollywood actor network Collaboration networks Disease network (diseasome) Network Science: Graph Theory GENE NETWORK – DISEASE NETWORK DISEASOME PHENOME GENOME Gene network Disease network Goh, Cusick, Valle, Childs, Vidal & Barabási, PNAS (2007) Network Science: Graph Theory HUMAN DISEASE NETWORK Ingredient-Flavor Bipartite Network Y.-Y. Ahn, S. E. Ahnert, J. P. Bagrow, A.-L. Barabási Flavor network and the principles Network Science: Graph Theory of food pairing , Scientific Reports 196, (2011). Section 2.8 PATHOLOGY PATHS A path is a sequence of nodes in which each node is adjacent to the next one Pi0,in of length n between nodes i0 and in is an ordered collection of n+1 nodes and n links Pn = {i0,i1,i2,...,in} Pn = {(i0 ,i1),(i1,i2 ),(i2 ,i3 ),...,(in-1,in )} • In a directed network, the path can follow only the direction of an arrow. Network Science: Graph Theory DISTANCE IN A GRAPH Shortest Path, Geodesic Path B The distance (shortest path, geodesic path) between two A nodes is defined as the number of edges along the shortest path connecting them. C D *If the two nodes are disconnected, the distance is infinity. B In directed graphs each path needs to follow the direction of A the arrows. Thus in a digraph the distance from node A to B (on an AB path) is generally different from the distance from node B to A C D (on a BA path). Network Science: Graph Theory NUMBER OF PATHS BETWEEN TWO NODES Adjacency Matrix Nij, number of paths between any two nodes i and j: Length n=1: If there is a link between i and j, then Aij=1 and Aij=0 otherwise. Length n=2: If there is a path of length two between i and j, then AikAkj=1, and AikAkj=0 otherwise.
Recommended publications
  • Geodesic Distance Descriptors
    Geodesic Distance Descriptors Gil Shamai and Ron Kimmel Technion - Israel Institute of Technologies [email protected] [email protected] Abstract efficiency of state of the art shape matching procedures. The Gromov-Hausdorff (GH) distance is traditionally used for measuring distances between metric spaces. It 1. Introduction was adapted for non-rigid shape comparison and match- One line of thought in shape analysis considers an ob- ing of isometric surfaces, and is defined as the minimal ject as a metric space, and object matching, classification, distortion of embedding one surface into the other, while and comparison as the operation of measuring the discrep- the optimal correspondence can be described as the map ancies and similarities between such metric spaces, see, for that minimizes this distortion. Solving such a minimiza- example, [13, 33, 27, 23, 8, 3, 24]. tion is a hard combinatorial problem that requires pre- Although theoretically appealing, the computation of computation and storing of all pairwise geodesic distances distances between metric spaces poses complexity chal- for the matched surfaces. A popular way for compact repre- lenges as far as direct computation and memory require- sentation of functions on surfaces is by projecting them into ments are involved. As a remedy, alternative representa- the leading eigenfunctions of the Laplace-Beltrami Opera- tion spaces were proposed [26, 22, 15, 10, 31, 30, 19, 20]. tor (LBO). When truncated, the basis of the LBO is known The question of which representation to use in order to best to be the optimal for representing functions with bounded represent the metric space that define each form we deal gradient in a min-max sense.
    [Show full text]
  • Network Science
    This is a preprint of Katy Börner, Soma Sanyal and Alessandro Vespignani (2007) Network Science. In Blaise Cronin (Ed) Annual Review of Information Science & Technology, Volume 41. Medford, NJ: Information Today, Inc./American Society for Information Science and Technology, chapter 12, pp. 537-607. Network Science Katy Börner School of Library and Information Science, Indiana University, Bloomington, IN 47405, USA [email protected] Soma Sanyal School of Library and Information Science, Indiana University, Bloomington, IN 47405, USA [email protected] Alessandro Vespignani School of Informatics, Indiana University, Bloomington, IN 47406, USA [email protected] 1. Introduction.............................................................................................................................................2 2. Notions and Notations.............................................................................................................................4 2.1 Graphs and Subgraphs .........................................................................................................................5 2.2 Graph Connectivity..............................................................................................................................7 3. Network Sampling ..................................................................................................................................9 4. Network Measurements........................................................................................................................11
    [Show full text]
  • Latent Distance Estimation for Random Geometric Graphs ∗
    Latent Distance Estimation for Random Geometric Graphs ∗ Ernesto Araya Valdivia Laboratoire de Math´ematiquesd'Orsay (LMO) Universit´eParis-Sud 91405 Orsay Cedex France Yohann De Castro Ecole des Ponts ParisTech-CERMICS 6 et 8 avenue Blaise Pascal, Cit´eDescartes Champs sur Marne, 77455 Marne la Vall´ee,Cedex 2 France Abstract: Random geometric graphs are a popular choice for a latent points generative model for networks. Their definition is based on a sample of n points X1;X2; ··· ;Xn on d−1 the Euclidean sphere S which represents the latent positions of nodes of the network. The connection probabilities between the nodes are determined by an unknown function (referred to as the \link" function) evaluated at the distance between the latent points. We introduce a spectral estimator of the pairwise distance between latent points and we prove that its rate of convergence is the same as the nonparametric estimation of a d−1 function on S , up to a logarithmic factor. In addition, we provide an efficient spectral algorithm to compute this estimator without any knowledge on the nonparametric link function. As a byproduct, our method can also consistently estimate the dimension d of the latent space. MSC 2010 subject classifications: Primary 68Q32; secondary 60F99, 68T01. Keywords and phrases: Graphon model, Random Geometric Graph, Latent distances estimation, Latent position graph, Spectral methods. 1. Introduction Random geometric graph (RGG) models have received attention lately as alternative to some simpler yet unrealistic models as the ubiquitous Erd¨os-R´enyi model [11]. They are generative latent point models for graphs, where it is assumed that each node has associated a latent d point in a metric space (usually the Euclidean unit sphere or the unit cube in R ) and the connection probability between two nodes depends on the position of their associated latent points.
    [Show full text]
  • Average D-Distance Between Vertices of a Graph
    italian journal of pure and applied mathematics { n. 33¡2014 (293¡298) 293 AVERAGE D-DISTANCE BETWEEN VERTICES OF A GRAPH D. Reddy Babu Department of Mathematics Koneru Lakshmaiah Education Foundation (K.L. University) Vaddeswaram Guntur 522 502 India e-mail: [email protected], [email protected] P.L.N. Varma Department of Science & Humanities V.F.S.T.R. University Vadlamudi Guntur 522 237 India e-mail: varma [email protected] Abstract. The D-distance between vertices of a graph G is obtained by considering the path lengths and as well as the degrees of vertices present on the path. The average D-distance between the vertices of a connected graph is the average of the D-distances between all pairs of vertices of the graph. In this article we study the average D-distance between the vertices of a graph. Keywords: D-distance, average D-distance, diameter. 2000 Mathematics Subject Classi¯cation: 05C12. 1. Introduction The concept of distance is one of the important concepts in study of graphs. It is used in isomorphism testing, graph operations, hamiltonicity problems, extremal problems on connectivity and diameter, convexity in graphs etc. Distance is the basis of many concepts of symmetry in graphs. In addition to the usual distance, d(u; v) between two vertices u; v 2 V (G) we have detour distance (introduced by Chartrand et al, see [2]), superior distance (introduced by Kathiresan and Marimuthu, see [6]), signal distance (introduced by Kathiresan and Sumathi, see [7]), degree distance etc. 294 d. reddy babu, p.l.n. varma In an earlier article [9], the authors introduced the concept of D-distance be- tween vertices of a graph G by considering not only path length between vertices, but also the degrees of all vertices present in a path while de¯ning the D-distance.
    [Show full text]
  • "Distance Measures for Graph Theory"
    Distance measures for graph theory : Comparisons and analyzes of different methods Dissertation presented by Maxime DUYCK for obtaining the Master’s degree in Mathematical Engineering Supervisor(s) Marco SAERENS Reader(s) Guillaume GUEX, Bertrand LEBICHOT Academic year 2016-2017 Acknowledgments First, I would like to thank my supervisor Pr. Marco Saerens for his presence, his advice and his precious help throughout the realization of this thesis. Second, I would also like to thank Bertrand Lebichot and Guillaume Guex for agreeing to read this work. Next, I would like to thank my parents, all my family and my friends to have accompanied and encouraged me during all my studies. Finally, I would thank Malian De Ron for creating this template [65] and making it available to me. This helped me a lot during “le jour et la nuit”. Contents 1. Introduction 1 1.1. Context presentation .................................. 1 1.2. Contents .......................................... 2 2. Theoretical part 3 2.1. Preliminaries ....................................... 4 2.1.1. Networks and graphs .............................. 4 2.1.2. Useful matrices and tools ........................... 4 2.2. Distances and kernels on a graph ........................... 7 2.2.1. Notion of (dis)similarity measures ...................... 7 2.2.2. Kernel on a graph ................................ 8 2.2.3. The shortest-path distance .......................... 9 2.3. Kernels from distances ................................. 9 2.3.1. Multidimensional scaling ............................ 9 2.3.2. Gaussian mapping ............................... 9 2.4. Similarity measures between nodes .......................... 9 2.4.1. Katz index and its Leicht’s extension .................... 10 2.4.2. Commute-time distance and Euclidean commute-time distance .... 10 2.4.3. SimRank similarity measure .........................
    [Show full text]
  • Percolation Theory Are Well-Suited To
    Models of Disordered Media and Predictions of Associated Hydraulic Conductivity A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science By L AARON BLANK B.S., Wright State University, 2004 2006 Wright State University WRIGHT STATE UNIVERSITY SCHOOL OF GRADUATE STUDIES Novermber 6, 2006 I HEREBY RECOMMEND THAT THE THESIS PREPARED UNDER MY SUPERVISION BY L Blank ENTITLED Models of Disordered Media and Predictions of Associated Hydraulic Conductivity BE ACCEPTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF Master of Science. _______________________ Allen Hunt, Ph.D. Thesis Advisor _______________________ Lok Lew Yan Voon, Ph.D. Department Chair _______________________ Joseph F. Thomas, Jr., Ph.D. Dean of the School of Graduate Studies Committee on Final Examination ____________________ Allen Hunt, Ph.D. ____________________ Brent D. Foy, Ph.D. ____________________ Gust Bambakidis, Ph.D. ____________________ Thomas Skinner, Ph.D. Abstract In the late 20th century there was a spill of Technetium in eastern Washington State at the US Department of Energy Hanford site. Resulting contamination of water supplies would raise serious health issues for local residents. Therefore, the ability to predict how these contaminants move through the soil is of great interest. The main contribution to contaminant transport arises from being carried along by flowing water. An important control on the movement of the water through the medium is the hydraulic conductivity, K, which defines the ease of water flow for a given pressure difference (analogous to the electrical conductivity). The overall goal of research in this area is to develop a technique which accurately predicts the hydraulic conductivity as well as its distribution, both in the horizontal and the vertical directions, for media representative of the Hanford subsurface.
    [Show full text]
  • Sex, Race, Religion, Age, and Education Homophily Among Confidants, 1985 to 2004 Jeffrey A
    University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Sociology Department, Faculty Publications Sociology, Department of 4-2014 Social Distance in the United States: Sex, Race, Religion, Age, and Education Homophily among Confidants, 1985 to 2004 Jeffrey A. Smith University of Nebraska-Lincoln, [email protected] Miller McPherson Duke University, [email protected] Lynn Smith-Lovin Duke University, [email protected] Follow this and additional works at: http://digitalcommons.unl.edu/sociologyfacpub Part of the Demography, Population, and Ecology Commons, Race and Ethnicity Commons, Social Psychology and Interaction Commons, and the Social Statistics Commons Smith, Jeffrey A.; McPherson, Miller; and Smith-Lovin, Lynn, "Social Distance in the United States: Sex, Race, Religion, Age, and Education Homophily among Confidants, 1985 to 2004" (2014). Sociology Department, Faculty Publications. 246. http://digitalcommons.unl.edu/sociologyfacpub/246 This Article is brought to you for free and open access by the Sociology, Department of at DigitalCommons@University of Nebraska - Lincoln. It has been accepted for inclusion in Sociology Department, Faculty Publications by an authorized administrator of DigitalCommons@University of Nebraska - Lincoln. Published in American Sociological Review 79:3 (2014), pp. 432-456. doi: 10.1177/0003122414531776 Copyright © 2014 American Sociological Review. Used by permission. digitalcommons.unl.edu Published online April 24, 2014. Social Distance in the United States: Sex, Race, Religion, Age, and Education Homophily among Confidants, 1985 to 2004 Jeffrey A. Smith,1 Miller McPherson,2 and Lynn Smith-Lovin2 1. University of Nebraska-Lincoln 2. Duke University Corresponding author – Jeffrey A. Smith, Department of Sociology, University of Nebraska-Lincoln, 711 Oldfather Hall, Lincoln, NE 68588-0324, email [email protected] Abstract Homophily, the tendency for similar actors to be connected at a higher rate than dissimi- lar actors, is a pervasive social fact.
    [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]
  • A Note on a Conjecture for the Distance Laplacian Matrix 61 Studied ([2, 4, 6]) And, in [4], M
    Electronic Journal of Linear Algebra ISSN 1081-3810 A publication of the International Linear Algebra Society Volume 31, pp. 60-68, February 2016 ELA http:/repository.uwyo.edu/ela A NOTE ON A CONJECTURE FOR THE DISTANCE LAPLACIAN MATRIX∗ CELSO M. DA SILVA JR.†, MARIA AGUIEIRAS A. DE FREITAS‡, AND RENATA R. DEL-VECCHIO§ Abstract. In this note, the graphs of order n having the largest distance Laplacian eigenvalue of multiplicity n − 2 are characterized. In particular, it is shown that if the largest eigenvalue of the ∼ distance Laplacian matrix of a connected graph G of order n has multiplicity n − 2, then G = Sn ∼ or G = Kp,p, where n = 2p. This resolves a conjecture proposed by M. Aouchiche and P. Hansen in [M. Aouchiche and P. Hansen. A Laplacian for the distance matrix of a graph. Czechoslovak Mathematical Journal, 64(3):751–761, 2014.]. Moreover, it is proved that if G has P5 as an induced subgraph then the multiplicity of the largest eigenvalue of the distance Laplacian matrix of G is less than n − 3. Key words. Distance Laplacian matrix, Laplacian matrix, Largest eigenvalue, Multiplicity of eigenvalues. AMS subject classifications. 05C12, 05C50, 15A18. 1. Introduction. Let G = (V, E) be a connected graph and the distance (the length of a shortest path) between vertices vi and vj of G be denoted by di,j . The distance matrix of G, denoted by D(G), is the n × n matrix whose (i, j)-entry is equal to di,j , i,j = 1, 2,...,n. The transmission Tr(vi) of a vertex vi is defined as the sum of the distances from vi to all other vertices in G.
    [Show full text]
  • Glossary of Terms Used for Network Analysis
    Defined Vocabulary for Nervous System Network Analysis This is a working vocabulary compiled mostly from the pioneering work of Olaf Sporns and colleagues (see bibliography at the end). It complements the defined vocabulary in our Foundational Model of Nervous System Structural Connectivity (Swanson & Bota 2010). Preferred synonyms are bolded. Also see Wikipedia articles, Glossary of graph theory and List of graph theory topics. Adjacency matrix: See connection matrix, although strictly speaking, the term may refer only to a matrix with binary connections (see Sporns 2012a, p. 16). Allometric scaling: “Allometric scaling concerns the relationships between body size (scale) and other anatomical, functional or metabolic properties of organisms. These scaling relationships are often described by power laws” (Bullmore & Sporns 2012, p. 338). See Wikipedia Allometry. Anatomical connections: See structural connections. Arc: See connection. Assortativity: “A measure of the tendency for nodes to be connected to other nodes of the same or similar degree” (Bullmore & Sporns 2009, p. 195). More specifically, it is “The correlation between the degrees of connected nodes. Positive assortativity indicates that high-degree nodes tend to connect to each other.” (Bullmore & Sporns 2009, p. 188). “The correlation coefficient for the degrees of neighboring nodes. Positive assortativity indicates that edges tend to link nodes of similar degree, while negative assortativity indicates that high-degree nodes preferentially connect with low-degree nodes.” (Sporns 2011, p. 9). Betweenness centrality: “The betweenness centrality of an individual node is defined as the fraction of all shortest paths in the network that pass through the node. A node with high betweenness centrality can control information flow because it is at the intersection of many short paths.” (Sporns 2011, p.
    [Show full text]
  • Distance Between Graphs Preston Boorsma Advisor: Dr
    Distance Between Graphs Preston Boorsma Advisor: Dr. Aparna Higgins Introduction Theorem Rotation Distance Graphs Two graphs ! and " are said to be isomorphic if there Let ! and " be graphs of order 4 and size 5, and let 6 Every complete graph DE is a rotation distance graph. exists a bijection # from the vertex set of ! to the be a greatest common subgraph of ! and " with size 7. For example, the graph DF is a rotation distance graph vertex set of " such that $% is an edge in ! if and only Then /(!, ") ≤ 2(5 − 7). of graphs !G, !H, !F below for 4 = 3. Similar graphs if #($)#(%) is an edge in ". Isomorphic graphs can be can be constructed for any 4. relabeled and redrawn to look identical. Why? If ! and " are not isomorphic, then there exists an edge $% in " but not in ! and an edge 9: in ! but ; not in ". We can construct a graph " = ! − 9: + !G $% so that /(!, "′) ≤ 2, and " and "′ have 7 + 1 edges in common. Repeating this process 5 − 7 times, Two isomorphic graphs we get /(!, ") ≤ 2(5 − 7). !H ------------------------------------------------------------------ 9 : 9 : 9 : GF !G !H $ % $ % $ % ! ( ) * F ! "= "′ DF Non-isomorphic graphs of same order and size Example case in proof of theorem ------------------------------------------------------------ ------------------------------------------------------------------ ------------------------------------------------------------------- Existence of Distances How “far” are graphs (, ), and * from being The bound >(? − @) is sharp. Consider graphs ( and For each positive integer K, there exist two graphs ! isomorphic to each other? * to the left. The graph A (see below) is a greatest and " such that / !, " = K. For any given K, common subgraph of ( and * with size 5. Our theorem construct " as shown below, and let ! = L .
    [Show full text]
  • Compact Distributed Interactive Proofs for the Recognition of Cographs
    Compact Distributed Interactive Proofs for the Recognition of Cographs and Distance-Hereditary Graphs Pedro Montealegre1 Facultad de Ingeniería y Ciencias, Universidad Adolfo Ibáñez, Chile [email protected] Diego Ramírez-Romero Departamento de Ingeniería Matemática, Universidad de Chile, Chile [email protected] Ivan Rapaport DIM-CMM (UMI 2807 CNRS), Universidad de Chile, Chile [email protected] Abstract We present compact distributed interactive proofs for the recognition of two important graph classes, well-studied in the context of centralized algorithms, namely complement reducible graphs and distance-hereditary graphs. Complement reducible graphs (also called cographs) are defined as the graphs not containing a four-node path P4 as an induced subgraph. Distance-hereditary graphs are a super-class of cographs, defined as the graphs where the distance (shortest paths) between any pair of vertices is the same on every induced connected subgraph. First, we show that there exists a distributed interactive proof for the recognition of cographs with two rounds of interaction. More precisely, we give a dAM protocol with a proof size of O(log n) bits that uses shared randomness and recognizes cographs with high probability. Moreover, our protocol can be adapted to verify any Turing-decidable predicate restricted to cographs in dAM with certificates of size O(log n). Second, we give a three-round, dMAM interactive protocol for the recognition of distance- hereditary graphs, still with a proof size of O(log n) bits and also using shared randomness. Finally, we show that any one-round (denoted dM) or two-round, dMA protocol for the recognition of cographs or distance-hereditary graphs requires certificates of size Ω(log n) bits.
    [Show full text]