lemma
proved
phi_lt_two
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Derivations.MassToLight on GitHub at line 71.
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 -
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 -
phi_lt_two -
ew_scale_structure -
deltaCP_prediction_matches
formal source
68 exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
69 linarith
70
71lemma phi_lt_two : phi < 2 := by
72 unfold phi
73 have : Real.sqrt 5 < 3 := by
74 rw [← Real.sqrt_sq (by norm_num : (0:ℝ)≤3)]
75 apply Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
76 linarith
77
78/-! ## Specific Powers -/
79
80/-- Lower bound for φ. -/
81lemma phi_gt_1_6 : phi > 1.6 := by
82 unfold phi
83 norm_num
84 have : Real.sqrt 5 > 2.2 := by
85 rw [← Real.sqrt_sq (by norm_num : (0:ℝ)≤2.2)]
86 apply Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
87 linarith
88
89/-- Upper bound for φ. -/
90lemma phi_lt_1_7 : phi < 1.7 := by
91 unfold phi
92 norm_num
93 have : Real.sqrt 5 < 2.4 := by
94 rw [← Real.sqrt_sq (by norm_num : (0:ℝ)≤2.4)]
95 apply Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
96 linarith
97
98/-- φ¹⁰ > 100. -/
99theorem phi_10_bounds : phi_power 10 > 100 := by
100 unfold phi_power
101 have h : phi > 1.6 := phi_gt_1_6