theorem
proved
term proof
restoring_force_negative
show as:
view Lean formalization →
formal statement (Lean)
277theorem restoring_force_negative (σ : ℝ) (hσ : σ < 0) :
278 deriv extractionSystemCost σ < 0 := by
proof body
Term-mode proof.
279 rw [deriv_extraction_cost]
280 have : Real.sinh σ < Real.sinh 0 := Real.sinh_strictMono hσ
281 simp only [Real.sinh_zero] at this; linarith
282
283/-- **Theorem (Universal Restoring Force)**: For any σ ≠ 0, the product
284 σ · C'(σ) > 0, meaning the cost gradient always opposes the extraction.
285 The universe structurally resists imbalance. -/