pith. machine review for the scientific record. sign in
def

max_computation_rate

definition
show as:
view math explainer →
module
IndisputableMonolith.Information.ComputationLimitsStructure
domain
Information
line
52 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Information.ComputationLimitsStructure on GitHub at line 52.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  49  norm_num
  50
  51/-- The maximum computation rate (operations per unit time). -/
  52noncomputable def max_computation_rate : ℝ := 1 / fundamental_tick
  53
  54/-- **THEOREM IC-002.2**: The maximum computation rate is positive and finite. -/
  55theorem max_rate_pos : max_computation_rate > 0 := by
  56  unfold max_computation_rate
  57  apply div_pos one_pos tick_pos
  58
  59/-- **THEOREM IC-002.3**: Any system with n parallel operations still obeys the tick bound.
  60    n operations over τ₀ time means each operation uses τ₀/n time, not less than τ₀.
  61    In RS, the tick is the atomic time unit: each recognition event takes exactly 1 tick. -/
  62theorem tick_is_atomic_time_unit :
  63    ∀ (n : ℕ), n > 0 → (n : ℝ) * fundamental_tick ≥ fundamental_tick := by
  64  intro n hn
  65  have : (1 : ℝ) ≤ n := Nat.one_le_cast.mpr hn
  66  have htick_pos : fundamental_tick > 0 := tick_pos
  67  nlinarith
  68
  69/-! ## II. Phi-Irrationality Implies Exact Computation Limits -/
  70
  71/-- **THEOREM IC-002.4**: φ is irrational.
  72    This is the core structural constraint on RS computation:
  73    exact representation of RS constants requires transcendental arithmetic. -/
  74def computation_limits_from_ledger : Prop := Irrational phi
  75
  76theorem computation_limits_structure : computation_limits_from_ledger := phi_irrational
  77
  78/-- **THEOREM IC-002.5**: No rational approximation equals φ exactly. -/
  79theorem phi_not_rational : ∀ q : ℚ, (q : ℝ) ≠ phi := by
  80  intro q heq
  81  apply phi_irrational
  82  exact Set.mem_range.mpr ⟨q, heq⟩