pith. machine review for the scientific record. sign in

Explain the Lean def `lyapunovAt` 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. The page will refresh to your answer when it’s ready.
confidence: high in recognition cached

1. Plain English Translation

The declaration lyapunovAt defines a mathematical sequence representing the numerical heating rate (Lyapunov exponent) of a plasma simulation at different discrete resolution levels. For a given resolution "rung" $k$, the exponent is calculated as the golden ratio $\phi$ raised to the power of $-k$.

2. Why it Matters in Recognition Science

Recognition Science posits that fundamental physical and informational structures scale geometrically along a $\phi$-ladder. This module applies that principle as an empirical HYPOTHESIS to particle-in-cell (PIC) simulations. It predicts that the artificial chaos (numerical heating) introduced by discrete macro-particles falls off at canonical $\phi$-steps as resolution (number of macro-particles per Debye cell, $N_{ppc}$) increases. The docstring notes empirical benchmarks suggesting that a doubling of $N_{ppc}$ improves the exponent by $\phi^2$, structurally tying numerical plasma kinetics to the same canonical ratios found elsewhere in the framework.

3. Reading the Formal Statement

def lyapunovAt (k : ℕ) : ℝ := referenceExponent * phi ^ (-(k : ℤ))
  • (k : ℕ): The function takes a natural number $k$, representing the resolution rung.
  • : ℝ: It returns a real number.
  • The value is calculated by taking referenceExponent (which is defined as 1) and multiplying it by $\phi^{-k}$.

4. Visible Dependencies and Certificates

In the supplied module, this definition serves as the basis for a formal structural certificate, picLyapunovCert, which rigorously bundles three proved THEOREMS:

5. What this Declaration Does Not Prove

The Lean code MODELS the theoretical sequence and proves its internal algebraic consistency. It does not mathematically prove that an actual computer code executing a PIC simulation will generate this heating rate. The mapping between the abstract lyapunovAt sequence and actual computational physics output is an empirical PREDICTION, requiring physical simulation data (such as the cited Dawson or Birdsall-Langdon benchmarks) for falsification or confirmation.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • Empirical measurements of numerical heating in actual PIC codes (e.g., Dawson 1983 or Birdsall-Langdon 2004).
  • Formal proof that finite-precision computer arithmetic yields this sequence (this is an empirical prediction, not a mathematical theorem).

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.