Explanation of referenceExponent
(1) In plain English, the declaration introduces a constant real number referenceExponent and fixes its value at 1. This constant acts as the baseline Lyapunov exponent for particle-in-cell (PIC) plasma simulations when the resolution parameter N_ppc (macro-particles per Debye cell) sits at rung 0.
(2) In Recognition Science, the definition supplies the starting point for phi-ladder scaling of numerical Lyapunov exponents. Subsequent definitions multiply this baseline by negative powers of phi, producing the structural prediction that adjacent doublings of resolution reduce numerical heating by a factor of phi squared, matching the phi-based lattice scaling already present in other RS modules.
(3) How to read the formal statement: the Lean code is
def referenceExponent : ℝ := 1
It is a noncomputable definition (inside a noncomputable section) that simply equates the identifier to the literal 1. The attached docstring states it is the “Reference Lyapunov exponent at N_ppc rung 0.” No proof obligations or axioms are attached to the definition itself.
(4) Visible dependencies and certificates in the supplied source: the definition is used directly by lyapunovAt to scale the exponent at higher rungs. The structure PICLyapunovCert and the concrete certificate picLyapunovCert bundle the positivity and ratio theorems that rest on this baseline. The module imports IndisputableMonolith.Constants to obtain phi for the scaling.
(5) What this declaration does not prove: being a pure definition, it asserts no theorems. It does not establish positivity, ratio properties, or any link to empirical PIC data; those are supplied by the separate theorems lyapunovAt_pos, lyapunovAt_succ_ratio, and lyapunovAt_adjacent_ratio. It also does not derive the phi-squared heating reduction from first principles; that remains a structural claim documented in the module header.