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

coherence_defect

show as:
view Lean formalization →

Coherence defect quantifies potential variance across an extended object as the absolute difference between total potentials at its head and feet in an accelerating frame. Researchers deriving the coherence-seeking account of gravity within Recognition Science cite this when establishing equilibrium accelerations. The definition is a direct computation that invokes the total potential helper at symmetric positions around the center of mass and applies the absolute value.

claimThe defect measuring potential variance is defined as $|Φ_{tot}(e) - Φ_{tot}(-e)|$, where the total potential is the linear approximation $Φ_{tot}(z) = ϕ(h_{cm}) + ϕ'(h_{cm}) z + a z$ for a potential function $ϕ$, center-of-mass position $h_{cm}$, and positive extent $e$.

background

The CoherenceFall module treats gravitational acceleration as the frame adjustment that eliminates potential variance across an object. A ProcessingField is a structure containing a potential function phi from Position to real numbers. An ExtendedObject is a structure specifying a center-of-mass position h_cm together with a positive extent. The supporting definition total_potential_in_frame supplies the linearized total potential Φ_tot(z) ≈ ϕ(h_cm + z) + a · z, obtained by first-order Taylor expansion of the gravitational potential plus the inertial term from frame acceleration.

proof idea

The definition directly evaluates total_potential_in_frame at the positive extent and at the negative extent, then returns the absolute value of the difference. It is a one-line wrapper that applies the total potential helper twice and performs the absolute-value operation; no lemmas are invoked inside the definition body.

why it matters in Recognition Science

This definition supplies the concrete mechanism for the claim that gravity restores coherence. It is referenced inside LevitationInevitability to assert existence of a unique restoring acceleration and inside ForcingChainToLevitation as the first step of the chain from Recognition Science primitives to levitation. The downstream theorem falling_restores_coherence shows that the zero-defect acceleration equals the negative gradient of the potential, recovering Newtonian gravity. It thereby anchors the local gravity model to the broader forcing chain that reaches T8 dimension and the eight-tick octave.

scope and limits

formal statement (Lean)

  62def coherence_defect (field : ProcessingField) (obj : ExtendedObject) (a : ℝ) : ℝ :=

proof body

Definition body.

  63  -- Difference in potential between Head (z = +extent) and Feet (z = -extent)
  64  let pot_head := total_potential_in_frame field obj a obj.extent
  65  let pot_feet := total_potential_in_frame field obj a (-obj.extent)
  66  abs (pot_head - pot_feet)
  67
  68/-- Helper: expand coherence_defect into explicit arithmetic (no let bindings). -/

used by (8)

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

depends on (4)

Lean names referenced from this declaration's body.