lemma
proved
half
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.RecogSpec.Core on GitHub at line 111.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
pleasure_symmetric -
cross_cousin_count -
kinshipGraphCohomologyCert -
styleGap -
AgreesAtHalfRung -
planetaryFormationCert -
two_rung_gap_eq_phi_squared -
cesium_low_en -
IsStokesMildTraj -
half_period_dim_eq -
reduced_configs_2 -
balance_from_conservation -
config_space_complete -
chirality_product_equals_gap_minus_one -
peak_exceeds_single_gap -
peak_fits_double_gap -
tenfold_times_D -
per_turn_at_kappa_one -
fundamentalFrequency -
laws_polynomial_implies_continuous -
jcost_unit_curvature -
fermions_eq_D_times_V -
fermion_rotation_phase_neg_one -
mwcSize_eq -
S_radiation_le_S_BH -
p_steepness_pos -
mass_lt_implies_temp_gt -
C_competing_gt_C_kernel -
C_kernel_band -
C_kernel_pos -
half_rung_budget_doubled -
half_rung_components_band -
ilgSpatialKernelCert -
three_channel_factorization -
normalizedRatio_le_sqrt_siteCount -
ancientDecay_implies_A2_integrable -
integrableOn_Ioi_of_rpow_decay -
rm2u_closed_for_ancient_element -
SobolevH1HalfLineDecay -
DefectSensor
formal source
108lemma of_nat (φ : ℝ) (n : ℕ) : PhiClosed φ (n : ℝ) := by
109 simpa using of_rat φ n
110
111lemma half (φ : ℝ) : PhiClosed φ (1 / (2 : ℝ)) := by
112 have htwo : PhiClosed φ ((2 : ℚ) : ℝ) := of_rat φ 2
113 simpa using inv htwo
114
115end PhiClosed
116
117/-- Universal φ-closed targets RS claims are forced to take. -/
118structure UniversalDimless (φ : ℝ) : Type where
119 alpha0 : ℝ
120 massRatios0 : LeptonMassRatios
121 mixingAngles0 : CkmMixingAngles
122 g2Muon0 : ℝ
123 strongCP0 : Prop
124 eightTick0 : Prop
125 born0 : Prop
126 alpha0_isPhi : PhiClosed φ alpha0
127 massRatios0_isPhi : massRatios0.Forall (PhiClosed φ)
128 mixingAngles0_isPhi : mixingAngles0.Forall (PhiClosed φ)
129 g2Muon0_isPhi : PhiClosed φ g2Muon0
130
131/-- "Bridge B matches universal U" (pure proposition). -/
132def Matches (φ : ℝ) (L : Ledger) (B : Bridge L) (U : UniversalDimless φ) : Prop :=
133 ∃ (P : DimlessPack L B),
134 P.alpha = U.alpha0
135 ∧ P.massRatios = U.massRatios0
136 ∧ P.mixingAngles = U.mixingAngles0
137 ∧ P.g2Muon = U.g2Muon0
138 ∧ P.strongCPNeutral = U.strongCP0
139 ∧ P.eightTickMinimal = U.eightTick0
140 ∧ P.bornRule = U.born0
141