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

Ignites

show as:
view Lean formalization →

A mixture ignites precisely when the J-cost of its branching-to-termination ratio r meets or exceeds the golden-section threshold J(φ). Combustion physicists cite the predicate when modeling autoignition criteria inside the recognition-cost framework. The declaration is a direct definition that equates the ignition condition to the inequality between the precomputed threshold and the chain-cost function.

claimA fuel-oxidizer mixture ignites if and only if $J(r) ≥ J(φ)$, where $r$ is the branching-to-termination ratio and $J$ is the recognition J-cost function with threshold $J(φ)$ the canonical golden-section quantum.

background

The module treats autoignition as governed by recognition cost on the radical-chain ratio $r :=$ branching_rate / termination_rate. Below $r=1$ radicals terminate faster than they branch and combustion does not propagate; at $r=1$ the system sits at the J-cost minimum but is unstable; above $r=1$ J-cost rises and propagation follows the φ-ladder. IgnitionThreshold is defined as Cost.Jcost φ, the same canonical band (0.11,0.13) that appears in plaque vulnerability and Stage-2 hypertension. chainCost r is defined identically as Cost.Jcost r, so the predicate simply compares the two evaluations.

proof idea

Direct definition: Ignites r holds exactly when the precomputed IgnitionThreshold is ≤ chainCost r. No lemmas or tactics are invoked beyond the sibling definitions of chainCost and IgnitionThreshold.

why it matters in Recognition Science

The definition embeds combustion inside Recognition Science by identifying the ignition threshold with the universal J(φ) quantum that also bounds pathology. It supplies the predicate used by downstream objects such as IgnitionCert and ignition_threshold_band, closing the link between the φ-ladder (T6) and physical propagation rates. The construction keeps the same numerical band across domains without additional hypotheses.

scope and limits

formal statement (Lean)

  51def Ignites (r : ℝ) : Prop := IgnitionThreshold ≤ chainCost r

proof body

Definition body.

  52
  53/-- Ignition threshold lies in the canonical band. -/

depends on (6)

Lean names referenced from this declaration's body.