A Polynomial Time Algorithm for 3SAT
Robert Quigley
TL;DR
The paper proposes a polynomial-time algorithm for 3SAT based on two key techniques: clause Expansion (append any new term) and Implication (two clauses sharing a terminal of opposite polarity imply a shorter clause). By focusing on clauses of length at most 3 and systematically deriving implications, expansions, and reductions, the method aims to generate contradicting 1-terminal clauses if and only if the instance is unsatisfiable. The argument rests on a chain of Lemmas that connect long-implied clauses to shorter ones without enumerating clauses of length ≥4, ultimately reducing to a pair of contradicting 1-terminal clauses. If valid, this would imply $P = NP$, since 3SAT is NP-complete, causing all problems in NP to be solvable in polynomial time. However, the completeness and correctness of the construction hinge on intricate derivations and assumptions about derivability that are controversial in established complexity theory.
Abstract
It is shown that any two clauses in an instance of 3SAT sharing the same terminal which is positive in one clause and negated in the other can imply a new clause composed of the remaining terms from both clauses. Clauses can also imply other clauses as long as all the terms in the implying clauses exist in the implied clause. It is shown an instance of 3SAT is unsatisfiable if and only if it can derive contradicting 1-terminal clauses in exponential time. It is further shown that these contradicting clauses can be implied with the aforementioned techniques without processing clauses of length 4 or greater, reducing the computation to polynomial time. Therefore there is a polynomial time algorithm that will produce contradicting 1-terminal clauses if and only if the instance of 3SAT is unsatisfiable. Since such an algorithm exists and 3SAT is NP-Complete, P = NP.
