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

Lax307052.PolyBounds

Constructing polynomial space bounds

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

    For every polynomial pp with natural coefficients, the positive bound p(n)+n+2p(n)+n+2 is fully space-constructible. Nested input counters append the polynomial terms to a unary output track. A final scan halts at the required work position.

    Lean source view on GitHub

    1import Lax307052.SpaceConstructibility
    2
    3/-!
    4---
    5title: Constructing polynomial space bounds
    6type: lemma
    7---
    8For every polynomial pp with natural coefficients, the positive bound
    9p(n)+n+2p(n)+n+2 is fully space-constructible.
    10Nested input counters append the polynomial terms to a unary output track.
    11A final scan halts at the required work position.
    12-/
    13
    14namespace Lax307052.PolyBounds
    15
    16open SpaceConstructibility
    17
    18axiom polynomial_constructible (p : Polynomial ℕ) :
    19 Constructible (fun n => p.eval n + n + 2)
    20
    21end Lax307052.PolyBounds
    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…