theorem
proved
boundaryArea_monotone
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Unification.ConsciousnessBandwidth on GitHub at line 90.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
87 unfold boundaryArea
88 exact mul_pos (mul_pos (by linarith) Real.pi_pos) (sq_pos_of_pos hL)
89
90theorem boundaryArea_monotone {L₁ L₂ : ℝ} (h₁ : 0 < L₁) (h : L₁ ≤ L₂) :
91 boundaryArea L₁ ≤ boundaryArea L₂ := by
92 unfold boundaryArea
93 apply mul_le_mul_of_nonneg_left
94 · exact sq_le_sq' (by linarith) h
95 · exact mul_nonneg (by linarith) (le_of_lt Real.pi_pos)
96
97/-! ## §3. Holographic Maintenance Budget -/
98
99/-- Maximum recognition events available over the barrier period
100 for a boundary of extent L:
101
102 N_budget(L) = boundaryArea(L) / (4ℓ_P² · k_R) -/
103noncomputable def maintenanceBudget (L : ℝ) : ℝ :=
104 boundaryArea L / (4 * planckArea * k_R)
105
106theorem maintenanceBudget_pos {L : ℝ} (hL : 0 < L) : 0 < maintenanceBudget L := by
107 unfold maintenanceBudget
108 apply div_pos (boundaryArea_pos hL)
109 apply mul_pos
110 apply mul_pos
111 · linarith [planckArea_pos]
112 · exact planckArea_pos
113 · exact k_R_pos
114
115/-! ## §4. Maintenance Demand -/
116
117/-- The recognition cost of maintaining a boundary of extent L over the
118 consciousness barrier period.
119
120 Uses the canonical J-cost: BoundaryCost = τ · J(L/λ_rec).