Planar SAT explained
In computer science, the planar 3-satisfiability problem (abbreviated PLANAR 3SAT or PL3SAT) is an extension of the classical Boolean 3-satisfiability problem to a planar incidence graph. In other words, it asks whether the variables of a given Boolean formula—whose incidence graph consisting of variables and clauses can be embedded on a plane—can be consistently replaced by the values TRUE or FALSE in such a way that the formula evaluates to TRUE. If this is the case, the formula is called satisfiable. On the other hand, if no such assignment exists, the function expressed by the formula is FALSE for all possible variable assignments and the formula is unsatisfiable. For example, the formula "a AND NOT b" is satisfiable because one can find the values a = TRUE and b = FALSE, which make (a AND NOT b) = TRUE. In contrast, "a AND NOT a" is unsatisfiable.
Like 3SAT, PLANAR-SAT is NP-complete, and is commonly used in reductions.
Definition
Every 3SAT problem can be converted to an incidence graph in the following manner: For every variable
, the graph has one corresponding node
, and for every clause
, the graph has one corresponding node
An edge
is created between variable
and clause
whenever
or
is in
. Positive and negative literals are distinguished using
edge colorings.
The formula is satisfiable if and only if there is a way to assign TRUE or FALSE to each variable node such that every clause node is connected to at least one TRUE by a positive edge or FALSE by a negative edge.
A planar graph is a graph that can be drawn on the plane in a way such that no two of its edges cross each other. Planar 3SAT is a subset of 3SAT in which the incidence graph of the variables and clauses of a Boolean formula is planar. It is important because it is a restricted variant, and is still NP-complete. Many problems (for example games and puzzles) cannot represent non-planar graphs. Hence, Planar 3SAT provides a way to prove those problems to be NP-hard.
Proof of NP-completeness
The following proof sketch follows the proof of D. Lichtenstein.[1]
Trivially, PLANAR 3SAT is in NP. It is thus sufficient to show that it is NP-hard via reduction from 3SAT.
This proof makes use of the fact that
(lnota\lorlnotb\lorc)\land(a\lorlnotc)\land(b\lorlnotc)
is equivalent to
(a\landb)\leftrightarrowc
and that
(a\lorlnotb)\land(lnota\lorb)
is equivalent to
.
First, draw the incidence graph of the 3SAT formula. Since no two variables or clauses are connected, the resulting graph will be bipartite. Suppose the resulting graph is not planar. For every crossing of edges (a, c1) and (b, c2), introduce nine new variables a1, b1, α, β, γ, δ, ξ, a2, b2, and replace every crossing of edges with a crossover gadget shown in the diagram. It consists of the following new clauses:
If the edge (a, c1) is inverted in the original graph, (a1, c1) should be inverted in the crossover gadget. Similarly if the edge (b, c2) is inverted in the original, (b1, c2) should be inverted.
One can easily show that these clauses are satisfiable if and only if
and
.
This algorithm shows that it is possible to convert each crossing into its planar equivalent using only a constant amount of new additions. Since the number of crossings is polynomial in terms of the number of clauses and variables, the reduction is polynomial.[2]
Variants and related problems
- Planar 3SAT with a variable-cycle: Here, in addition to the incidence-graph, the graph also includes a cycle going through all the variables, and each clause is either inside or outside this cycle. The resulting graph must still be planar. This problem is NP-complete.
- However, if the problem is further restricted such that all clauses are inside the variable-cycle, or all clauses are outside it, then the problem can be solved in polynomial time using dynamic programming.
- Planar 3SAT with literals: The bipartite incidence graph of the literals and clauses is planar too. This problem is NP-complete.
- Planar rectilinear 3SAT: Vertices of the graph are represented as horizontal segments. Each variable lies on the x-axis while each clause lies above/below the x-axis. Every connection between a variable and a clause must be a vertical segment. Each clause may only have up to 3 connections with variables and are either all-positive or all-negative. This problem is NP-complete.[3]
- Planar monotone rectilinear 3SAT: This is a variant of planar rectilinear 3SAT where the clauses above the x-axis are all-positive and the clauses below the x-axis are all-negative. This problem is NP-complete[4] and remains NP-complete when each clause containing three variables has two neighboring variables that are adjacent on the x-axis (i.e., no other variable appears horizontally between the neighboring variables).[5]
- Planar 1-in-3SAT: This is the planar equivalent of 1-in-3SAT. It is NP-complete.[6]
- Planar positive rectilinear 1-in-3SAT: This is the planar equivalent of positive 1-in-3SAT. It is NP-complete.[7]
- Planar NAE 3SAT: This problem is the planar equivalent of NAE 3SAT. Unlike the other variants, this problem can be solved in polynomial time. The proof is by reduction to planar maximum cut.[8]
- Planar circuit SAT: This is a variant of circuit SAT in which the circuit, computing the SAT formula, is a planar directed acyclic graph. Note that this is a different graph than the adjacency graph of the formula. This problem is NP-complete.[9]
Reductions
Logic puzzles
Reduction from Planar SAT is a commonly used method in NP-completeness proofs of logic puzzles. Examples of these include Fillomino,[10] Nurikabe,[11] Shakashaka, Tatamibari,[12] and Tentai Show.[13] These proofs involve constructing gadgets that can simulate wires carrying signals (Boolean values), input and output gates, signal splitters, NOT gates and AND (or OR) gates in order to represent the planar embedding of any Boolean circuit. Since the circuits are planar, crossover of wires do not need to be considered.
Flat folding of fixed-angle chains
This is the problem of deciding whether a polygonal chain with fixed edge lengths and angles has a planar configuration without crossings. It has been proven to be strongly NP-hard via a reduction from planar monotone rectilinear 3SAT.[14]
Minimum edge-length partition
This is the problem of partitioning a polygon into simpler polygons such that the total length of all edges used in the partition is as small as possible.
When the figure is a rectilinear polygon and it should be partitioned into rectangles, and the polygon is hole-free, then the problem is polynomial. But if it contains holes (even degenerate holes—single points), the problem is NP-hard, by reduction from Planar SAT. The same holds if the figure is any polygon and it should be partitioned into convex figures.[15]
A related problem is minimum-weight triangulation - finding a triangulation of minimal total edge length. The decision version of this problem is proven to be NP-complete via a reduction from a variant of Planar 1-in-3SAT.[16]
Notes and References
- Lichtenstein. David. 1982-05-01. Planar Formulae and Their Uses. SIAM Journal on Computing. 11. 2. 329–343. 10.1137/0211025. 0097-5397.
- Web site: Demaine. Eric. 2015. 7. Planar SAT. MIT Open CourseWare.
- Raghunathan. Arvind. Knuth. Donald E.. 1992 . The problem of compatible representatives. cs/9301116 . SIAM J. Discrete Math. . 5 . 3 . 422–427. 10.1137/0405033. 1993cs........1116K. 9974756 .
- Book: 10.1007/978-3-642-14031-0_25. Optimal Binary Space Partitions in the Plane. Computing and Combinatorics. 6196. 216–225. Lecture Notes in Computer Science. 2010. De Berg. Mark. Khosravi. Amirali. 978-3-642-14030-3.
- Agarwal . Pankaj K. . Aronov . Boris . Geft . Tzvika . Halperin . Dan . On Two-Handed Planar Assembly Partitioning with Connectivity Constraints . Proceedings of the 2021 ACM-SIAM Symposium on Discrete Algorithms (SODA) . 2021 . 1740–1756 . 2009.12369 . 10.1137/1.9781611976465.105. 978-1-61197-646-5 .
- Planar 3DM is NP-complete. 2. 174–184. Journal of Algorithms. 7. 10.1016/0196-6774(86)90002-7. June 1986. Dyer. M.E. Frieze. A.M.
- Mulzer. Wolfgang. Rote. Günter. 2008-05-15. Minimum-weight triangulation is NP-hard. Journal of the ACM. 55. 2. 11:1–11:29. 10.1145/1346330.1346336. 0004-5411. cs/0601002. 1658062 .
- Moret. B. M. E.. June 1988. Planar NAE3SAT is in P. SIGACT News. 19. 2. 51–54. 10.1145/49097.49099. 17219595 . 0163-5700.
- Web site: Demaine. Erik. 2015. 6. Circuit SAT. Youtube.
- Book: Yato, Takauki . Complexity and Completeness of Finding Another Solution and its Application to Puzzles . 2003 . 10.1.1.103.8380 .
- Holzer. Markus. Klein. Andreas. Kutrib. Martin. On The NP-Completeness of The NURIKABE Pencil Puzzle and Variants Thereof. Proceedings of the 3rd International Conference on Fun with Algorithms. 2004. 16082806. https://web.archive.org/web/20200211223237/https://pdfs.semanticscholar.org/4855/b7160c651c8cc883def72348463fd77cdbed.pdf. dead. 2020-02-11. npcomplete.
- 7 May 2020. Tatamibari is NP-complete. 2003.08331. Adler. Aviv. Bosboom. Jeffrey. Demaine. Erik D.. Demaine. Martin L.. Liu. Quanquan C.. Lynch. Jayson. cs.CC.
- Fertin . Guillaume . Jamshidi . Shahrad . Komusiewicz . Christian . Towards an Algorithmic Guide to Spiral Galaxies . Theoretical Computer Science . June 2015 . 586 . 26–39 . 10.1016/j.tcs.2015.01.051 . 766372 . 18 August 2021. free .
- Book: Demaine. Erik D.. Eisenstat. Sarah. Algorithms and Data Structures . Flattening Fixed-Angle Chains is Strongly NP-Hard . 2011. Dehne. Frank. Iacono. John. Sack. Jörg-Rüdiger. 6844. Lecture Notes in Computer Science. Springer Berlin Heidelberg. 314–325. 10.1007/978-3-642-22300-6_27. 9783642223006.
- Lingas . Andrzej . Pinter . Ron Y. . Rivest . Ronald L. . Shamir . Adi . Minimum edge length partitioning of rectilinear polygons . Proc. 20th Allerton Conf. Commun. Control Comput . 1982 . 53–63 .
- Mulzer. Wolfgang. Rote. Günter. May 2008. Minimum-weight Triangulation is NP-hard. J. ACM. 55. 2. 11:1–11:29. 10.1145/1346330.1346336. 0004-5411. cs/0601002. 1658062 .