Mortality reduces to positive first-order definability
Lax503819.Reduction · concepts/Lax503819/Reduction.lean · lax-503819
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
There is a computable map from deterministic Turing-machine tables to finite automata on powerset alphabets, such that the output language is FO⁺-definable if and only if the input machine is mortal. This is the reduction established in Section 6 of Kuperberg (2023), including the powerset extension in Remark 6.25.
The finite alphabets may depend on the input machine. The quantifier order requires a single computable transformation, not a separate existence result for each machine. The configuration alphabet, superposition construction and integer-game argument will be implemented in the proof package; they are not assumed in this statement.
Concept map
Lean source view on GitHub
| 1 | import Lax503819.Automata |
| 2 | import Lax503819.Mortality |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Mortality reduces to positive first-order definability |
| 7 | type: theorem |
| 8 | --- |
| 9 | There is a computable map from deterministic Turing-machine tables to finite |
| 10 | automata on powerset alphabets, such that the output language is FO⁺-definable |
| 11 | if and only if the input machine is mortal. This is the reduction established |
| 12 | in Section 6 of Kuperberg (2023), including the powerset extension in Remark 6.25. |
| 13 | |
| 14 | The finite alphabets may depend on the input machine. The quantifier order |
| 15 | requires a single computable transformation, not a separate existence result |
| 16 | for each machine. The configuration alphabet, superposition construction and |
| 17 | integer-game argument will be implemented in the proof package; they are not |
| 18 | assumed in this statement. |
| 19 | -/ |
| 20 | |
| 21 | namespace Lax503819.Reduction |
| 22 | |
| 23 | open Lax503819.Automata Lax503819.Mortality |
| 24 | |
| 25 | axiom mortality_reduces : |
| 26 | ∃ f : Machine → Input, Computable f ∧ |
| 27 | ∀ m, Mortal m ↔ PositiveDefinable (f m) |
| 28 | |
| 29 | end Lax503819.Reduction |
| 30 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments