Lax307052.SpaceConstructibility
Space-constructible bounds
concepts/Lax307052/SpaceConstructibility.lean · lax-307052
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A positive bound is fully space-constructible if a deterministic machine, on each input of length , halts at work position without leaving the first work cells. The input tape is read-only.
Lean source view on GitHub
| 1 | import Lax434930.SpaceBounds |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Space-constructible bounds |
| 6 | type: definition |
| 7 | --- |
| 8 | A positive bound is fully space-constructible if a deterministic |
| 9 | machine, on each input of length , halts at work position |
| 10 | without leaving the first work cells. The input tape is read-only. |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax307052.SpaceConstructibility |
| 14 | |
| 15 | open Lax434930.PolynomialTime Lax434930.SpaceMachines |
| 16 | |
| 17 | def Constructible (s : ℕ → ℕ) : Prop := |
| 18 | ∃ M : Machine, M.Deterministic ∧ ∀ w : Word, |
| 19 | M.HaltsOn w ∧ M.UsesSpace w (s w.length) ∧ |
| 20 | ∃ (t : ℕ) (c : M.Config), M.Run w t c ∧ M.Terminal w c ∧ |
| 21 | c.workHead + 1 = s w.length |
| 22 | |
| 23 | end Lax307052.SpaceConstructibility |
| 24 |
Builds on
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