Well-formed sequential composition machine with tape bounds
DisprovedCookLevin.seqCompose_machine_wfsequential-compositiontape-boundsturing-machinewell-formedness
Given two multi-tape Turing machines and with tapes and alphabet sizes , there exists a composite multi-tape Turing machine whose tape count is at least and whose alphabet size is at least , satisfying and the two-phase sequential execution specification:
- If decides within steps, halts with within steps.
- If decides within steps and decides within steps, halts with within steps.
This makes explicit the structural bounds on tape count and alphabet size for the composed machine.
Preamble
import Definitions.Def_CookLevin_Cost
Formal statement
namespace CookLevin
theorem seqCompose_machine_wf
(M1 M2 : Machine) (k1 k2 G1 G2 : Nat) :
∃ (M : Machine) (k G : Nat),
TuringMachine k G M ∧
k ≥ max k1 k2 ∧
G ≥ max G1 G2 ∧
(∀ (xs ws : List Symbol) (t1 : Nat),
DecidesIn M1 k1 xs ws t1 false →
DecidesIn M k xs ws t1 false) ∧
(∀ (xs ws : List Symbol) (t1 t2 : Nat) (b2 : Bool),
DecidesIn M1 k1 xs ws t1 true →
DecidesIn M2 k2 xs ws t2 b2 →
DecidesIn M k xs ws (t1 + t2) b2) := by sorry
end CookLevinSource