Draft — mutable and not usable as a dependency; its citation marks the draft state.

Lax489179.ETH

The Exponential Time Hypothesis (ETH)

concepts/Lax489179/ETH.lean · lax-489179

definition

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.

    Concept map

    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Definition

    The Exponential Time Hypothesis asserts that there exists a constant a>0a>0 such that 3-CNF satisfiability has no deterministic O(2an)O^*(2^{an}) algorithm, where nn counts variables. This is the positive-exponent formulation of ETH. In its negation, for each positive exponent there may be a different algorithm.

    RandomizedRandomized is the stronger version excluding bounded-error randomized algorithms. Both are defined as propositions; neither is asserted as an axiom or claimed as a proved theorem.

    Lean source view on GitHub

    1import Lax489179.SATTime
    2
    3/-!
    4---
    5title: The Exponential Time Hypothesis (ETH)
    6type: definition
    7---
    8The Exponential Time Hypothesis asserts that there exists a constant
    9a>0a>0 such that 3-CNF satisfiability has no deterministic
    10O(2an)O^*(2^{an}) algorithm, where nn counts variables. This is the
    11positive-exponent formulation of ETH. In its negation, for each
    12positive exponent there may be a different algorithm.
    13
    14`Randomized` is the stronger version excluding bounded-error
    15randomized algorithms. Both are defined as propositions; neither is
    16asserted as an axiom or claimed as a proved theorem.
    17-/
    18
    19namespace Lax489179.ETH
    20
    21def Hypothesis (mode : Algorithms.Mode) : Prop :=
    22 ∃ a : ℝ, 0 < a ∧ ¬ SATTime.Solvable mode 3 a
    23
    24def Deterministic : Prop := Hypothesis .deterministic
    25
    26def Randomized : Prop := Hypothesis .randomized
    27
    28end Lax489179.ETH
    29

    From Mathlib

    none

    Community review

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.

    0 comments

    Loading discussion…