Encyclopedia Foundation Foundation Primitive Recognition Calculus Valid Comparison Examples Valid Compar

ARTICLE 3 claims 3 theorems

Foundation Primitive Recognition Calculus Valid Comparison Examples Valid Compar

The framework's ledger of recognition events becomes usable through three concrete bridges that display native events as ordinary real numbers, probabilities, and Hilbert norms.

Three concrete bridges

Recognition Science (a framework that models reality as a discrete record of recognition events) proves that its abstract ledger can be displayed in three familiar mathematical forms. The declaration valid_comparison_examples_headline, a theorem in the framework's machine-checked library of formal theorems, establishes that for real-valued protocols, finite probability events, and finite Hilbert-space amplitudes, a comparison is valid exactly when the displayed values agree. In plain terms: if two native events display to the same real number, the same rational probability, or the same Hilbert norm, then the framework treats them as indistinguishable at the display level.

For real displays, the theorem states that two Delta-real protocols are validly compared precisely when their values are equal. For finite probability events, the same holds for their rational probabilities. For finite Hilbert amplitudes, the condition is equality of the sum of Born weights over the finite index set, which is the standard quantum-mechanical probability of the state. Each of these is a bridge: a structure that maps native events to a display value while preserving the comparison relation.

These bridges are not derived from the core cost function J(x) = (x + 1/x)/2 - 1; they are separate definitions that connect the primitive recognition calculus to classical mathematics. The theorem simply packages three earlier results into one conjunction. It does not claim that real numbers, probabilities, or Hilbert spaces are the only possible displays, nor that these bridges are unique, nor that the displayed values themselves are physically meaningful beyond the comparison relation.

What the theorem changes is practical: it gives the framework a concrete vocabulary for talking about recognition events in terms of ordinary numbers. A reader can now see how the abstract ledger connects to real analysis, probability theory, and quantum mechanics, and can verify that the connection is formally checked, not assumed.

THEOREM valid_comparison_examples_headline · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/ValidComparisonExamples.lean
/-- **Valid-comparison examples headline.** The doctrine has concrete bridges for
real display, finite probability display, and finite Hilbert display. -/
theorem valid_comparison_examples_headline :
    (∀ x y : DeltaReal.Protocol,
        ValidComparison.IsValidComparison realDisplayBridge x y ↔ x.value = y.value)
      ∧ (∀ (N : ℕ) (E F : DeltaProbability.Event N),
          ValidComparison.IsValidComparison (probabilityDisplayBridge N) E F
            ↔ DeltaProbability.prob E = DeltaProbability.prob F)
      ∧ (∀ (N : ℕ) (ψ φ : FRSComplexAmplitude.FRSIAmp N),
          ValidComparison.IsValidComparison (hilbertNormBridge N) ψ φ
            ↔ Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight ψ i)
              = Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight φ i)) :=
  ⟨real_display_valid_iff, probability_display_valid_iff, hilbert_display_valid_iff⟩
THEOREM valid_comparison_examples_headline · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/ValidComparisonExamples.lean
/-- **Valid-comparison examples headline.** The doctrine has concrete bridges for
real display, finite probability display, and finite Hilbert display. -/
theorem valid_comparison_examples_headline :
    (∀ x y : DeltaReal.Protocol,
        ValidComparison.IsValidComparison realDisplayBridge x y ↔ x.value = y.value)
      ∧ (∀ (N : ℕ) (E F : DeltaProbability.Event N),
          ValidComparison.IsValidComparison (probabilityDisplayBridge N) E F
            ↔ DeltaProbability.prob E = DeltaProbability.prob F)
      ∧ (∀ (N : ℕ) (ψ φ : FRSComplexAmplitude.FRSIAmp N),
          ValidComparison.IsValidComparison (hilbertNormBridge N) ψ φ
            ↔ Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight ψ i)
              = Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight φ i)) :=
  ⟨real_display_valid_iff, probability_display_valid_iff, hilbert_display_valid_iff⟩
THEOREM hilbert_display_valid_iff · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/ValidComparisonExamples.lean
theorem hilbert_display_valid_iff (N : ℕ)
    (ψ φ : FRSComplexAmplitude.FRSIAmp N) :
    ValidComparison.IsValidComparison (hilbertNormBridge N) ψ φ
      ↔ Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight ψ i)
        = Finset.univ.sum (fun i : Fin (N + 1) => FRSComplexAmplitude.bornWeight φ i) :=
  ValidComparison.validComparison_iff_native (hilbertNormBridge N) ψ φ

What this page does not claim

The theorem does not prove that these are the only possible display bridges. The theorem does not assign physical meaning to the displayed values beyond the comparison relation. The theorem does not derive the bridges from the core cost function.

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/Foundation/PrimitiveRecognitionCalculus/ValidComparisonExamples.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