Encyclopedia Gravity Gravity Seven Gaps Recognition Ratio Substrate Blocker Recognition Ledger Cost E

ARTICLE 3 claims 3 theorems

Gravity Seven Gaps Recognition Ratio Substrate Blocker Recognition Ledger Cost E

A cost function completely determines the ledger that records recognition events, but it cannot tell you which way the events flow.

The cost ledger

A ledger, in plain terms, is a discrete record of events. In Recognition Science, the framework models a recognition ledger as a mathematical object that pairs a set of possible events with a cost function. The declaration recognitionLedger_cost_ext is a small but decisive theorem about this pairing: it proves that the cost function alone fixes the entire ledger. If two ledgers have exactly the same cost function, they are the same ledger. There is no hidden information, no extra field, no unrecorded data that could distinguish them.

The proof is a matter of structure. The theorem takes two ledgers, assumes their cost functions are equal, and concludes the ledgers themselves are equal. The remaining fields of a ledger, such as the proofs that the cost function behaves correctly, are forced once the cost is fixed. This is a theorem about the framework's own definition of a ledger, not a claim about any physical system. It says: within this model, the cost is the whole story.

In Recognition Science, this theorem is the load-bearing wall for a specific negative result. The framework's library shows that a bare ledger, one with only a cost function, cannot recover the signed orientation of a deficit source. Two ledgers with opposite source orientations, source strength 1 and source strength -1, have identical cost functions and therefore, by recognitionLedger_cost_ext, are identical ledgers. Yet the two orientations are different physical situations. The conclusion is that signed source orientation is extra constitutive data, a modeling choice, not information contained in the bare ledger.

What the theorem does not claim is just as important. It does not say that all ledgers are the same, only that ledgers with the same cost are. It does not say that the cost function is the only thing that matters in physics, only that it is the only thing in this particular definition of a ledger. And it does not say that a deficit source can never be recovered, only that it cannot be recovered from the bare ledger alone. The theorem is a precise statement about the limits of a model, and it is exactly that precision that makes the limit meaningful.

THEOREM recognitionLedger_cost_ext · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioSubstrateBlocker.lean
/-- Two recognition ledgers with the same cost function are equal (the
remaining fields are proofs). -/
private theorem recognitionLedger_cost_ext {Λ : Type*} [Fintype Λ]
    [DecidableEq Λ] {L L' : RecognitionLedger.RecognitionLedger Λ}
    (h : L.cost = L'.cost) : L = L' := by
  cases L
  cases L'
  subst h
  rfl
THEOREM signBlindBareLedger_neg_eq · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioSubstrateBlocker.lean
/-- **THEOREM (same bare ledger, opposite signed source).** Reversing the
source orientation leaves every J-cost, hence the entire bare recognition
ledger, unchanged. -/
theorem signBlindBareLedger_neg_eq (d : ℝ) :
    signBlindBareLedger (-d) = signBlindBareLedger d := by
  apply recognitionLedger_cost_ext
  funext i j
  rw [show (signBlindBareLedger (-d)).cost i j
      = Cost.Jcost ((twoHingeWitnessBridge (-d)).xRatio i
          / (twoHingeWitnessBridge (-d)).xRatio j) from
        ratioBridgeLedger_cost (twoHingeWitnessBridge (-d)) i j]
  rw [show (signBlindBareLedger d).cost i j
      = Cost.Jcost ((twoHingeWitnessBridge d).xRatio i
          / (twoHingeWitnessBridge d).xRatio j) from
        ratioBridgeLedger_cost (twoHingeWitnessBridge d) i j]
  have hratio :
      (twoHingeWitnessBridge (-d)).xRatio i
          / (twoHingeWitnessBridge (-d)).xRatio j
        = ((twoHingeWitnessBridge d).xRatio i
            / (twoHingeWitnessBridge d).xRatio j)⁻¹ := by
    rw [twoHingeWitnessBridge_xRatio_neg d i,
      twoHingeWitnessBridge_xRatio_neg d j, inv_div_inv, inv_div]
  rw [hratio]
  exact (Cost.Jcost_symm
    (div_pos ((twoHingeWitnessBridge d).xRatio_pos i)
      ((twoHingeWitnessBridge d).xRatio_pos j))).symm
THEOREM no_bare_ledger_selector_recovers_signed_source · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioSubstrateBlocker.lean
no_bare_ledger_selector_recovers_signed_source · IndisputableMonolith/Gravity/SevenGaps/RecognitionRatioSubstrateBlocker.lean:175
/-- **THEOREM (the exact bare-ledger blocker).** No function of a bare
`RecognitionLedger (Fin 2)` can universally recover the signed source of
the exact unit-coupled witness family.  The ledgers at sources `1` and `-1`
are equal, while the required outputs are different.  Therefore signed
deficit-source orientation is extra constitutive data, not information
contained in the bare ledger. -/
theorem no_bare_ledger_selector_recovers_signed_source :
    ¬ ∃ select : RecognitionLedger.RecognitionLedger (Fin 2) → ℝ,
      RecoversSignedSourceFromBareLedger select := by
  rintro ⟨select, hselect⟩
  have hneg := hselect (-1)
  have hpos := hselect 1
  rw [signBlindBareLedger_neg_eq 1] at hneg
  norm_num at hneg hpos
  linarith

What this page does not claim

This does not claim that all ledgers are identical, only that ledgers sharing a cost function are. This does not claim that a deficit source is unrecoverable in general, only that it cannot be recovered from a bare ledger alone. This does not claim that the cost function is the only meaningful quantity in all of physics, only within this specific definition of a ledger.

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/RecognitionRatioSubstrateBlocker.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