Jump to content

Logic of graphs

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by David Eppstein (talk | contribs) at 22:24, 17 September 2015 (New article; some text copied from linked articles (Rado graph, Courcelle's theorem, Bounded expansion, etc).). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In the mathematical fields of graph theory and finite model theory, the logic of graphs deals with formal specifications of graph properties using logical formulas. There are several variations in the types of logical operation that can be used in these formulas. The first order logic of graphs concerns formulas in which the variables and predicates concern individual vertices and edges of a graph, while monadic second order graph logic allows quantification over sets of vertices or edges. Several major algorithmic meta-theorems show that properties expressed in this way can be tested efficiently for several important classes of graphs.

First order

In the first-order logic of graphs, a graph property is expressed as a quantified logical formula whose variables represent graph vertices, with predicates for equality and adjacency testing. For instance, the condition that a graph does not have any isolated vertices may be expressed by the sentence

where the symbol indicates the adjacency relation between two vertices. This sentence is true for some graphs, and false for others; a graph is said to model , written , if is true of the vertices and adjacency relation of .

Zero-one law

Fagin (1976) proved a zero–one law for first-order graph logic using the compactness theorem. According to Fagin's result, every first-order sentence is either almost always true or almost always false for random graphs in the Erdős–Rényi model. That is, if one chooses a fixed sentence S, and computes the probability that a random n-vertex graph (choosen uniformly at random among all graphs on a set of n labeled vertices) models S, then in the limit as n tends to infinity this probability will tend either to zero or to one. Moreover, there is a specific infinite graph, the Rado graph, such that the sentences modeled by the Rado graph are exactly the ones for which the probability of being modeled by a random finite graph tends to one. However, the computational complexity of determining whether the Rado graph models a given sentence is high: the problem is PSPACE-complete.[1]

Parameterized complexity

If a first-order sentence includes k distinct variables, then the property it describes can be tested in graphs of n vertices by examining all k-tuples of vertices; however, this brute force search algorithm is not particularly efficient, taking time O(nk). The problem of checking whether a graph models a given first-order sentence includes as special cases the subgraph isomorphism problem (in which the sentence describes the graphs that contain a fixed subgraph) and the clique problem (in which the sentence describes graphs that contain complete subgraphs of a fixed size). The clique problem is hard for W(1), the first level of a hierarchy of hard problems from the point of view of parameterized complexity. Therefore, it is unlikely to have a fixed-parameter tractable algorithm, one whose running time takes the form O(f(knc) for a function f and constant c that are independent of k and c.[2] More strongly, if the exponential time hypothesis is true, then clique-finding and first-order model checking would necessarily take time proportional to a power of n whose exponent is proportional to k.[3]

Sparse graphs

On restricted classes of graphs, model checking of first-order sentences can be much more efficient. In particular, every graph property expressible as a first-order sentence can be tested in linear time for the graphs of bounded expansion. These are the graphs in which all shallow minors are sparse graphs, with a ratio of edges to vertices bounded by a function of the depth of the minor. Even more generally, first-order model checking can be performed in near-linear time for nowhere-dense graphs, classes of graphs for which, at each possible depth, there is at least one forbidden shallow minor.[4][5]

Second order

In the monadic second-order logic of graphs, the variables represent objects of up to four types: vertices, edges, sets of vertices, and sets of edges. There are two main variations of monadic second-order graph logic: MSO1 in which only vertex and vertex set variables are allowed, and MSO2 in which all four types of variables are allowed The predicates on these variables include equality testing, membership testing, and either vertex-edge incidence (if both vertex and edge variables are allowed) or adjacency between pairs of vertices (if only vertex variables are allowed). Additional variations in the definition allow additional predicates such as modular counting predicates.

Courcelle's theorem

According to Courcelle's theorem, every fixed MSO2 property can be tested in linear time on graphs of bounded treewidth, and every fixed MSO1 property can be tested in linear time on graphs of bounded clique-width.[6] The version of this result for graphs of bounded treewidth can also be implemented in logarithmic space.[7] Applications of this result include a fixed-parameter tractable algorithm for computing the crossing number of a graph.[8]

Seese's theorem

The satisfiability problem for a formula of monadic second-order logic is the problem of determining whether there exists at least one graph (possibly within a restricted family of graphs) for which the formula is true. For arbitrary graph families, and arbitrary formulas, this problem is undecidable. However, satisfiability of MSO2 formulas is decidable for the graphs of bounded treewidth, and satisfiability of MSO1 formulas is decidable for graphs of bounded clique-width. The proof involves using Courcelle's theorem to build an automaton that can test the property, and then examining the automaton to determine whether there is any graph it can accept.

As a partial converse, Seese (1991) proved that, whenever a family of graphs has a decidable MSO2 satisfiability problem, the family must have bounded treewidth. The proof is based on a theorem of Robertson and Seymour that the families of graphs with unbounded treewidth have arbitrarily large grid minors. Seese also conjectured that every family of graphs with a decidable MSO1 satisfiability problem must have bounded clique-width; this has not been proven, but a weakening of the conjecture that extends MSO1 with modular counting predicates is true.[9]

Notes

References