Explanation of AlphaProvenanceCert in IndisputableMonolith.Foundation.AlphaDerivationExplicit
(1) What the declaration says in plain English
The declaration AlphaProvenanceCert defines a structure (a named record type) that packages four specific facts as fields: the statement that the experimental CODATA value for the inverse fine-structure constant lies inside the closed interval (137.030, 137.039), the equality asserting that phi equals the golden ratio (1 + sqrt(5))/2, the inequality 1 < phi, and the inequality 0 < phi - 3/2. The accompanying definition alphaProvenanceCert supplies a concrete instance by filling each field with a proof or reference.
(2) Why it matters in Recognition Science
In Recognition Science the fine-structure constant is obtained parameter-free from the geometry of the 3-cube ledger and the unique cost function fixed point. This certificate supplies a formal, machine-checked witness that the derived numerical band contains the measured CODATA value and that the derivation rests on the golden-ratio property of phi. It therefore functions as a provenance link between the structural derivation and empirical data.
(3) How to read the formal statement
Lean structures are records whose fields are propositions or equalities. Each field here is a predicate: codata_in_band is a conjunction of two strict inequalities, phi_is_golden is an equality, and the remaining two fields are inequalities. The noncomputable def constructs a term of the structure type by assigning proofs to the fields (using tactics such as linarith and norm_num). The theorem alphaProvenance_inhabited asserts that the type is inhabited, i.e., at least one such certificate exists.
(4) Visible dependencies or certificates in the supplied source
The structure depends on the interval bounds alphaInverseLower, alphaInverseUpper and codataAlphaInverse. It directly uses the theorem codata_in_band, which proves the interval membership by norm_num. The construction also references the RS formula alphaInverseRS and phi properties drawn from the imported Cost module. The whole block sits inside the explicit alpha-derivation module that assembles the 44-pi seed and exponential correction.
(5) What this declaration does not prove
The certificate only verifies interval membership and elementary properties of phi; it does not derive the 44-pi geometric seed, the uniqueness of the cost function, the forcing of spatial dimension 3, or the higher-order curvature series. Those steps reside in separate modules and are not established by this structure alone.