def
definition
c_RS
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Cosmology.EtaBPrefactorDerivation on GitHub at line 106.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
correctionFactor -
c_RS_expanded -
c_RS_lower -
c_RS_lt_one -
c_RS_pos -
c_RS_upper -
eta_B_corrected -
eta_B_corrected_lower -
eta_B_corrected_upper -
EtaBPrefactorCert -
phi_zpow_neg44_upper -
BlackHoleEntropyFromLedgerCert -
black_hole_entropy_one_statement -
c_RS -
c_RS_neg -
c_RS_neq_LQG -
c_RS_neq_string -
S_lead_pos -
S_RS -
blackHoleHorizonStatesCert -
BlackHoleHorizonStatesCert -
black_hole_horizon_states_one_statement -
c_RS_band -
log_phi_pos -
c_grav_eq_c_RS -
c_RS -
propagation_implies_equal_speed -
speed_ratio_unity
formal source
103def correctionFactor : ℝ := 1 - phi ^ (-8 : ℤ)
104
105/-- The two-sided 8-tick washout prefactor: `c_RS = (1 − φ^(−8))^2`. -/
106def c_RS : ℝ := correctionFactor ^ 2
107
108theorem c_RS_expanded : c_RS = (1 - phi ^ (-8 : ℤ)) ^ 2 := by
109 unfold c_RS correctionFactor
110
111theorem one_minus_phi_neg8_lower : (1 - phi ^ (-8 : ℤ)) > 0.978 := by
112 have h := phi_zpow_neg8_upper
113 linarith
114
115theorem one_minus_phi_neg8_upper : (1 - phi ^ (-8 : ℤ)) < 0.979 := by
116 have h := phi_zpow_neg8_lower
117 linarith
118
119theorem c_RS_pos : 0 < c_RS := by
120 unfold c_RS correctionFactor
121 have h := one_minus_phi_neg8_lower
122 positivity
123
124theorem c_RS_lt_one : c_RS < 1 := by
125 rw [c_RS_expanded]
126 have hl : (1 - phi ^ (-8 : ℤ)) > 0.978 := one_minus_phi_neg8_lower
127 have hu : (1 - phi ^ (-8 : ℤ)) < 0.979 := one_minus_phi_neg8_upper
128 nlinarith [hl, hu]
129
130/-- `c_RS > 0.956`. -/
131theorem c_RS_lower : c_RS > 0.956 := by
132 rw [c_RS_expanded]
133 have hl : (1 - phi ^ (-8 : ℤ)) > 0.978 := one_minus_phi_neg8_lower
134 have hu : (1 - phi ^ (-8 : ℤ)) < 0.979 := one_minus_phi_neg8_upper
135 nlinarith [hl, hu]
136