theorem
proved
tactic proof
criticalBand_not_overloaded
show as:
view Lean formalization →
formal statement (Lean)
109theorem criticalBand_not_overloaded
110 {rhoMin area demand : ℝ} (hArea : 0 < area)
111 (h : InCriticalBand rhoMin area demand) :
112 ¬ IsOverloaded area demand := by
proof body
Tactic-mode proof.
113 unfold IsOverloaded
114 have hSub : demand < bandwidth area := by
115 simpa [IsSubcritical] using criticalBand_implies_subcritical hArea h
116 exact not_le_of_gt hSub
117
118/-! ## §3. Semantic free energy and condensation gate -/
119
120/-- Query-level semantic free energy. -/