Permanent is sharp-P-complete

Permanent is sharp-P-complete

In a 1979 paper Leslie Valiant proved[1] that the problem of computing the permanent of a matrix is #P-hard, and remains #P-complete even if the matrix is restricted to have entries that are all 0 or 1. This result is sometimes known as Valiant's theorem[2] and is considered a seminal result in computational complexity theory.[3][4] Valiant's 1979 paper also introduced #P as a complexity class.[5]

Contents

Significance

One reason for interest in the computational complexity of the permanent is that it provides an example of a problem where constructing a single solution can be done efficiently but where counting all solutions is hard.[6] As Papadimitriou writes in his book Computational Complexity:

The most impressive and interesting #P-complete problems are those for which the corresponding search problem can be solved in polynomial time. The PERMANENT problem for 0–1 matrices, which is equivalent to the problem of counting perfect matchings in a bipartite graph [...] is the classic example here.[2]

Specifically, computing the permanent (shown to be difficult by Valiant's results) is closely connected with finding a perfect matching in a bipartite graph, which is solvable in polynomial time by the Hopcroft–Karp algorithm.[7][8] For a bipartite graph with 2n vertices partitioned into two parts with n vertices each, the number of perfect matchings equals the permanent of its biadjacency matrix and the square of the number of perfect matchings is equal to the permanent of its adjacency matrix.[9] Since any 0–1 matrix is the biadjacency matrix of some bipartite graph, Valiant's theorem implies[9] that the problem of counting the number of perfect matchings in a bipartite graph is #P-complete, and in conjunction with Toda's theorem this implies that it is hard for the entire polynomial hierarchy.[10][11]

The computational complexity of the permanent also has some significance in other aspects of complexity theory: it is not known whether NC equals P (informally, whether every polynomially-solvable problem can be solved by a polylogarithmic-time parallel algorithm) and Ketan Mulmuley has suggested an approach to resolving this question that relies on writing the permanent as the determinant of a matrix.[citation needed]

Hartmann [12] proved a generalization of Valiant's theorem concerning the complexity of computing immanants of matrices that generalize both the determinant and the permanent.

Ben-Dor and Halevi's proof

Below, the proof that computing the permanent of a 01-matrix is #P-complete is described. It mainly follows the proof by Ben-Dor & Halevi (1993).[13]

Overview

Any square matrix A = (aij) can be viewed as the adjacency matrix of a directed graph, with aij representing the weight of the edge from vertex i to vertex j. Then, the permanent of A is equal to the sum of the weights of all cycle-covers of the graph; this is a graph-theoretic interpretation of the permanent.

#SAT, a function problem related to the Boolean satisfiability problem, is the problem of counting the number of satisfying assignments of a given Boolean formula. It is a #P-complete problem (by definition), as any NP machine can be encoded into a Boolean formula by a process similar to that in Cook's theorem, such that the number of satisfying assignments of the Boolean formula is equal to the number of accepting paths of the NP machine. Any formula in SAT can be rewritten as a formula in 3-CNF form preserving the number of satisfying assignments, and so #SAT and #3SAT are equivalent and #3SAT is #P-complete as well.

In order to prove that 01-Permanent is #P-hard, it is therefore sufficient to show that the number of satisfying assignments for a 3-CNF formula can be expressed succinctly as a function of the permanent of a matrix that contains only the values 0 and 1. This is usually accomplished in two steps:

  1. Given a 3-CNF formula φ, construct a directed integer-weighted graph Gϕ, such that the sum of the weights of cycle covers of Gϕ (or equivalently, the permanent of its adjacency matrix) is equal to the number of satisfying assignments of φ. This establishes that Permanent is #P-hard.
  2. Through a series of reductions, reduce Permanent to 01-Permanent, the problem of computing the permanent of a matrix all entries 0 or 1. This establishes that 01-permanent is #P-hard as well.

Constructing the integer graph

Given a 3CNF-formula ϕ with m clauses and n variables, one can construct a weighted, directed graph Gϕ such that

  1. each satisfying assignment for ϕ will have a corresponding set of cycle covers in Gϕ where the sum of the weights of cycle covers in this set will be 12m ; and
  2. all other cycle covers in Gϕ will have weights summing to 0.

Thus if (\#\phi) is the number of satisfying assignments for ϕ, the permanent of this graph will be 12^m \cdot (\#\phi). (Valiant's original proof constructs a graph with entries in { − 1,0,1,2,3} whose permanent is 4^{t(\phi)}\cdot(\#\phi) where t(ϕ) is "twice the number of occurrences of literals in ϕ" – m.)

The graph construction makes use of a component that is treated as a "black box." To keep the explanation simple, the properties of this component are given without actually defining the structure of the component.

To specify Gφ, one first constructs a variable node in Gφ for each of the n variables in φ. Additionally, for each of the m clauses in φ, one constructs a clause component Cj in Gφ that functions as a sort of "black box." All that needs to be noted about Cj is that it has three input edges and three output edges. The input edges come either from variable nodes or from previous clause components (e.g., Co for some o < j) and the output edges go either to variable nodes or to later clause components (e.g., Co for some o > j). The first input and output edges correspond with the first variable of the clause j, and so on. Thus far, all of the nodes that will appear in the graph Gφ have been specified.

Next, one would consider the edges. For each variable xi of ϕ, one makes a true cycle (T-cycle) and a false cycle (F-cycle) in Gϕ. To create the T-cycle, one starts at the variable node for xi and draw an edge to the clause component Cj that corresponds to the first clause in which xi appears. If xi is the first variable in the clause of ϕ corresponding to Cj, this edge will be the first input edge of Cj, and so on. Thence, draw an edge to the next clause component corresponding to the next clause of ϕ in which xi appears, connecting it from the appropriate output edge of Cj to the appropriate input edge of the next clause component, and so on. After the last clause in which xi appears, we connect the appropriate output edge of the corresponding clause component back to xi's variable node. Of course, this completes the cycle. To create the F-cycle, one would follow the same procedure, but connect xi's variable node to those clause components in which ~xi appears, and finally back to xi's variable node. All of these edges outside the clause components are termed external edges, all of which have weight 1. Inside the clause components, the edges are termed internal edges. Every external edge is part of a T-cycle or an F-cycle (but not both—that would force inconsistency).

Note that the graph Gϕ is of size linear in | ϕ | , so the construction can be done in polytime (assuming that the clause components do not cause trouble).

Notable properties of the graph

A useful property of Gϕ is that its cycle covers correspond to variable assignments for ϕ. For a cycle cover Z of Gϕ, one can say that Z induces an assignment of values for the variables in ϕ just in case Z contains all of the external edges in xi's T-cycle and none of the external edges in xi's F-cycle for all variables xi that the assignment makes true, and vice versa for all variables xi that the assignment makes false. Although any given cycle cover Z need not induce an assignment for ϕ, any one that does induces exactly one assignment, and the same assignment induced depends only on the external edges of Z. The term Z is considered an incomplete cycle cover at this stage, because one talks only about its external edges, M. In the section below, one considers M-completions to show that one has a set of cycle covers corresponding to each M that have the necessary properties.

The sort of Z's that don't induce assignments are the ones with cycles that "jump" inside the clause components. That is, if for every Cj, at least one of Cj's input edges is in Z, and every output edge of the clause components is in Z when the corresponding input edge is in Z, then Z is proper with respect to each clause component, and Z will produce a satisfying assignment for ϕ. This is because proper Z's contain either the complete T-cycle or the complete F-cycle of every variable xi in ϕ as well as each including edges going into and coming out of each clause component. Thus, these Z's assign either true or false (but never both) to each xi and ensure that each clause is satisfied. Further, the sets of cycle covers corresponding to all such Z's have weight 12m, and any other Z's have weight 0. The reasons for this depend on the construction of the clause components, and are outlined below.

The clause component

To understand the relevant properties of the clause components Cj, one needs the notion of an M-completion. A cycle cover Z induces a satisfying assignment just in case its external edges satisfy certain properties. For any cycle cover of Gϕ, consider only its external edges, the subset M. Let M be a set of external edges. A set of internal edges L is an M-completion just in case M\cup L is a cycle cover of Gϕ. Further, denote the set of all M-completions by LM and the set of all resulting cycle covers of Gϕ by ZM.

Recall that construction of Gϕ was such that each external edge had weight 1, so the weight of ZM, the cycle covers resulting from any M, depends only on the internal edges involved. We add here the premise that the construction of the clause components is such that the sum over possible M-completions of the weight of the internal edges in each clause component, where M is proper relative to the clause component, is 12. Otherwise the weight of the internal edges is 0. Since there are m clause components, and the selection of sets of internal edges, L, within each clause component is independent of the selection of sets of internal edges in other clause components, so one can multiply everything to get the weight of ZM. So, the weight of each ZM, where M induces a satisfying assignment, is 12m. Further, where M does not induce a satisfying assignment, M is not proper with respect to some Cj, so the product of the weights of internal edges in ZM will be 0.

The clause component is a weighted, directed graph with 7 nodes with edges weighted and nodes arranged to yield the properties specified above, and is given in Appendix A of Ben-Dor and Halevi (1993). Note that the internal edges here have weights drawn from the set { − 1,0,1,2,3}; not all edges have 0–1 weights.

Finally, since the sum of weights of all the sets of cycle covers inducing any particular satisfying assignment is 12m, and the sum of weights of all other sets of cycle covers is 0, one has Perm(Gφ) = 12m·(). The following section reduces computing Perm(Gϕ) to the permanent of a 01 matrix.

01-Matrix

The above section has shown that Permanent is #P-hard. Through a series of reductions, any permanent can be reduced to the permanent of a matrix with entries only 0 or 1. This will prove that 01-Permanent is #P-hard as well.

Reduction to a non-negative matrix

Using modular arithmetic, convert an integer matrix A into an equivalent non-negative matrix A' so that the permanent of A can be computed easily from the permanent of A', as follows:

Let A be an n \times n integer matrix where no entry has a magnitude larger than μ.

  • Compute Q = 2 n! \cdot \mu^n + 1. The choice of Q is due to the fact that |\operatorname{Perm}(A)| \le n! \cdot \mu^n
  • Compute A' = A\,\bmod\,Q
  • Compute P = \operatorname{Perm}(A')\,\bmod\,Q
  • If P < Q / 2 then Perm(A) = P. Otherwise Perm(A) = PQ

The transformation of A into A' is polynomial in n and log(μ), since the number of bits required to represent Q is polynomial in n and log(μ)

An example of the transformation and why it works is given below.

A = \begin{bmatrix}2 & -2 \\ -2 & 1\end{bmatrix}
\operatorname{Perm}(A) = 2 \cdot 1 + (-2) \cdot (-2) = 6.

Here, n = 2, μ = 2, and μn = 4, so Q = 17. Thus

A' = A\,\bmod\,17 = \begin{bmatrix}2 & 15 \\ 15 & 1\end{bmatrix}.

Note how the elements are non-negative because of the modular arithmetic. It is simple to compute the permanent

\operatorname{Perm}(A') = 2 \cdot 1 + 15 \cdot 15 = 227

so P = 227\,\bmod\,17 = 6. Then P < Q / 2, so \operatorname{Perm}(A) = P = 6.

Reduction to powers of 2

Figure 1: Construction of 2Power from NonNeg

Note that any number can be decomposed into a sum of powers of 2. For example,

13 = 23 + 22 + 20

This fact is used to convert a non-negative matrix into an equivalent matrix whose entries are all powers of 2. The reduction can be expressed in terms of graphs equivalent to the matrices.

Let G be a n-node weighted directed graph with non-negative weights, where largest weight is W. Every edge e with weight w is converted into an equivalent edge with weights in powers of 2 as follows:

w = 2^{x_1} + 2^{x_2} + \cdots + 2^{x_r}, 0 \le x_1 \le x_2 \le \cdots \le x_r \le \log (w)

This can be seen graphically in the Figure 1. The subgraph that replaces the existing edge contains r nodes and 3r edges.

To prove that this produces an equivalent graph G' that has the same permanent as the original, one must show the correspondence between the cycle covers of G and G'.

Consider some cycle-cover R in G.

  • If an edge e is not in R, then to cover all the nodes in the new sub graph, one must use the self-loops. Since all self-loops have a weight of 1, the weight of cycle-covers in R and R' match.
  • If e is in R, then in all the corresponding cycle-covers in G', there must be a path from u to v, where u and v are the nodes of edge e. From the construction, one can see that there are r different paths and sum of all these paths equal to the weight of the edge in the original graph G. So the weight of corresponding cycle-covers in G and G' match.

Note that the size of G' is polynomial in n and log W.

Reduction to 0–1

Figure 2: Construction of a 01-matrix from 2Power

The objective here is to reduce a matrix whose entries are powers of 2 into an equivalent matrix containing only zeros and ones (i.e. a directed graph where each edge has a weight of 1).

Let G be a n-node directed graph where all the weights on edges are powers of two. Construct a graph, G', where the weight of each edge is 1 and Perm(G) = Perm(G'). The size of this new graph, G', is polynomial in n and p where the maximal weight of any edge in graph G is 2p.

This reduction is done locally at each edge in G that has a weight larger than 1. Let e = (u,v) be an edge in G with a weight w = 2r > 1. It is replaced by a subgraph Je that is made up of 2r nodes and 6r edges as seen in Figure 2. Each edge in Je has a weight of 1. Thus, the resulting graph G' contains only edges with a weight of 1.

Consider some cycle-cover R in G.

  • If an original edge e from graph G is not in R, one cannot create a path through the new subgraph Je. The only way to form a cycle cover over Je in such a case is for each node in the subgraph to take its self-loop. As each edge has a weight of one, the weight of the resulting cycle cover is equal to that of the original cycle cover.
  • However, if the edge in G is a part of the cycle cover then in any cycle cover of G' there must be a path from u to v in the subgraph. At each step down the subgraph there are two choices one can make to form such a path. One must make this choice r times, resulting in 2r possible paths from u to v. Thus, there are 2r possible cycle covers and since each path has a weight of 1, the sum of the weights of all these cycle covers equals the weight of the original cycle cover.

References

  1. ^ Leslie G. Valiant (1979). "The Complexity of Computing the Permanent". Theoretical Computer Science (Elsevier) 8 (2): 189–201. doi:10.1016/0304-3975(79)90044-6. 
  2. ^ a b Christos H. Papadimitriou. Computational Complexity. Addison-Wesley, 1994. ISBN 0-201-53082-1. Page 443
  3. ^ Allen Kent, James G. Williams, Rosalind Kent and Carolyn M. Hall (editors). Encyclopedia of microcomputers.Marcel Dekker, 1999. ISBN 978-0-8247-2722-2; p. 34
  4. ^ Jin-Yi Cai, A. Pavan and D. Sivakumar, On the Hardness of Permanent. In: STACS, '99: 16th Annual Symposium on Theoretical Aspects of Computer Science, Trier, Germany, March 4–6, 1999 Proceedings. pp. 90–99. Springer-Verlag, New York, LLC Pub. Date: October 2007. ISBN 978-3-540-65691-3; p. 90.
  5. ^ L. Fortnow. My Favorite Ten Complexity Theorems of the Past Decade. Foundations of Software Technology and Theoretical Computer Science: Proceedings of the 14th Conference, Madras, India, December 15–17, 1994. P. S. Thiagarajan (editor), pp. 256–275, Springer-Verlag, New York, 2007. ISBN 978-3-540-58715-6; p. 265
  6. ^ Peter Burgisser.Completeness and Reduction in Algebraic Complexity Theory. Springer-Verlag, New York, 2000. ISBN 978-3-540-66752-0; p. 2
  7. ^ John E. Hopcroft, Richard M. Karp: An n5 / 2 Algorithm for Maximum Matchings in Bipartite Graphs. SIAM J. Comput. 2(4), 225–231 (1973)
  8. ^ Cormen, Thomas H.; Leiserson, Charles E., Rivest, Ronald L., Stein, Clifford (2001) [1990]. "26.5: The relabel-to-front algorithm". Introduction to Algorithms (2nd ed.). MIT Press and McGraw-Hill. pp. pp. 696–697. ISBN 0-262-03293-7. 
  9. ^ a b Dexter Kozen. The Design and Analysis of Algorithms. Springer-Verlag, New York, 1991. ISBN 978-0-387-97687-7; pp. 141–142
  10. ^ Seinosuke Toda. PP is as Hard as the Polynomial-Time Hierarchy. SIAM Journal on Computing, Volume 20 (1991), Issue 5, pp. 865–877.
  11. ^ 1998 Gödel Prize. Seinosuke Toda
  12. ^ W. Hartmann. On the complexity of immanants. Linear and Multilinear Algebra 18 (1985), no. 2, pp. 127–140.
  13. ^ Ben-Dor, Amir; Halevi, Shai (1993). "Proceedings of the 2nd Israel Symposium on the Theory and Computing Systems". pp. 108–117. http://citeseer.ist.psu.edu/ben-dor95zeroone.html. .

Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Sharp-P-complete — The correct title of this article is #P complete. The substitution or omission of the # sign is because of technical restrictions. #P complete, pronounced sharp P complete or number P complete is a complexity class in computational complexity… …   Wikipedia

  • Sharp-P — The correct title of this article is #P. The substitution or omission of the # sign is because of technical restrictions. In computational complexity theory, the complexity class #P (pronounced number P or, sometimes sharp P or hash P ) is the… …   Wikipedia

  • Permanent way — The permanent way means the physical elements of the railway line itself: generally the pairs of rails typically laid on sleepers embedded in ballast, intended to carry the ordinary trains of a railway. This page describes British practice and… …   Wikipedia

  • Класс Sharp-P — Правильный заголовок этой статьи  Класс #P. Он показан некорректно из за технических ограничений. В теории сложности, #P является классом проблем, решением которых является количество успешных, т.е., завершающихся в допускающих состояниях,… …   Википедия

  • List of mathematics articles (P) — NOTOC P P = NP problem P adic analysis P adic number P adic order P compact group P group P² irreducible P Laplacian P matrix P rep P value P vector P y method Pacific Journal of Mathematics Package merge algorithm Packed storage matrix Packing… …   Wikipedia

  • List of rock instrumentals — The following is a list of rock instrumentals, including live performances and drum solos, organized by artist name. 0 9 =3= *Bramfatura =311= * Blizza * Cali Soca * Color ( Transistor ) * Dreamland ( Enlarged to Show Detail 2 ) * Old Funk *… …   Wikipedia

  • china — /chuy neuh/, n. 1. a translucent ceramic material, biscuit fired at a high temperature, its glaze fired at a low temperature. 2. any porcelain ware. 3. plates, cups, saucers, etc., collectively. 4. figurines made of porcelain or ceramic material …   Universalium

  • China — /chuy neuh/, n. 1. People s Republic of, a country in E Asia. 1,221,591,778; 3,691,502 sq. mi. (9,560,990 sq. km). Cap.: Beijing. 2. Republic of. Also called Nationalist China. a republic consisting mainly of the island of Taiwan off the SE coast …   Universalium

  • United Kingdom — a kingdom in NW Europe, consisting of Great Britain and Northern Ireland: formerly comprising Great Britain and Ireland 1801 1922. 58,610,182; 94,242 sq. mi. (244,100 sq. km). Cap.: London. Abbr.: U.K. Official name, United Kingdom of Great… …   Universalium

  • United States — a republic in the N Western Hemisphere comprising 48 conterminous states, the District of Columbia, and Alaska in North America, and Hawaii in the N Pacific. 267,954,767; conterminous United States, 3,022,387 sq. mi. (7,827,982 sq. km); with… …   Universalium

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”