theorem
proved
alpha_bounds
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Unification.ConstantsPredictionsProved on GitHub at line 94.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
radiative_cubic_coeff_forced -
step_e_mu_quadratic_scale_forced -
step_mu_tau_denominator_forced -
step_mu_tau_kn_forced_under_dim_bound -
step_mu_tau_kn_forced_under_dim_bound_no_hk -
step_mu_tau_linear_coeff_forced -
step_mu_tau_numerator_offset_forced -
step_mu_tau_scale_forced -
step_mu_tau_scale_forced_no_hc_pos -
alpha_bounds -
alpha_cube_bounds -
alpha_sq_bounds -
step_mu_tau_bounds -
step_mu_tau_bounds_v2 -
step_mu_tau_bounds
formal source
91 nlinarith
92
93/-- **BOUNDS**: 0 < α < 0.1 -/
94theorem alpha_bounds : alpha > 0 ∧ alpha < (0.1 : ℝ) := by
95 constructor
96 · exact alpha_positive
97 · exact alpha_lt_0_1
98
99/-! ## Section C-005: Speed of Light c -/
100
101/-- **CALCULATED**: c = 1 (RS-native units). -/
102theorem c_eq_one : c = 1 := by rfl
103
104/-- **CALCULATED**: c > 0. -/
105theorem c_positive : c > 0 := by
106 rw [c_eq_one]
107 norm_num
108
109/-! ## Section C-006: Boltzmann Analog k_R -/
110
111/-- **CALCULATED**: RS-native Boltzmann constant k_R = ln(φ). -/
112theorem boltzmann_analog_formula : ∃ (k_R : ℝ), k_R = Real.log phi := by
113 use Real.log phi
114
115/-- **CALCULATED**: k_R > 0 since φ > 1. -/
116theorem boltzmann_analog_positive : Real.log phi > 0 := by
117 apply Real.log_pos
118 exact one_lt_phi
119
120/-- **CALCULATED**: k_R < 0.5 since φ < 1.62 < e^0.5 ≈ 1.6487. -/
121theorem boltzmann_analog_lt_half : Real.log phi < (0.5 : ℝ) := by
122 -- We'll use a simpler approach: show ln(φ) < 0.5 from φ < 1.62
123 -- This is true since 1.62 < e^0.5 ≈ 1.6487
124 have h1 : phi < (1.62 : ℝ) := phi_lt_onePointSixTwo