A bounded satisfying assignment

Lax429075.FiniteWitness · concepts/Lax429075/FiniteWitness.lean · lax-429075

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Natural Language Statement

    Lemma

    A satisfiable formula has a certificate whose length is at most the length of its binary encoding. Only variables occurring in the formula matter.

    Concept map
    6 concepts
    100%
    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A
    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

    1import Lax429075.Satisfiability
    2
    3/-!
    4---
    5title: A bounded satisfying assignment
    6type: lemma
    7---
    8A satisfiable formula has a certificate whose length is at most the length
    9of its binary encoding. Only variables occurring in the formula matter.
    10-/
    11
    12namespace Lax429075.FiniteWitness
    13
    14open CNF Encoding Satisfiability Lax434930.PolynomialTime
    15
    16axiom bounded (F : Formula) :
    17 Satisfiable F ↔ ∃ y : Word, y.length ≤ (encodeCNF F).length ∧ eval F (assignment y) = true
    18
    19end Lax429075.FiniteWitness
    20
    Show Proof
    Builds on
    Used by

    none

    From Mathlib

    none

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…