feat(MultiTapeTM): Some lemmas about Turing machine tapes - #768
Merged
Conversation
crei
commented
Aug 1, 2026
| If the Turing machine halts, it will stay at the halting configuration. -/ | ||
| def configs (cfg : Cfg k Symbol State input) (t : ℕ) : Cfg k Symbol State input := tm.step^[t] cfg | ||
|
|
||
| /-- Any number of steps run from a halting configuration results in the same configuration. -/ |
Contributor
Author
There was a problem hiding this comment.
Initially, I thought proofs should always first turn configs into step^[n] and then use the Function.iterate_* lemmas, but I think it's better to not unfold configs and add these lemmas here instead.
SamuelSchlesinger
approved these changes
Aug 2, 2026
SamuelSchlesinger
left a comment
Collaborator
There was a problem hiding this comment.
This looks good to me. If you want to improve before merging, add docs to the lemmata that currently don't have doctext. Otherwise its fine to do as a followup.
Collaborator
|
@fmontesi please merge when you get the chance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some useful lemmas about how the tapes are modified during the execution of Turing machines, some lemmas about halting behaviour and some about space usage (partly just moved).
This has been split out from #767