Graph theory
From Wikipedia, the free encyclopedia
Image:6n-graf.svg In mathematics and computer science, graph theory is the study of graphs, mathematical structures used to model pairwise relations between objects from a certain collection. "Graphs" in this context are not to be confused with "graphs of functions" and other kinds of graphs.
Contents |
[edit] History
The paper written by Leonhard Euler on the Seven Bridges of Königsberg and published in 1736 is regarded as the first paper in the history of graph theory<ref name="Biggs">Biggs, N.; Lloyd, E. and Wilson, R. (1986). Graph Theory, 1736-1936. Oxford University Press.</ref>. This paper, as well as the one written by Vandermonde on the knight problem carried on with the analysis situs initiated by Leibniz. Euler's formula relating the number of edges, vertices, and faces of a convex polyhedron was studied and generalized by Cauchy<ref name="Cauchy">Cauchy, A.L. (1813). "Recherche sur les polyèdres - premier mémoire". Journal de l'Ecole Polytechnique 9 (Cahier 16): 66–86.</ref> and L'Huillier<ref name="Lhuillier">L'Huillier, S.-A.-J. (1861). "Mémoire sur la polyèdrométrie". Annales de Mathématiques 3: 169–189.</ref>, is at the origin of topology.
More than one century after Euler's paper on the bridges of Königsberg and while Listing introduced topology, Cayley was led by the study of particular analytical forms arising from differential calculus to study a particular class of graphs, the trees. This study had many implications in theoretical chemistry. The involved techniques mainly concerned the enumeration of graphs having particular properties. Enumerative graph theory then rose from the results of Cayley and the fundamental results published by Pólya between 1935 and 1937 and the generalization of these by De Bruijn in 1959. Cayley linked his results on trees with the contemporary studies of chemical composition<ref name="Cayley1">Cayley, A. (1875). "?". Berichte der deutschen Chemischen Gesellschaft 8: 1056–1059.</ref>. The fusion of the ideas coming from mathematics with those coming from chemistry is at the origin of a part of the standard terminology of graph theory. In particular, the term graph was introduced by Sylvester in a paper published in 1878 in Nature<ref name="Sylvester">Sylvester, J.J. (1878). "?". Nature 17: 284.</ref>.
One of the most famous and productive problems of graph theory is the four color problem: "Is it true that any map drawn in the plane may have its regions colored with four colors, in such a way that any two regions having a common border have different colors?". This problem remained unsolved for more than a century and the proof given by Kenneth Appel and Wolfgang Haken in 1976<ref name="AA1">Appel, K. and Haken, W. (1977). "Every planar map is four colorable. Part I. Discharging". Illinois J. Math. 21: 429-490.</ref><ref name="AA2">Appel, K. and Haken, W. (1977). "Every planar map is four colorable. Part II. Reducibility". Illinois J. Math. 21: 491-567.</ref> (determination of 1936 types of configurations which study is sufficient and checking of the properties of these configurations by computer) did not convince all the community. A simpler proof considering far less configurations was given twenty years later by Robertson, Seymour, Sanders and Thomas<ref name="RSST">Robertson, N.; Sanders, D.; Seymour, P. and Thomas, R. (1997). "The four color theorem". Journal of Combinatorial Theory Series B 70: 2-44.</ref>.
This problem was first posed by Francis Guthrie in 1852 and the first written record of this problem is a letter of De Morgan addressed to Hamilton the same year. Many incorrect proofs have been proposed, including those by Cayley, Kempe, and others. The study and the generalization of this problem by Tait, Heawood, Ramsey and Hadwiger has in particular led to the study of the colorings of the graphs embedded on surfaces with arbitrary genus. Tait's reformulation generated a new class of problems, the factorization problems, particularly studied by Petersen and Kőnig. The works of Ramsey on colorations and more specially the results obtained by Turán in 1941 is at the origin of another branch of graph theory, the extremal graph theory.
The autonomous development of topology from 1860 and 1930 fertilized graph theory back through the works of Jordan, Kuratowski and Whitney. Another important factor of common development of graph theory and topology came from the use of the techniques of modern algebra. The first example of such a use comes from the work of the physician Gustav Kirchhoff, who published in 1845 his Kirchhoff's circuit laws for calculating the voltage and current in electric circuits.
The introduction of probabilistic methods in graph theory, specially in the study of Erdös and Rényi of the asymptotic probability of graph connexity is at the origin of yet another branch, known as random graph theory. Research in this branch has enabled mathematicians across the globe to significantly advance the theory of graphs.
[edit] Drawing graphs
Graphs are represented graphically by drawing a dot for every vertex, and drawing an arc between two vertices if they are connected by an edge. If the graph is directed, the direction is indicated by drawing an arrow.
A graph drawing should not be confused with the graph itself (the abstract, non-graphical structure) as there are several ways to structure the graph drawing. All that matters is which vertices are connected to which others by how many edges and not the exact layout. In practice it is often difficult to decide if two drawings represent the same graph. Depending on the problem domain some layouts may be better suited and easier to understand than others.
[edit] Graph-theoretic data structures
There are different ways to store graphs in a computer system. The data structure used depends on both the graph structure and the algorithm used for manipulating the graph. Theoretically one can distinguish between list and matrix structures but in concrete applications the best structure is often a combination of both. List structures are often preferred for sparse graphs as they have smaller memory requirements. Matrix structures on the other hand provide faster access but can consume huge amounts of memory if the graph is very large.
[edit] List structures
- Incidence list - The edges are represented by an array containing pairs (ordered if directed) of vertices (that the edge connects) and possibly weight and other data.
- Adjacency list - Much like the incidence list, each vertex has a list of which vertices it is adjacent to. This causes redundancy in an undirected graph: for example, if vertices A and B are adjacent, A's adjacency list contains B, while B's list contains A. Adjacency queries are faster, at the cost of extra storage space.
[edit] Matrix structures
- Incidence matrix - The graph is represented by a matrix of E (edges) by V (vertices), where [edge, vertex] contains the edge's data (simplest case: 1 - connected, 0 - not connected).
- Adjacency matrix - there is an N by N matrix, where N is the number of vertices in the graph. If there is an edge from some vertex x to some vertex y, then the element <math>M_{x, y}</math> is 1, otherwise it is 0. This makes it easier to find subgraphs, and to reverse graphs if needed.
- Laplacian matrix or Kirchhoff matrix or Admittance matrix - is defined as degree matrix minus adjacency matrix and thus contains adjacency information and degree information about the vertices
- Distance matrix - A symmetric N by N matrix an element <math>M_{x, y}</math> of which is the length of shortest path between x and y; if there is no such path <math>M_{x, y}</math> = infinity. It can be derived from powers of the Adjacency matrix.
[edit] Problems in graph theory
[edit] Problems about subgraphs
A common problem, called subgraph isomorphism problem, is finding subgraphs in a given graph. Many graph properties are hereditary, which means that a graph has a property if and only if all subgraphs have it too. For example a graph is planar if it contains neither the complete bipartite graph <math>K_{3,3}</math> (See Three cottage problem) nor the complete graph <math>K_{5}</math>. Unfortunately, finding maximal subgraphs of a certain kind is often an NP-complete problem.
- Finding the largest complete graph is called the clique problem (NP-complete)
- Finding the largest independent set is called the independent set problem (NP-complete)
Another class of problems has to do with the extent to which various species and generalizations of graphs are determined by their point-deleted subgraphs, for example:
[edit] Graph coloring
Many problems have to do with various ways of coloring graphs, for example:
- The four-color theorem
- The strong perfect graph theorem
- The Erdős-Faber-Lovász conjecture (unsolved)
- The total coloring conjecture (unsolved)
- The list coloring conjecture (unsolved)
[edit] Route problems
- Hamiltonian path and cycle problems
- Seven Bridges of Königsberg
- Minimum spanning tree
- Steiner tree
- Shortest path problem
- Route inspection problem (also called the "Chinese Postman Problem")
- Traveling salesman problem (NP-Complete)
[edit] Network flow
There are numerous problems arising especially from applications that have to do with various notions of flows in networks, for example:
[edit] Visibility graph problems
[edit] Covering problems
Covering problems are specific instances of subgraph-finding problems, and they tend to be closely related to the clique problem or the independent set problem.
[edit] Applications
Applications of graph theory are primarily, but not exclusively, concerned with labeled graphs and various specializations of these.
Structures that can be represented as graphs are ubiquitous, and many problems of practical interest can be represented by graphs. The link structure of a website could be represented by a directed graph: the vertices are the web pages available at the website and a directed edge from page A to page B exists if and only if A contains a link to B. A similar approach can be taken to problems in travel, biology, computer chip design, and many other fields. The development of algorithms to handle graphs is therefore of major interest in computer science.
A graph structure can be extended by assigning a weight to each edge of the graph. Graphs with weights, or weighted graphs, are used to represent structures in which pairwise connections have some numerical values. For example if a graph represents a road network, the weights could represent the length of each road). A digraph with weighted edges in the context of graph theory is called a network.
Networks have many uses in the practical side of graph theory, network analysis (for example, to model and analyze traffic networks). Within network analysis, the definition of the term "network" varies, and may often refer to a simple graph.
Many applications of graph theory exist in the form of network analysis. These split broadly into two categories. Firstly, analysis to determine structural properties of a network, such as the distribution of vertex degrees and the diameter of the graph. A vast number of graph measures exist, and the production of useful ones for various domains remains an active area of research. Secondly, analysis to find a measurable quantity within the network, for example, for a transportation network, the level of vehicular flow within any portion of it.
Graph theory is also used to study molecules in chemistry and physics. In condensed matter physics, the three dimensional structure of complicated simulated atomic structures can be studied quantitatively by gathering statistics on graph-theoretic properties related to the topology of the atoms. For example, Franzblau's shortest-path (SP) rings.
[edit] References
- Berge, Claude, Théorie des graphes et ses applications. Collection Universitaire de Mathématiques, II Dunod, Paris 1958, viii+277 pp. (English edition, Wiley 1961; Methuen & Co, New York 1962; Russian, Moscow 1961; Spanish, Mexico 1962; Roumanian, Bucharest 1969; Chinese, Shanghai 1963; Second printing of the 1962 first English edition. Dover, New York 2001)
- Chartrand, Gary, Introductory Graph Theory, Dover. ISBN 0-486-24775-9.
- Biggs, N.; Lloyd, E. & Wilson, R. Graph Theory, 1736-1936 Oxford University Press, 1986
- Harary, Frank, Graph Theory, Addison-Wesley, Reading, MA, 1969.
[edit] See also
- Gallery of named graphs
- Glossary of graph theory
- List of graph theory topics
- Publications in graph theory
[edit] Related topics
[edit] Algorithms
[edit] Subareas
[edit] Related areas of mathematics
[edit] Prominent graph theorists
[edit] Notes
<references/>
[edit] External links
- More people and publications at: Graph Theory White Pages
- Online textbooks
- Graph Theory (1997/2005) by Reinhard Diestel
- Graph Theory with Applications (1976) by Bondy and Murty
- Phase Transitions in Combinatorial Optimization Problems, Section 3: Introduction to Graphs (2006) by Hartmann and Weigt
- Chapters 1,2,4,5,7,10 and 12 of Digraphs: Theory Algorithms and Applications 2001 by Jorgen Bang-Jensen and Gregory Gutin
- Other resources
- Graph theory tutorial
- The compendium of algorithm visualisation sites
- Challenging Benchmarks for Maximum Clique, Maximum Independent Set, Minimum Vertex Cover and Vertex Coloring
- Image gallery no.1: Some real-life networks
- Image gallery no.2: More real-life graphs
- Graph links collection
- Useful tools and Explanation
- Grafos Spanish copyleft software
- Source code for computing neighbor shells in particle systems under periodic boundary conditions
- Graph Theory Resources
- Weisstein, Eric W., Graph Theory at MathWorld., hosted by the makers of Mathematica[1]
<span class="FA" id="nl" style="display:none;" /> an:Tioría de grafos ar:نظرية المخططات bg:Теория на графите bs:Teorija grafikona cs:Teorie grafů da:Grafteori de:Graphentheorie eo:Grafeteorio es:Teoría de grafos fa:نظریه گراف fi:Graafiteoria fr:Théorie des graphes he:תורת הגרפים id:Teori graf it:Teoria dei grafi ja:グラフ理論 ko:그래프 이론 lt:Grafų teorija nl:Grafentheorie<span class="FA" id="nl" style="display:none;" /> nn:Grafteori no:Grafteori pl:Teoria grafów pt:Teoria dos grafos ru:Теория графов simple:Graph theory sk:Teória grafov sl:Teorija grafov sr:Теорија графова sv:Grafteori th:ทฤษฎีกราฟ tr:Çizge Teorisi uk:Теорія графів vi:Lý thuyết đồ thị zh:图论

