pith. sign in
structure

DoublyMagicAttractor

definition
show as:
module
IndisputableMonolith.Engineering.FissionTransmutationStructure
domain
Engineering
line
145 · github
papers citing
none yet

plain-language theorem explainer

A doubly-magic attractor is a nuclear configuration whose J-cost is at most 1, marking it as a local minimum near the phi-ladder point x=1. Nuclear transmutation modelers cite the structure to designate stable endpoints for cost-reducing fission product sequences. The declaration is a direct structure wrapper around NuclearConfig that records the inequality nuclearCost config ≤ 1.

Claim. A doubly-magic attractor is a nuclear configuration $c$ (with positive real stability ratio $x$) such that the J-cost satisfies $J(c) ≤ 1$, where $J$ quantifies deviation from the ideal stable state at $x=1$.

background

In the EN-006 module on fission product transmutation, Recognition Science assigns every nuclear configuration a J-cost via nuclearCost, which applies the J functional to the ledger ratio of the configuration. The NuclearConfig structure parameterizes these objects by a positive real ratio, with the special value x=1 corresponding to perfectly stable doubly-magic nuclei that sit at local zero-cost minima. The module derives transmutation paths as sequences of recognition events that strictly reduce total J-cost, with doubly-magic nuclei serving as the attractors at the end of any optimal descent.

proof idea

This is a direct structure definition that packages an instance of NuclearConfig together with the predicate nuclearCost config ≤ 1. No lemmas or tactics are invoked; the definition simply records the local-minimum condition for later use in theorems such as stable_is_attractor.

why it matters

The structure supplies the target type for the downstream theorem stable_is_attractor, which asserts that the zero-cost stable_config itself qualifies as a doubly-magic attractor. It fills the EN-006.9 slot in the fission-transmutation chain, connecting the J-cost barrier structure to the identification of doubly-magic nuclei as J(x)=0 attractors. In the broader Recognition Science framework it supports the claim that optimal transmutation follows monotone cost descent to these local minima, consistent with the phi-ladder and the Recognition Composition Law.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.