In mathematical logic, monadic second-order logic (MSO) is the fragment of second-order logic where the second-order quantification is limited to quantification over sets. It is particularly important in the logic of graphs, because of Courcelle's theorem, which provides algorithms for evaluating monadic second-order formulas over graphs of bounded treewidth. It is also of fundamental importance in automata theory, where the Büchi–Elgot–Trakhtenbrot theorem gives a logical characterization of the regular languages.

Second-order logic allows quantification over predicates. However, MSO is the fragment in which second-order quantification is limited to monadic predicates (predicates having a single argument). This is often described as quantification over "sets" because monadic predicates are equivalent in expressive power to sets (the set of elements for which the predicate is true).

Monadic second-order logic is expressively equivalent to plural logic.

Variants

Monadic second-order logic comes in two variants. In the variant considered over structures such as graphs and in Courcelle's theorem, the formula may involve non-monadic predicate constants (in this case the binary edge predicate E ( x , y ) {\displaystyle E(x,y)}), but quantification is restricted to be over monadic predicate variables only. In the variant considered in automata theory and the Büchi–Elgot–Trakhtenbrot theorem, all predicates, constant or variable, must be monadic, with the exceptions of equality (= {\displaystyle =}) and ordering (< {\displaystyle <}) relations.

Computational complexity of evaluation

Existential monadic second-order logic (EMSO) is the fragment of MSO in which all quantifiers over sets must be existential quantifiers, outside of any other part of the formula. The first-order quantifiers are not restricted. That is, one can speak of "there exists some x, such that..." and "for all x, we have..." where x is a term, but one can only speak of "there exists some monadic predicate P, such that..." not "for all monadic predicate P, we have...".

Fagin's theorem states that existential second-order logic (ESO) captures precisely the descriptive complexity of the complexity class NP. By analogy, the class of problems that may be expressed in existential monadic second-order logic has been called monadic NP. In other words, EMSO captures precisely the descriptive complexity of monadic NP (MNP).

In the logic of graphs, testing whether a graph is disconnected is in MNP, as the test can be represented by a formula that describes the existence of a proper subset of vertices with no edges connecting them to the rest of the graph. The complementary problem, testing whether a graph is connected, does not belong to monadic NP. That is, it is a problem in co-MNP \ MNP. By symmetry, graph disconnection testing is in MNP \ co-MNP, showing that neither complexity class contains the other. The addition of "monadic" makes the question easier. The analogous question, of whether NP = co-NP, is an open question in computational complexity.

By contrast, when we wish to check whether a Boolean MSO formula is satisfied by an input finite tree, this problem can be solved in linear time in the tree, by translating the Boolean MSO formula to a tree automaton and evaluating the automaton on the tree. In terms of the query, however, the complexity of this process is generally nonelementary. Thanks to Courcelle's theorem, we can also evaluate a Boolean MSO formula in linear time on an input graph if the treewidth of the graph is bounded by a constant.

For MSO formulas that have free variables, when the input data is a tree or has bounded treewidth, there are efficient enumeration algorithms to produce the set of all solutions, ensuring that the input data is preprocessed in linear time and that each solution is then produced in a delay linear in the size of each solution, i.e., constant-delay in the common case where all free variables of the query are first-order variables (i.e., they do not represent sets). There are also efficient algorithms for counting the number of solutions of the MSO formula in that case.

Decidability and complexity of satisfiability

The satisfiability problem for monadic second-order logic is undecidable in general because this logic subsumes first-order logic.

The monadic second-order theory of the infinite complete binary tree, called S2S, is decidable. As a consequence of this result, the following theories are decidable:

  • The monadic second-order theory of trees.
  • S1S, The monadic second-order theory with one successor (that is, of N {\displaystyle \mathbb {N} })
  • WS2S and WS1S, which restrict quantification to finite subsets (weak monadic second-order logic). By binary-coding natural numbers as finite subsets, addition is definable even in WS1S.

For each of these theories (S2S, S1S, WS2S, WS1S), the complexity of the decision problem is nonelementary. They could be obtained by performing a reduction of the emptiness problem of the star-free languages to WS1S. The WS1S is specifically known to be TOWER-complete.

Use of satisfiability of MSO on trees in verification

Monadic second-order logic of trees has applications in formal verification. Decision procedures for MSO satisfiability have been used to prove properties of programs manipulating linked data structures, as a form of shape analysis, and for symbolic reasoning in hardware verification.

See also