theorem
proved
phi_lt_two
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Mathematics.Euler on GitHub at line 168.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
ml_from_phi_tier_structure -
ml_matches_stellar_observations -
ml_geometric_bounds -
high_tc_superconductivity_structure -
phi_lt_two -
vev_phi_window -
delta_w0_max_lt_one -
Jcost_phi_bounds -
phi_lt_two -
log_phi_lt_one -
log_phi_lt_sevenTenths -
spacing_below_two -
phi_lt_two -
phi_perturbation_bounded -
rung_slope_lt_log_two -
rungPhaseDelay_band -
C_kernel_pos -
Omega_0_pos -
phi_bit_more_efficient -
phi_lt_two -
e_gt_phi -
ew_scale_structure -
deltaCP_prediction_matches
formal source
165 linarith
166
167/-- φ < 2 (from phi < 1.62). -/
168theorem phi_lt_two : phi < 2 := by
169 linarith [Constants.phi_lt_onePointSixTwo]
170
171/-- e > φ: Euler's number exceeds the golden ratio. -/
172theorem e_gt_phi : phi < Real.exp 1 := by
173 have h1 : phi < 2 := phi_lt_two
174 have h2 : Real.exp 1 > 2 := e_gt_two
175 linarith
176
177/-- e ≠ φ: e and φ are distinct constants. -/
178theorem e_ne_phi : Real.exp 1 ≠ phi := ne_of_gt e_gt_phi
179
180/-- e > 1: e exceeds 1. -/
181theorem e_gt_one : Real.exp 1 > 1 := by
182 linarith [e_gt_two]
183
184/-! ## φ and e: A Deeper Connection? -/
185
186/-- Is there a deep connection between φ and e?
187
188 Both are transcendental.
189 Both appear in growth processes.
190
191 φ: Discrete (Fibonacci recursion)
192 e: Continuous (differential equations)
193
194 They represent two sides of growth:
195 - φ: Optimal discrete packing/ratios
196 - e: Optimal continuous rates -/
197def phiVsE : List String := [
198 "φ: Discrete recursion, packing, ratios",