How statement and proof provenance work
The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.
- Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
- AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
- AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.
These labels describe origin, not correctness: citations and verification chips remain separate evidence.
3SAT is NP-complete
Statement
3SAT, with clauses of size at most three, is NP-complete. Arbitrary CNF has a polynomial-time equisatisfiable conversion to this form, including empty clauses.
Facts & Assumptions
Given: The fixed encoding of formulas and literal lists.
A CNF is a conjunction of literal-list clauses; empty clauses are false and empty conjunctions true (Boolean formulas, CNF, and satisfiability).
SAT is NP-complete, and its hardness reductions output CNF formulas (Cook-Levin: SAT is NP-complete).
Proof
For a clause with , use distinct fresh variables and replace it by the clauses , then for , then . All variables used for different clauses are distinct. Leave clauses of lengths zero, one, two and three unchanged.
If the original clause is true, set exactly when are all false. The first clause holds by this definition. In a middle clause, either , or the first literals are false and then either or . In the last clause, either or the first literals are false, forcing one of the last two true. This explicitly extends every satisfying assignment.
If all original literals were false, the first new clause would force , the middle clauses successively force every next , and the last would be false. Therefore a satisfying extension implies the original clause is true. For there are no middle clauses and the same first/last argument applies. Separate fresh variables let the extensions be performed for all clauses simultaneously.
The replacement has clauses for a long clause. Summing lengths gives linear literal count; the encoded indices and a finite scan for unused indices give polynomial bit length and construction time. Malformed CNF strings map to the fixed CNF containing an empty clause. To reduce an arbitrary NP language, first use F2's CNF output and then this map; composition of two polynomial running-time bounds is polynomial, and the two membership equivalences compose. Membership in NP guesses one bit per distinct variable and evaluates clauses. Empty CNF remains satisfiable, and any retained empty clause makes both formulas unsatisfiable. Hence 3SAT is NP-complete.
Depends on
Used by
Nothing in the library uses this result yet.
Dependency tree · two levels
5 results within two dependency steps of this one, each drawn at its shortest distance from it. An arrow runs from a result to what uses it, so the chart reads left to right and ends at this result, which carries a heavier outline. Every node is a link to that result. Click elsewhere on the chart to enlarge it.
Sources
- Arora and Barak, Computational Complexity: A Modern Approach, §2.3.5 (standard reference, not scraped)
- Kabanets, CMPT 710 Lecture 8, Theorem 3 (standard reference, not scraped)