Encyclopedia Gravity Gravity Seven Gaps Recognition Ratio Bridge Ratio Bridge Admits Negative Deficit

ARTICLE 4 claims 4 theorems

Gravity Seven Gaps Recognition Ratio Bridge Ratio Bridge Admits Negative Deficit

A machine-checked theorem shows a geometric quantity can be negative while the ledger it generates stays nonnegative, separating two kinds of deficit.

The negative deficit witness

In the Recognition Science framework, a ledger, a discrete record of recognition events, carries a notion of deficit that is always nonnegative. A separate geometric quantity, the deficit at a hinge of a triangulated surface, is signed and can be negative. A theorem in the framework's machine-checked library of formal theorems, named ratioBridge_admits_negative_deficit, proves that for every real number d there exists a bridge structure on two hinges whose geometric deficits are exactly d and -d, with no approximation error and unit coupling strength.

The bridge structure encodes the relation log x = kappa * delta + remainder, where x is a positive comparison ratio, kappa is a coupling, delta is the geometric deficit, and remainder is bounded by a mesh scale term. The theorem sets the remainder to zero, so the relation is exact. The witness bridge assigns xRatio 0 = exp(d) and xRatio 1 = exp(-d), which are reciprocals of each other. This construction demonstrates that the signed information lives in the ratio, not in the ledger deficit.

The framework's library also proves that the induced ledger deficit from this bridge is nonnegative and even under the sign flip d to -d, while the geometric deficit stays signed. The J-cost, defined as J(x) = (x + 1/x)/2 - 1, satisfies J(x) = cosh(log x) - 1, so it depends only on the even part of the relation and is invariant under flipping the sign of the geometric deficit. The quadratic approximation J(x) ≈ (kappa * delta)^2 / 2 holds up to a quartic term when the argument is small.

This theorem does not claim that the bridge relation is derived from first principles. The structure itself is an admissibility hypothesis, a modeling choice that encodes a clause from a physics paper. The derivation of the ratio relation from stationarity of the ledger action remains an open target, as does the asymptotic family as mesh scale approaches zero. The theorem also does not claim that a negative geometric deficit is physically realized; it only shows the mathematical consistency of such a value within the bridge structure.

THEOREM ratioBridge_admits_negative_deficit · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioBridge.lean
/-- **THEOREM (escape from the sign no-go, strong universal form).** For
EVERY d there is an EXACT (remBound = 0), UNIT-COUPLED (kappa = 1)
recognition-ratio bridge on two hinges whose geometric deficit takes the
prescribed values d at hinge 0 and -d at hinge 1. For d > 0 the deficit at
hinge 1 is strictly negative, which
`bridge_forces_nonneg_geometricDeficit` proves impossible for the old
deficit-equality form: the odd log-ratio form escapes the sign obstruction
with no free field absorbing the content. -/
theorem ratioBridge_admits_negative_deficit (d : ℝ) :
    ∃ B : RecognitionRatioBridge (Fin 2),
      B.remBound = 0 ∧ (∀ σ, B.kappa σ = 1) ∧
      B.geometricDeficit 0 = d ∧ B.geometricDeficit 1 = -d :=
  ⟨twoHingeWitnessBridge d, rfl, fun _ => rfl,
    (twoHingeWitnessBridge_deficit d).1, (twoHingeWitnessBridge_deficit d).2⟩
THEOREM ratioBridge_separates_deficit_observables · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioBridge.lean
ratioBridge_separates_deficit_observables · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioBridge.lean:258
/-- **THEOREM (deficit-observable separation: the reconciliation).** For
every d > 0 the exact, unit-coupled two-hinge witness simultaneously has:

* a SIGNED geometric deficit (value d at hinge 0, strictly negative value
  -d at hinge 1), which the sign no-go forbids for the LEDGER deficit; and
* an induced genuine `RecognitionLedger` whose deficit is NONNEGATIVE at
  every cell (`RecognitionLedger.deficit_nonneg`, the engine behind
  `bridge_forces_nonneg_geometricDeficit`) and EVEN under the sign flip
  d -> -d (`ledger_family_deficit_even_of_ratio_parity`, via
  `twoHingeWitness_ledger_deficit_even`).

The no-gos constrain the ledger deficit; the paper's odd bridge stores the
signed information in log x, hence in the geometric deficit. The two
observables are separated by this witness, so the no-gos and the paper's
bridge are jointly consistent. -/
theorem ratioBridge_separates_deficit_observables (d : ℝ) (hd : 0 < d) :
    (twoHingeWitnessBridge d).remBound = 0 ∧
    (∀ σ, (twoHingeWitnessBridge d).kappa σ = 1) ∧
    (twoHingeWitnessBridge d).geometricDeficit 0 = d ∧
    (twoHingeWitnessBridge d).geometricDeficit 1 < 0 ∧
    (∀ σ, 0 ≤ RecognitionLedger.deficit
        (ratioBridgeLedger (twoHingeWitnessBridge d)) σ) ∧
    (∀ σ, RecognitionLedger.deficit
          (ratioBridgeLedger (twoHingeWitnessBridge (-d))) σ
        = RecognitionLedger.deficit
          (ratioBridgeLedger (twoHingeWitnessBridge d)) σ) := by
  refine ⟨rfl, fun _ => rfl, (twoHingeWitnessBridge_deficit d).1, ?_,
    fun σ => RecognitionLedger.deficit_nonneg _ σ,
    fun σ => twoHingeWitness_ledger_deficit_even d σ⟩
  rw [(twoHingeWitnessBridge_deficit d).2]
  linarith
THEOREM jcost_of_ratioBridge_cosh · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioBridge.lean
/-- **THEOREM.** For any bridge and hinge, the J-cost of the comparison
ratio is cosh of its logarithm minus one. Since cosh is even, the ledger
cost is blind to the sign of log x_sigma. -/
theorem jcost_of_ratioBridge_cosh {H : Type*}
    (B : RecognitionRatioBridge H) (σ : H) :
    Cost.Jcost (B.xRatio σ)
      = Real.cosh (Real.log (B.xRatio σ)) - 1 := by
  conv_lhs => rw [← Real.exp_log (B.xRatio_pos σ)]
  exact Cost.Jcost_exp_cosh _
THEOREM ratioBridge_jcost_quadratic · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioBridge.lean
/-- **THEOREM (exact quadratic expansion).** For an exact bridge with small
response |kappa sigma * delta sigma| <= 1:

  |J(x_sigma) - (kappa sigma * delta sigma)^2 / 2|
    <= (kappa sigma * delta sigma)^4 / 2.

Same numeric lemma `Jcost_exp_sub_half_sq_abs_le` as the quadratic-energy
matching of `LedgerEnergyBridge`. -/
theorem ratioBridge_jcost_quadratic {H : Type*}
    (B : RecognitionRatioBridge H) (hB : B.remBound = 0) (σ : H)
    (hsmall : |B.kappa σ * B.geometricDeficit σ| ≤ 1) :
    |Cost.Jcost (B.xRatio σ)
        - (B.kappa σ * B.geometricDeficit σ) ^ 2 / 2|
      ≤ (B.kappa σ * B.geometricDeficit σ) ^ 4 / 2 := by
  rw [xRatio_eq_exp_of_exact B hB σ]
  exact Jcost_exp_sub_half_sq_abs_le _ hsmall

What this page does not claim

The bridge relation is derived from first principles; it is an admissibility hypothesis. A negative geometric deficit is physically realized; the theorem only shows mathematical consistency. The ledger deficit can be negative; it is always nonnegative.

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/Gravity/SevenGaps/RecognitionRatioBridge.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND