Correctness of the SAT verifier
Lax429075.VerifierCorrect · concepts/Lax429075/VerifierCorrect.lean · lax-429075
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Lemma
Membership in SAT is equivalent to the existence of an accepted certificate of length at most the input length.
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
In the paper
- page 2 of this submission's paper
Lean source view on GitHub
| 1 | import Lax429075.Satisfiability |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Correctness of the SAT verifier |
| 6 | type: lemma |
| 7 | --- |
| 8 | Membership in SAT is equivalent to the existence of an accepted certificate |
| 9 | of length at most the input length. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax429075.VerifierCorrect |
| 13 | |
| 14 | open Satisfiability Lax434930.PolynomialTime Lax434930.Certificates |
| 15 | |
| 16 | axiom correct (w : Word) : |
| 17 | w ∈ SAT ↔ ∃ y : Word, y.length ≤ w.length ∧ pair w y ∈ Verifier |
| 18 | |
| 19 | end Lax429075.VerifierCorrect |
| 20 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments