def
definition
PhiLadder
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Foundation.PhiEmergence on GitHub at line 83.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
H_StableIffPhiLadder -
IsStablePosition -
phi_ladder_div_closed -
phi_ladder_mul_closed -
mass_gap_is_spatial_minimum -
SpacetimeEmergenceCert -
bond_cost_nonneg -
bond_le_total -
contractible_bond_zero_cost -
gap_rigidity -
gap_separates_sectors -
gap_topologically_protected -
Jcost_phiLadder_symm -
Jcost_phiLadder_zero -
massGap_falsifier -
noncontractible_bond_gapped -
PhiLadder -
phiLadder_ge_phi -
phiLadder_gt_one -
phiLadder_pos -
spectral_gap -
spectral_gap_pos_rung -
spectral_gap_strict -
totalGaugeCost -
yang_mills_mass_gap_complete -
YMGapCertificate
formal source
80/-! ## The φ-Ladder -/
81
82/-- The φ-ladder: all stable positions are φ^n for integer n. -/
83def PhiLadder : Set ℝ := { x | ∃ n : ℤ, x = φ^n }
84
85/-- φ^n is always positive for any integer n -/
86theorem phi_pow_pos (n : ℤ) : φ^n > 0 := by
87 exact zpow_pos phi_pos n
88
89/-- Adjacent rungs of the ladder have ratio φ -/
90theorem phi_ladder_ratio (n : ℤ) : φ^(n+1) / φ^n = φ := by
91 have h : φ ≠ 0 := ne_of_gt phi_pos
92 have hn : φ^n ≠ 0 := zpow_ne_zero n h
93 rw [zpow_add_one₀ h]
94 field_simp [hn]
95
96/-- The ladder is closed under multiplication by φ -/
97theorem phi_ladder_mul_closed (x : ℝ) (hx : x ∈ PhiLadder) :
98 x * φ ∈ PhiLadder := by
99 obtain ⟨n, rfl⟩ := hx
100 use n + 1
101 rw [zpow_add_one₀ (ne_of_gt phi_pos)]
102
103/-- The ladder is closed under division by φ -/
104theorem phi_ladder_div_closed (x : ℝ) (hx : x ∈ PhiLadder) :
105 x / φ ∈ PhiLadder := by
106 obtain ⟨n, rfl⟩ := hx
107 use n - 1
108 rw [zpow_sub_one₀ (ne_of_gt phi_pos)]
109 rw [div_eq_mul_inv]
110
111/-! ## J-cost at φ-Ladder Positions -/
112
113/-- J-cost formula applied to φ -/