Graph isomorphism problem

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
Question dropshade.png Unsolved problem in computer science:
Can the graph isomorphism problem be solved in polynomial time?
(more unsolved problems in computer science)

The graph isomorphism problem is the computational problem of determining whether two finite graphs are isomorphic.

The problem is not known to be solvable in polynomial time nor to be NP-complete, and therefore may be in the computational complexity class NP-intermediate. It is known that the graph isomorphism problem is in the low hierarchy of class NP, which implies that it is not NP-complete unless the polynomial time hierarchy collapses to its second level.[1] At the same time, isomorphism for many special classes of graphs can be solved in polynomial time, and in practice graph isomorphism can often be solved efficiently.[2]

This problem is a special case of the subgraph isomorphism problem,[3] which asks whether a given graph G contains a subgraph that is isomorphic to another given graph H; this problem is known to be NP-complete. It is also known to be a special case of the non-abelian hidden subgroup problem over the symmetric group.[4]

In the area of image recognition it is known as the exact graph matching.[5]

State of the art[edit]

The best currently accepted theoretical algorithm is due to Babai & Luks (1983), and is based on the earlier work by Luks (1982) combined with a subfactorial algorithm of V. N. Zemlyachenko (Zemlyachenko, Korneenko & Tyshkevich 1985). The algorithm has run time 2O(n log n) for graphs with n vertices and relies on the classification of finite simple groups. Without CFSG, a slightly weaker bound 2O(n log2 n) was obtained first for strongly regular graphs by László Babai (1980), and then extended to general graphs by Babai & Luks (1983). Improvement of the exponent n is a major open problem; for strongly regular graphs this was done by Spielman (1996). For hypergraphs of bounded rank, a subexponential upper bound matching the case of graphs was obtained by Babai & Codenotti (2008).

In November 2015, Babai announced a quasipolynomial time algorithm for all graphs, that is, one with running time for some fixed .[6][7][8] On January 4, 2017, Babai retracted the quasi-polynomial claim and stated a sub-exponential time bound instead after Harald Helfgott discovered a flaw in the proof. On January 9, 2017, Babai announced a correction (published in full on January 19) and restored the quasi-polynomial claim, with Helfgott confirming the fix.[9][10] Helfgott further claims that one can take c = 3, so the running time is 2O((log n)3).[11] The new proof has not been fully peer-reviewed yet.

There are several competing practical algorithms for graph isomorphism, such as those due to McKay (1981), Schmidt & Druffel (1976), and Ullman (1976). While they seem to perform well on random graphs, a major drawback of these algorithms is their exponential time performance in the worst case.[12]

The graph isomorphism problem is computationally equivalent to the problem of computing the automorphism group of a graph, and is weaker than the permutation group isomorphism problem and the permutation group intersection problem. For the latter two problems, Babai, Kantor & Luks (1983) obtained complexity bounds similar to that for graph isomorphism.

Solved special cases[edit]

A number of important special cases of the graph isomorphism problem have efficient, polynomial-time solutions:

Complexity class GI[edit]

Since the graph isomorphism problem is neither known to be NP-complete nor known to be tractable, researchers have sought to gain insight into the problem by defining a new class GI, the set of problems with a polynomial-time Turing reduction to the graph isomorphism problem.[26] If in fact the graph isomorphism problem is solvable in polynomial time, GI would equal P.

As is common for complexity classes within the polynomial time hierarchy, a problem is called GI-hard if there is a polynomial-time Turing reduction from any problem in GI to that problem, i.e., a polynomial-time solution to a GI-hard problem would yield a polynomial-time solution to the graph isomorphism problem (and so all problems in GI). A problem is called complete for GI, or GI-complete, if it is both GI-hard and a polynomial-time solution to the GI problem would yield a polynomial-time solution to .

The graph isomorphism problem is contained in both NP and co-AM. GI is contained in and low for Parity P, as well as contained in the potentially much smaller class SPP.[27] That it lies in Parity P means that the graph isomorphism problem is no harder than determining whether a polynomial-time nondeterministic Turing machine has an even or odd number of accepting paths. GI is also contained in and low for ZPPNP.[28] This essentially means that an efficient Las Vegas algorithm with access to an NP oracle can solve graph isomorphism so easily that it gains no power from being given the ability to do so in constant time.

GI-complete and GI-hard problems[edit]

Isomorphism of other objects[edit]

There are a number of classes of mathematical objects for which the problem of isomorphism is a GI-complete problem. A number of them are graphs endowed with additional properties or restrictions:[29]

GI-complete classes of graphs[edit]

A class of graphs is called GI-complete if recognition of isomorphism for graphs from this subclass is a GI-complete problem. The following classes are GI-complete:[29]

Many classes of digraphs are also GI-complete.

Other GI-complete problems[edit]

There are other nontrivial GI-complete problems in addition to isomorphism problems.

  • The recognition of self-complementarity of a graph or digraph.[35]
  • A clique problem for a class of so-called M-graphs. It is shown that finding an isomorphism for n-vertex graphs is equivalent to finding an n-clique in an M-graph of size n2. This fact is interesting because the problem of finding an (n − ε)-clique in a M-graph of size n2 is NP-complete for arbitrarily small positive ε.[36]
  • The problem of homeomorphism of 2-complexes.[37]

GI-hard problems[edit]

  • The problem of counting the number of isomorphisms between two graphs is polynomial-time equivalent to the problem of telling whether even one exists.[38]
  • The problem of deciding whether two convex polytopes given by either the V-description or H-description are projectively or affinely isomorphic. The latter means existence of a projective or affine map between the spaces that contain the two polytopes (not necessarily of the same dimension) which induces a bijection between the polytopes.[34]

Program checking[edit]

Manuel Blum and Sampath Kannan (1995) have shown a probabilistic checker for programs for graph isomorphism. Suppose P is a claimed polynomial-time procedure that checks if two graphs are isomorphic, but it is not trusted. To check if G and H are isomorphic:

  • Ask P whether G and H are isomorphic.
    • If the answer is "yes':
      • Attempt to construct an isomorphism using P as subroutine. Mark a vertex u in G and v in H, and modify the graphs to make them distinctive (with a small local change). Ask P if the modified graphs are isomorphic. If no, change v to a different vertex. Continue searching.
      • Either the isomorphism will be found (and can be verified), or P will contradict itself.
    • If the answer is "no":
      • Perform the following 100 times. Choose randomly G or H, and randomly permute its vertices. Ask P if the graph is isomorphic to G and H. (As in AM protocol for graph nonisomorphism).
      • If any of the tests are failed, judge P as invalid program. Otherwise, answer "no".

This procedure is polynomial-time and gives the correct answer if P is a correct program for graph isomorphism. If P is not a correct program, but answers correctly on G and H, the checker will either give the correct answer, or detect invalid behaviour of P. If P is not a correct program, and answers incorrectly on G and H, the checker will detect invalid behaviour of P with high probability, or answer wrong with probability 2−100.

Notably, P is used only as a blackbox.

Applications[edit]

Graphs are commonly used to encode structural information in many fields, including computer vision and pattern recognition, and graph matching, i.e., identification of similarities between graphs, is an important tools in these areas. In these areas graph isomorphism problem is known as the exact graph matching.[39]

In cheminformatics and in mathematical chemistry, graph isomorphism testing is used to identify a chemical compound within a chemical database.[40] Also, in organic mathematical chemistry graph isomorphism testing is useful for generation of molecular graphs and for computer synthesis.

Chemical database search is an example of graphical data mining, where the graph canonization approach is often used.[41] In particular, a number of identifiers for chemical substances, such as SMILES and InChI, designed to provide a standard and human-readable way to encode molecular information and to facilitate the search for such information in databases and on the web, use canonization step in their computation, which is essentially the canonization of the graph which represents the molecule.

In electronic design automation graph isomorphism is the basis of the Layout Versus Schematic (LVS) circuit design step, which is a verification whether the electric circuits represented by a circuit schematic and an integrated circuit layout are the same.[42]

See also[edit]

Notes[edit]

  1. ^ Schöning (1987).
  2. ^ McKay (1981).
  3. ^ Ullman (1976).
  4. ^ Moore, Russell & Schulman (2008).
  5. ^ Endika Bengoetxea, "Inexact Graph Matching Using Estimation of Distribution Algorithms", Ph. D., 2002, Chapter 2:The graph matching problem (retrieved June 28, 2017)
  6. ^ "Mathematician claims breakthrough in complexity theory". Science. Nov 10, 2015.
  7. ^ Babai (2015)
  8. ^ Video of first 2015 lecture linked from Babai's home page
  9. ^ Babai, László (January 9, 2017), Graph isomorphism update
  10. ^ Erika Klarreich, Graph Isomorphism Vanquished — Again, Quanta Magazine, January 14, 2017 see here
  11. ^ Helfgott, Harald (January 16, 2017), Isomorphismes de graphes en temps quasi-polynomial (d'après Babai et Luks, Weisfeiler-Leman...), arXiv:1701.04372, Bibcode:2017arXiv170104372A
  12. ^ Foggia, Sansone & Vento (2001).
  13. ^ Kelly (1957).
  14. ^ Aho, Hopcroft & Ullman (1974), p. 84-86.
  15. ^ Hopcroft & Wong (1974).
  16. ^ Datta et al. (2009).
  17. ^ Booth & Lueker (1979).
  18. ^ Colbourn (1981).
  19. ^ Muzychuk (2004).
  20. ^ Bodlaender (1990).
  21. ^ Miller 1980; Filotti & Mayer 1980.
  22. ^ Luks (1982).
  23. ^ Babai, Grigoryev & Mount (1982).
  24. ^ Miller (1983).
  25. ^ Luks (1986).
  26. ^ Booth & Colbourn 1977; Köbler, Schöning & Torán 1993.
  27. ^ Köbler, Schöning & Torán 1992; Arvind & Kurur 2006
  28. ^ Arvind & Köbler (2000).
  29. ^ a b c d e f g h i j k l m n o p q r s t u v w x Zemlyachenko, Korneenko & Tyshkevich (1985)
  30. ^ Narayanamurthy & Ravindran (2008).
  31. ^ Grigor'ev (1981).
  32. ^ Johnson (2005); Kaibel & Schwartz (2003).
  33. ^ Chung (1985).
  34. ^ a b Kaibel & Schwartz (2003).
  35. ^ Colbourn & Colbourn (1978).
  36. ^ Kozen (1978).
  37. ^ Shawe-Taylor & Pisanski (1994).
  38. ^ Mathon (1979); Johnson 2005.
  39. ^ Endika Bengoetxea, Ph.D., Abstract
  40. ^ Irniger (2005).
  41. ^ Cook & Holder (2007).
  42. ^ Baird & Cho (1975).

References[edit]

Surveys and monographs[edit]

Software[edit]