Lax434930.PolynomialSpace
The complexity class PSPACE
concepts/Lax434930/PolynomialSpace.lean · lax-434930
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A binary language belongs to if one deterministic Turing machine decides membership using at most work cells on inputs of length , for some polynomial . The input tape is read-only and excluded from work space, and the machine always halts.
Lean source view on GitHub
| 1 | import Lax434930.SpaceBounds |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: The complexity class PSPACE |
| 6 | type: definition |
| 7 | --- |
| 8 | A binary language belongs to if one deterministic Turing |
| 9 | machine decides membership using at most work cells on inputs of |
| 10 | length , for some polynomial . The input tape is |
| 11 | read-only and excluded from work space, and the machine always halts. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax434930.PolynomialSpace |
| 15 | |
| 16 | open PolynomialTime SpaceBounds |
| 17 | |
| 18 | /-- Deterministic polynomial work space. -/ |
| 19 | def PSPACE : Set Language := |
| 20 | {A | ∃ p : Polynomial ℕ, A ∈ DSPACE p.eval} |
| 21 | |
| 22 | end Lax434930.PolynomialSpace |
| 23 |
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