Encyclopedia Astrophysics Astrophysics Magnetic Reconnection From Jcost Reconnection Regime Count
ARTICLE 2 claims 1 theorem 1 model
Astrophysics Magnetic Reconnection From Jcost Reconnection Regime Count
A machine-checked theorem counts the standard modes of magnetic reconnection, and the count is exactly five.
Counting reconnection regimes
Magnetic reconnection is the process where magnetic field lines in a plasma are disrupted and reconnected, releasing energy in solar flares, coronal mass ejections, and auroras. The standard physics literature recognizes five canonical regimes: slow reconnection, Sweet-Parker, Petschek, Hall-mediated, and turbulent. Each regime describes a different balance of plasma physics that controls how fast the field lines break and join.
The framework's machine-checked library of formal theorems contains a definition, an inductive type named ReconnectionRegime, whose five constructors exactly match those five regimes. A theorem, reconnectionRegimeCount, proves that the number of elements in this type is five. The proof is by computation, a direct check that the five listed constructors are all there are. The library also bundles this count with a trigger threshold certificate into a single structure, MagneticReconnectionCert, which packages the claim that the count is five and that a canonical trigger condition holds.
In Recognition Science, the framework models reconnection as triggered when the magnetic-flux recognition ratio crosses the canonical J(φ) band, with the reconnection rate following a φ-ladder decay. The count of five regimes is then identified with a configuration dimension D = 5. This identification is a modeling choice: the framework chooses to see the five physical regimes as the five elements of its formal type. The theorem itself only proves the count of the type's elements; the mapping from that count to a physical dimension is a definitional step, not a proved result.
What the theorem does not claim is broader. It does not prove that the five regimes are the only possible ones in all of plasma physics, nor that the trigger threshold is physically realized. It does not derive the reconnection rate from first principles. The theorem is a formal statement about a finite type in the library, and the library's own docstring labels the trigger and rate behavior as a prediction, not a proved consequence.
THEOREM reconnectionRegimeCount · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean
theorem reconnectionRegimeCount : Fintype.card ReconnectionRegime = 5 := by decide
MODEL MagneticReconnectionCert · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean
structure MagneticReconnectionCert where
five_regimes : Fintype.card ReconnectionRegime = 5
trigger_threshold : CanonicalCert
What this page does not claim
The theorem does not prove that only five reconnection regimes exist in all of plasma physics. The trigger threshold and φ-ladder decay are predictions, not proved consequences. The mapping from the count five to a configuration dimension D = 5 is a modeling choice, not a theorem.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What physical evidence distinguishes the five canonical reconnection regimes?
- How does the J(φ) trigger threshold relate to measured reconnection onset conditions?
- What would falsify the identification of the five regimes with the formal type's five elements?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM reconnectionRegimeCount · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean
theorem reconnectionRegimeCount : Fintype.card ReconnectionRegime = 5 := by decideA theorem, reconnectionRegimeCount, proves that the number of elements in this type is five. reconnectionRegimeCount · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.leanMODEL MagneticReconnectionCert · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean
structure MagneticReconnectionCert where five_regimes : Fintype.card ReconnectionRegime = 5 trigger_threshold : CanonicalCertThe framework models reconnection as triggered when the magnetic-flux recognition ratio crosses the canonical J(φ) band, with the reconnection rate following a φ-ladder decay. MagneticReconnectionCert · IndisputableMonolith/Astrophysics/MagneticReconnectionFromJCost.lean