Lax307052.ConfigCount
Number of bounded configurations
concepts/Lax307052/ConfigCount.lean · lax-307052
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Lemma
For input length and work bound , a machine with state set and work alphabet has bounded configurations.
Lean source view on GitHub
| 1 | import Lax307052.BoundedConfigurations |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Number of bounded configurations |
| 6 | type: lemma |
| 7 | --- |
| 8 | For input length and work bound , a machine with state set |
| 9 | and work alphabet has bounded configurations. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax307052.ConfigCount |
| 13 | |
| 14 | open Lax434930.SpaceMachines BoundedConfigurations |
| 15 | |
| 16 | axiom count (M : Machine) (n s : ℕ) : |
| 17 | Fintype.card (Config M n s) = |
| 18 | Fintype.card M.Q * (n + 2) * s * Fintype.card M.Γ ^ s |
| 19 | |
| 20 | end Lax307052.ConfigCount |
| 21 |
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