theorem
proved
has_computation_limits_structure
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Information.ChurchTuringPhysicsStructure on GitHub at line 93.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
90/-! ## III. RS Dynamics are Church-Turing Computable -/
91
92/-- Carrier of computation_limits_from_ledger through the chain. -/
93theorem has_computation_limits_structure : computation_limits_from_ledger :=
94 computation_limits_structure
95
96/-- The Church-Turing physics property: physical processes are computable. -/
97def church_turing_physics_from_ledger : Prop := computation_limits_from_ledger
98
99/-- **THEOREM IC-003.5**: The Church-Turing physics thesis holds.
100 Physical processes in RS are computable because:
101 - The phase space is finite (8 phases)
102 - Transitions are computable functions on finite types
103 - The tick rate is bounded by 1/τ₀
104 This is formalized through the irrationality constraint: even though φ is
105 irrational, the DYNAMICS (which phase sequences occur) are computable. -/
106theorem church_turing_physics_structure : church_turing_physics_from_ledger :=
107 has_computation_limits_structure
108
109/-- **THEOREM IC-003.6**: Church-Turing physics implies computation limits hold. -/
110theorem church_turing_implies_limits (h : church_turing_physics_from_ledger) :
111 computation_limits_from_ledger := h
112
113/-! ## IV. No Hypercomputation in RS -/
114
115/-- **THEOREM IC-003.7**: The 8-tick phase space is bounded.
116 No RS process can access more than 8 phases in one tick.
117 This prevents hypercomputation (which would require unbounded resources per step). -/
118theorem phase_space_bounded : numPhases ≤ 8 := by
119 unfold numPhases; norm_num
120
121/-- **THEOREM IC-003.8**: The tick rate is bounded below by τ₀.
122 No computation can happen "between ticks" — τ₀ is the minimum time unit.
123 This means the universe cannot process information infinitely fast. -/