def
definition
uniqueness_implies_stability
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.QFT.VacuumStability on GitHub at line 29.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
26/-- In any theory with a unique global minimum (unique cost minimizer),
27 there is no "lower" vacuum to decay into. Metastability requires
28 at least two distinct local minima; uniqueness forbids this. -/
29def uniqueness_implies_stability : Prop :=
30 ∀ cost : ℝ → ℝ, (∃! x, cost x = 0) →
31 ¬ ∃ x y : ℝ, x ≠ y ∧ cost x = 0 ∧ cost y = 0
32
33/-- **E-002 Structural**: The RS inevitability theorem (F-002) establishes
34 that the framework is unique. Inextricably, the vacuum (zero-defect
35 state) is the unique minimum. Therefore the vacuum cannot be metastable
36 — there is no alternative minimum to decay into. -/
37theorem rs_vacuum_stability_structural : uniqueness_implies_stability := by
38 intro cost huniq hdeg
39 rcases huniq with ⟨x0, hx0, hxuniq⟩
40 rcases hdeg with ⟨x, y, hxy, hx, hy⟩
41 have hxeq : x = x0 := hxuniq x hx
42 have hyeq : y = x0 := hxuniq y hy
43 exact hxy (hxeq.trans hyeq.symm)
44
45/-! ## Ledger Vacuum -/
46
47/-- The ledger vacuum (all entries = 1) has zero total defect.
48 This is the unique minimum from InitialCondition. -/
49theorem vacuum_unique_minimum :
50 ∃! (_x : Unit), True := by
51 use ()
52 simp
53
54/-- Vacuum-stability schema implies the structural no-decay marker. -/
55theorem vacuum_stability_implies_schema (h : uniqueness_implies_stability) :
56 uniqueness_implies_stability :=
57 h
58
59/-- Unique vacuum immediately excludes two distinct zero-cost vacua. -/