pith. machine review for the scientific record. sign in
def definition def or abbrev high

f_residue_model

show as:
view Lean formalization →

The definition supplies a computable stand-in for the renormalization-group residue of any fermion species by setting it equal to the gap function at the species' Z index. Researchers modeling the Recognition Science anchor policy would reference it to obtain executable algebraic properties without relying on external axioms. It is realized as a direct assignment to the pre-existing gap expression.

claimFor each fermion species $f$, the model residue is defined by $f_{residue model}(f,μ) := ℱ(Z(f))$, where $ℱ(Z) = ln(1 + Z/φ)/ln φ$ is the closed-form display function and $Z(f)$ is the integer index computed from the fermion's sector and charge quantum numbers.

background

In the AnchorPolicyModel module the Standard-Model RG residue is treated as an opaque interface in the main development, but this file supplies a Lean-native model that sets the residue equal to the closed-form gap by definition. The gap function, defined in RSBridge.Anchor as $ℱ(Z) = ln(1 + Z/φ)/ln φ$, represents the integrated residue at the anchor scale. The auxiliary function ZOf maps each Fermion (an inductive type enumerating quarks and leptons) to its effective integer index Z via sector-dependent formulas involving the charge tildeQ.

proof idea

The declaration is a direct definition that evaluates to gap (ZOf f), ignoring the scale argument mu. It is a one-line wrapper that applies the gap function from the RSBridge.Anchor module to the Z index computed by ZOf.

why it matters in Recognition Science

This definition enables the parent theorems equalZ_at_any, stationary_at_any, and stability_bound_at_any in the same module, which establish degeneracy, vanishing derivative, and bounded second derivative under the model. It fills the role of a computable proxy for the single-anchor closed form claimed in the Recognition Science framework, where the residue equals gap(Z) at the anchor scale. The construction avoids axiom dependencies while preserving the algebraic consequences of the T5 J-uniqueness and phi-ladder structure.

scope and limits

Lean usage

theorem stationary_example (muStar : ℝ) (f : Fermion) : deriv (fun t => f_residue_model f (Real.exp t)) (Real.log muStar) = 0 := stationary_at_any muStar f

formal statement (Lean)

  36noncomputable def f_residue_model (f : Fermion) (_mu : ℝ) : ℝ :=

proof body

Definition body.

  37  gap (ZOf f)
  38

used by (4)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (9)

Lean names referenced from this declaration's body.