Documentation

Complexitylib.Models.TuringMachine.Subroutines.BinarySucc.Internal

Little-endian binary successor — proof internals #

This file proves the pure ripple semantics and the exact full-frame execution of TM.binarySuccTM. The carry proof uses a private head-independent binary content predicate, generalized over the already-zeroed low-order prefix.

Internal proof that ripple carry computes successor on canonical little-endian natural-number bits.

Internal worst-case bound for the exact successor step count.

Exact rewind and carry runs #

Public-theorem internals #

theorem Complexity.TM.binarySuccTM_reachesIn_frame_internal {n : } (idx : Fin n) (value : ) (inp₀ : Tape) (work₀ : Fin nTape) (out₀ : Tape) (hvalue : (work₀ idx).HasBinaryNat value) (hinp : inp₀.read Γ.start) (hother : ∀ (i : Fin n), i idx(work₀ i).read Γ.start) (hout : out₀.read Γ.start) :
∃ (c' : Cfg n (binarySuccTM idx).Q), (binarySuccTM idx).reachesIn (binarySuccTime value) { state := (binarySuccTM idx).qstart, input := inp₀, work := work₀, output := out₀ } c' (binarySuccTM idx).halted c' c'.input = inp₀ (∀ (i : Fin n), i idxc'.work i = work₀ i) (c'.work idx).HasBinaryNat (value + 1) c'.output = out₀
theorem Complexity.TM.binarySuccTM_hoareTime_frame_internal {n : } (idx : Fin n) (value : ) (inp₀ : Tape) (work₀ : Fin nTape) (out₀ : Tape) (hvalue : (work₀ idx).HasBinaryNat value) (hinp : inp₀.read Γ.start) (hother : ∀ (i : Fin n), i idx(work₀ i).read Γ.start) (hout : out₀.read Γ.start) :
(binarySuccTM idx).HoareTime (fun (inp : Tape) (work : Fin nTape) (out : Tape) => inp = inp₀ work = work₀ out = out₀) (fun (inp : Tape) (work : Fin nTape) (out : Tape) => inp = inp₀ (∀ (i : Fin n), i idxwork i = work₀ i) (work idx).HasBinaryNat (value + 1) out = out₀) (binarySuccTime value)
theorem Complexity.TM.binarySuccTM_hoareTimeSpace_frame_internal {n : } (idx : Fin n) (value inputLength initialSpace : ) (inp₀ : Tape) (work₀ : Fin nTape) (out₀ : Tape) (hvalue : (work₀ idx).HasBinaryNat value) (hinp : inp₀.read Γ.start) (hother : ∀ (i : Fin n), i idx(work₀ i).read Γ.start) (hout : out₀.read Γ.start) (hinitial : { state := (binarySuccTM idx).qstart, input := inp₀, work := work₀, output := out₀ }.WithinAuxSpace inputLength initialSpace) :
(binarySuccTM idx).HoareTimeSpace (fun (inp : Tape) (work : Fin nTape) (out : Tape) => inp = inp₀ work = work₀ out = out₀) (fun (inp : Tape) (work : Fin nTape) (out : Tape) => inp = inp₀ (∀ (i : Fin n), i idxwork i = work₀ i) (work idx).HasBinaryNat (value + 1) out = out₀) (binarySuccTime value) inputLength (initialSpace + binarySuccTime value)