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

Lax307052.SearchMachine

Space bound for the search machine

concepts/Lax307052/SearchMachine.lean · lax-307052

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.

    Concept map

    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Evidence

    Each proof establishes this claim relative to its assumptions.

    Lemma

    The deterministic machine constructs the space bound, encodes configurations, and evaluates recursive reachability using parallel stacks. Its work space is quadratic in the original machine's space bound.

    Lean source view on GitHub

    1import Lax307052.ConfigurationGraph
    2import Lax307052.SpaceConstructibility
    3
    4/-!
    5---
    6title: Space bound for the search machine
    7type: lemma
    8---
    9The deterministic machine constructs the space bound, encodes configurations,
    10and evaluates recursive reachability using parallel stacks. Its work space
    11is quadratic in the original machine's space bound.
    12-/
    13
    14namespace Lax307052.SearchMachine
    15
    16open Lax434930.PolynomialTime Lax434930.SpaceMachines Lax434930.SpaceBounds
    17open ConfigurationGraph SpaceConstructibility
    18
    19axiom implement (M : Machine) (s : ℕ → ℕ) (hs : Constructible s)
    20 (hlog : ∀ n, logSpace n ≤ s n)
    21 (hM : ∀ w, M.UsesSpace w (s w.length)) :
    22 ∃ (c : ℕ) (D : Machine), 0 < c ∧ D.Deterministic
    23 (∀ w, D.HaltsOn w ∧ (D.Accepts w ↔ SearchAccepts M w (s w.length))) ∧
    24 ∀ w, D.UsesSpace w (c * (s w.length) ^ 2)
    25
    26end Lax307052.SearchMachine
    27
    Show Proof

    Used by

    none

    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…