pith. machine review for the scientific record. sign in

Explain the Lean def `referenceExponent` in module `IndisputableMonolith.Astrophysics.PICSimulationLyapunov`. Write for an educated reader who knows science and programming but may not know Lean. Cover: (1) what the declaration says in plain English, (2) why it matters in Recognition Science, (3) how to read the formal statement, (4) visible dependencies or certificates in the supplied source, and (5) what this declaration does not prove. Cite only declarations present in the supplied Recognition source.

Big AI job. Grok 4.3 reads the canon and writes a Lean-grounded derivation; usually 20 seconds to 2 minutes. Your answer will appear below.
confidence: high in recognition cached

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.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • Any empirical validation or falsifier for the phi-squared heating claim (present only as module-level documentation, not as a proved statement).
  • Connection to the broader forcing chain or J-cost uniqueness (those live in other modules outside this file).

recognition modules consulted

The Recognition library is at github.com/jonwashburn/shape-of-logic. The model is restricted to the supplied Lean source and instructed not to invent theorem names. Treat output as a starting point, not a verified proof.