structure
definition
def or abbrev
Resolution
show as:
view Lean formalization →
formal statement (Lean)
206structure Resolution where
207 /-- Status: RESOLVED by layer separation -/
208 status : String := "RESOLVED_BY_LAYER_SEPARATION"
proof body
Definition body.
209 /-- Resolution method: explicit layer assignment, not equivalence -/
210 method : String := "Layer separation (Core vs Hypothesis)"
211 /-- Core convention: integer rungs -/
212 core_convention : Convention := .IntegerRung
213 /-- Hypothesis convention: quarter-ladder -/
214 hypothesis_convention : Convention := .QuarterLadder
215 /-- Whether equivalence was proved: NO (and not required) -/
216 equivalence_proved : Bool := false
217 /-- Reason equivalence not needed -/
218 equivalence_note : String := "Conventions serve different purposes; equivalence not expected"
219 /-- Summary for reviewers -/
220 summary : String :=
221 "Gap 6 resolved: Integer rungs are CORE (parameter-free); " ++
222 "Quarter-ladder is HYPOTHESIS (phenomenological). " ++
223 "No equivalence claimed. Claims depending on quarter-ladder " ++
224 "are explicitly marked as hypothesis-layer."
225
226/-- The official resolution -/
used by (40)
-
ThreeActNarrative -
m_e_pos -
alphaLock_numerical_bounds -
G_rs_pos -
mass_ratio_structural -
alpha_over_pi_small -
cosmological_constant_resolution -
omega_lambda_lt_one -
HubbleParameterILG -
ratio_more_robust_than_absolute -
w_mass_from_z -
w_mass_sigma_comparison -
sigmaCost_ordering -
correction_within_bounds -
Observer -
projection_lossy -
unique_minimizer_principle -
mass_ratio_geometric -
nonunity_positive_entropy -
face_pairs_at_D3 -
three_colors_from_D3 -
kappa_ne_zero -
potential_negative -
tau_muon_ratio -
r_tau -
birch_tate_implies_bsd -
birch_tate_rs_prediction -
Resolution -
curvature_computable -
bayesian_vindicated