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

Lax307052.Savitch

Savitch's theorem

concepts/Lax307052/Savitch.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.

    Theorem

    If ss is fully space-constructible and at least logarithmic, every nondeterministic s(n)s(n)-space decider has a deterministic decider using O(s(n)2)O(s(n)^2) space.

    Lean source view on GitHub

    1import Lax307052.SpaceConstructibility
    2
    3/-!
    4---
    5title: Savitch's theorem
    6type: theorem
    7---
    8If ss is fully space-constructible and at least logarithmic, every
    9nondeterministic s(n)s(n)-space decider has a deterministic decider using
    10O(s(n)2)O(s(n)^2) space.
    11-/
    12
    13namespace Lax307052.Savitch
    14
    15open Lax434930.PolynomialTime Lax434930.SpaceBounds SpaceConstructibility
    16
    17axiom savitch (s : ℕ → ℕ) (hs : Constructible s)
    18 (hlog : ∀ n, logSpace n ≤ s n) (A : Language) :
    19 A ∈ NSPACE s → ∃ c : ℕ, 0 < c ∧ A ∈ DSPACE (fun n => c * (s n) ^ 2)
    20
    21end Lax307052.Savitch
    22
    Show Proof

    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…