Horn-satisfiability

Summary

In formal logic, Horn-satisfiability, or HORNSAT, is the problem of deciding whether a given set of propositional Horn clauses is satisfiable or not. Horn-satisfiability and Horn clauses are named after Alfred Horn.

A Horn clause is a clause with at most one positive literal, called the head of the clause, and any number of negative literals, forming the body of the clause. A Horn formula is a propositional formula formed by conjunction of Horn clauses.

Horn satisfiability is actually one of the "hardest" or "most expressive" problems which is known to be computable in polynomial time, in the sense that it is a P-complete problem.[1]

The Horn satisfiability problem can also be asked for propositional many-valued logics. The algorithms are not usually linear, but some are polynomial; see Hähnle (2001 or 2003) for a survey.[2][3]

Algorithm edit

The problem of Horn satisfiability is solvable in linear time.[4] The problem of deciding the truth of quantified Horn formulae can be also solved in polynomial time.[5] A polynomial-time algorithm for Horn satisfiability is recursive:

  • A first termination condition is a formula in which all the clauses currently existing contain negative literals. In this case, all the variables currently in the clauses can be set to false.
  • A second termination condition is an empty clause. In this case, the formula has no solutions.
  • In the other cases, the formula contains a positive unit clause  , so we do a unit propagation: the literal   is set to true, all the clauses containing   are removed, and all clauses containing   have this literal removed. The result is a new Horn formula, so we reiterate.

This algorithm also allows determining a truth assignment of satisfiable Horn formulae: all variables contained in a unit clause are set to the value satisfying that unit clause; all other literals are set to false. The resulting assignment is the minimal model of the Horn formula, that is, the assignment having a minimal set of variables assigned to true, where comparison is made using set containment.

Using a linear algorithm for unit propagation, the algorithm is linear in the size of the formula.

Examples edit

Trivial case edit

In the Horn formula

a ∨ ¬b ∨ c) ∧
b ∨ ¬c ∨ d) ∧
f ∨ ¬a ∨ b) ∧
e ∨ ¬c ∨ a) ∧
e ∨ f) ∧
d ∨ e) ∧
b ∨ ¬c),

each clause has a negated literal. Therefore, setting each variable to false satisfies all clauses, hence it is a solution.

Solvable case edit

In the Horn formula

a ∨ ¬b ∨ c) ∧
b ∨ ¬c ∨ f) ∧
f ∨ b) ∧
e ∨ ¬c ∨ a) ∧
(f) ∧
d ∨ e) ∧
b ∨ ¬c),

one clause forces f to be true. Setting f to true and simplifying gives

a ∨ ¬b ∨ c) ∧
(b) ∧
e ∨ ¬c ∨ a) ∧
d ∨ e) ∧
b ∨ ¬c).

Now b must be true. Simplification gives

a ∨ c) ∧
e ∨ ¬c ∨ a) ∧
d ∨ e) ∧
c).

Now it is a trivial case, so the remaining variables can all be set to false. Thus, a satisfying assignment is

a = false,
b = true,
c = false,
d = false,
e = false,
f = true.

Unsolvable case edit

In the Horn formula

a ∨ ¬b ∨ c) ∧
b ∨ ¬c ∨ f) ∧
f ∨ b) ∧
e ∨ ¬c ∨ a) ∧
(f) ∧
d ∨ e) ∧
b),

one clause forces f to be true. Subsequent simplification gives

a ∨ ¬b ∨ c) ∧
(b) ∧
e ∨ ¬c ∨ a) ∧
d ∨ e) ∧
b).

Now b has to be true. Simplification gives

a ∨ c) ∧
e ∨ ¬c ∨ a) ∧
d ∨ e) ∧
().

We obtained an empty clause, hence the formula is unsatisfiable.

Generalization edit

A generalization of the class of Horn formulae is that of renamable-Horn formulae, which is the set of formulae that can be placed in Horn form by replacing some variables with their respective negation. Checking the existence of such a replacement can be done in linear time; therefore, the satisfiability of such formulae is in P as it can be solved by first performing this replacement and then checking the satisfiability of the resulting Horn formula.[6][7][8][9] Horn satisfiability and renamable Horn satisfiability provide one of two important subclasses of satisfiability that are solvable in polynomial time; the other such subclass is 2-satisfiability.

Dual-Horn SAT edit

A dual variant of Horn SAT is Dual-Horn SAT, in which each clause has at most one negative literal. Negating all variables transforms an instance of Dual-Horn SAT into Horn SAT. It was proven in 1951 by Horn that Dual-Horn SAT is in P.[citation needed]

See also edit

References edit

  1. ^ Stephen Cook; Phuong Nguyen (2010). Logical foundations of proof complexity. Cambridge University Press. p. 224. ISBN 978-0-521-51729-4. (Author's 2008 draft version, see p.213f)
  2. ^ Reiner Hähnle (2001). "Advanced many-valued logics". In Dov M. Gabbay, Franz Günthner (ed.). Handbook of philosophical logic. Vol. 2 (2nd ed.). Springer. p. 373. ISBN 978-0-7923-7126-7.
  3. ^ Reiner Hähnle (2003). "Complexity of Many-valued Logics". In Melvin Fitting, Ewa Orłowska (ed.). Beyond two: theory and applications of multiple-valued logic. Springer. ISBN 978-3-7908-1541-2.
  4. ^ Dowling, William F.; Gallier, Jean H. (1984), "Linear-time algorithms for testing the satisfiability of propositional Horn formulae", Journal of Logic Programming, 1 (3): 267–284, doi:10.1016/0743-1066(84)90014-1, MR 0770156
  5. ^ Buning, H.K.; Karpinski, Marek; Flogel, A. (1995). "Resolution for Quantified Boolean Formulas". Information and Computation. 117 (1). Elsevier: 12–18. doi:10.1006/inco.1995.1025.
  6. ^ Lewis, Harry R. (1978). "Renaming a set of clauses as a Horn set". Journal of the ACM. 25 (1): 134–135. doi:10.1145/322047.322059. MR 0468315..
  7. ^ Aspvall, Bengt (1980). "Recognizing disguised NR(1) instances of the satisfiability problem". Journal of Algorithms. 1 (1): 97–103. doi:10.1016/0196-6774(80)90007-3. MR 0578079.
  8. ^ Hébrard, Jean-Jacques (1994). "A linear algorithm for renaming a set of clauses as a Horn set". Theoretical Computer Science. 124 (2): 343–350. doi:10.1016/0304-3975(94)90015-9. MR 1260003..
  9. ^ Chandru, Vijaya; Collette R. Coullard; Peter L. Hammer; Miguel Montañez; Xiaorong Sun (2005). "On renamable Horn and generalized Horn functions". Annals of Mathematics and Artificial Intelligence. 1 (1–4): 33–47. doi:10.1007/BF01531069.

Further reading edit

  • Grädel, Erich; Kolaitis, Phokion G.; Libkin, Leonid; Maarten, Marx; Spencer, Joel; Vardi, Moshe Y.; Venema, Yde; Weinstein, Scott (2007). Finite model theory and its applications. Texts in Theoretical Computer Science. An EATCS Series. Berlin: Springer-Verlag. ISBN 978-3-540-00428-8. Zbl 1133.03001.