Encyclopedia Foundation Foundation Pair Kernel Gap2a Remaining Physical Equality Residual Forces Remaini
ARTICLE 4 claims 3 theorems 1 model
Foundation Pair Kernel Gap2a Remaining Physical Equality Residual Forces Remaini
A machine-checked theorem states that the framework's current premises cannot force a specific physical equality, leaving it as a genuine open choice.
The unforced equality
In the Recognition Science framework, a ledger (a discrete record of events) is built from a cost function that the framework proves must be J(x) = (x + 1/x)/2 - 1. From that cost, a chain of theorems derives constants and structures. But at one point, the framework reaches a fork: two candidate values for a physical source magnitude both satisfy all the premises established so far. The declaration forcesRemainingPhysicalEqualityFromAfterBridge_unforced is a theorem stating that the current premises do not force a choice between these candidates. It proves, in the framework's machine-checked library of formal theorems, that the equality RemainingPhysicalEquality, which would select one candidate, is not derivable from the existing premises.
This is a precise negative result. The theorem shows that the premise package, which includes both carriers and a common-type bridge, admits at least two distinct candidate scales. Both candidates satisfy every condition in the package. The equality that would pick one of them is therefore unforced: it cannot be proved from what is already established. The framework's library also proves that any law forced uniformly by that package cannot be scale-breaking, meaning it cannot depend on the choice of scale in a way that would favor one candidate over the other. This is a statement about what the framework's current axioms do and do not imply, not about the physical world directly.
What the declaration does not claim is equally important. It does not say the equality is false, only that it is not forced. It does not introduce a new axiom or a sorry (an admitted gap in a proof). It does not reopen earlier bridges, such as the unit-drop bridge or the Noether carrier packaging, and it does not invoke Planck's constant, pi, or the gravitational constant. The theorem banks the residual as an open target: the smallest new physical primitive needed to settle the choice is exactly this equality, not a weaker parent statement. The framework names this primitive as a model, not as a derived fact, and the equivalence chain around it is theorem-backed.
In plain terms, the framework has reached a point where its own logic runs out. It has derived a great deal, but it cannot derive which of two candidate values is the physical one. That is the honest state of the framework at this stage: a specific equality remains an open choice, and the declaration makes that openness a formal, checked result rather than an informal gap.
THEOREM forcesRemainingPhysicalEqualityFromAfterBridge_unforced · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
theorem forcesRemainingPhysicalEqualityFromAfterBridge_unforced :
¬ ForcesRemainingPhysicalEqualityFromAfterBridge :=
remainingPhysicalEquality_unforced_after_commonTypeBridge
THEOREM currentPremisesAfterCommonTypeBridge_admit_distinct_candidates · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
theorem currentPremisesAfterCommonTypeBridge_admit_distinct_candidates :
∃ sourceScale₁ sourceScale₂ : ℝ,
sourceScale₁ ≠ sourceScale₂ ∧
CurrentPremisesAfterCommonTypeBridge sourceScale₁ ∧
CurrentPremisesAfterCommonTypeBridge sourceScale₂ :=
currentPremisesWithUniqueRealCotangent_admit_distinct_candidates
THEOREM afterBridgeForcedLaw_cannot_be_scaleBreaking · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
/-- Any law forced uniformly by the post-bridge package cannot select a unique
scale among the banked candidates. -/
theorem afterBridgeForcedLaw_cannot_be_scaleBreaking
(law : ℝ → Prop)
(hforced :
∀ sourceScale : ℝ,
CurrentPremisesAfterCommonTypeBridge sourceScale →
law sourceScale) :
¬ IsScaleBreakingAttachmentLaw law := by
intro hbreaking
rcases hbreaking with ⟨selected, ⟨_hselPrem, _hselLaw⟩, honly⟩
have hA := hforced _
candidateA_satisfies_currentPremisesAfterCommonTypeBridge
have hB := hforced _
candidateB_satisfies_currentPremisesAfterCommonTypeBridge
have hAselected :
candidateA_sourceMagnitudeExpr.eval = selected :=
honly _
⟨candidateA_satisfies_currentRecognitionSourcePremises, hA⟩
have hBselected :
candidateB_sourceMagnitudeExpr.eval = selected :=
honly _
⟨candidateB_satisfies_currentRecognitionSourcePremises, hB⟩
exact
candidates_select_distinct_magnitudes
(hAselected.trans hBselected.symm)
MODEL SmallestMissingPhysicalPrimitive · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
/-- **MODEL naming of the residual atom.** The smallest new physical primitive
required after carriers and the common-type bridge is exactly
`RemainingPhysicalEquality` / `IdentifiesPhysicalSourceWithUniqueCotangent`.
It is Bridge1 / `NativeActionDualSourceLaw` equivalent; there is no strictly
weaker independently forced parent in the current premise package. -/
def SmallestMissingPhysicalPrimitive (sourceScale : ℝ) : Prop :=
RemainingPhysicalEquality sourceScale
What this page does not claim
The declaration does not claim the equality is false, only that it is not forced. It does not introduce a new axiom or admit a proof gap. It does not invoke Planck's constant, pi, or the gravitational constant.
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/PairKernelGap2aRemainingPhysicalEqualityResidual.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:
- What additional premise would force the equality RemainingPhysicalEquality without breaking the framework's existing theorems?
- Does the unforced equality correspond to a physical constant that measurements could identify?
- How does the framework's open equality relate to the known values of candidate A and candidate B?
- What would it mean for the framework if the equality turned out to be false for the physical world?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM forcesRemainingPhysicalEqualityFromAfterBridge_unforced · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
theorem forcesRemainingPhysicalEqualityFromAfterBridge_unforced : ¬ ForcesRemainingPhysicalEqualityFromAfterBridge := remainingPhysicalEquality_unforced_after_commonTypeBridgeThe declaration proves that the current premises do not force the equality RemainingPhysicalEquality. forcesRemainingPhysicalEqualityFromAfterBridge_unforced · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.leanTHEOREM currentPremisesAfterCommonTypeBridge_admit_distinct_candidates · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
theorem currentPremisesAfterCommonTypeBridge_admit_distinct_candidates : ∃ sourceScale₁ sourceScale₂ : ℝ, sourceScale₁ ≠ sourceScale₂ ∧ CurrentPremisesAfterCommonTypeBridge sourceScale₁ ∧ CurrentPremisesAfterCommonTypeBridge sourceScale₂ := currentPremisesWithUniqueRealCotangent_admit_distinct_candidatesThe premise package admits at least two distinct candidate scales. currentPremisesAfterCommonTypeBridge_admit_distinct_candidates · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.leanTHEOREM afterBridgeForcedLaw_cannot_be_scaleBreaking · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
/-- Any law forced uniformly by the post-bridge package cannot select a unique scale among the banked candidates. -/ theorem afterBridgeForcedLaw_cannot_be_scaleBreaking (law : ℝ → Prop) (hforced : ∀ sourceScale : ℝ, CurrentPremisesAfterCommonTypeBridge sourceScale → law sourceScale) : ¬ IsScaleBreakingAttachmentLaw law := by intro hbreaking rcases hbreaking with ⟨selected, ⟨_hselPrem, _hselLaw⟩, honly⟩ have hA := hforced _ candidateA_satisfies_currentPremisesAfterCommonTypeBridge have hB := hforced _ candidateB_satisfies_currentPremisesAfterCommonTypeBridge have hAselected : candidateA_sourceMagnitudeExpr.eval = selected := honly _ ⟨candidateA_satisfies_currentRecognitionSourcePremises, hA⟩ have hBselected : candidateB_sourceMagnitudeExpr.eval = selected := honly _ ⟨candidateB_satisfies_currentRecognitionSourcePremises, hB⟩ exact candidates_select_distinct_magnitudes (hAselected.trans hBselected.symm)Any law forced uniformly by that package cannot be scale-breaking. afterBridgeForcedLaw_cannot_be_scaleBreaking · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.leanMODEL SmallestMissingPhysicalPrimitive · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean
/-- **MODEL naming of the residual atom.** The smallest new physical primitive required after carriers and the common-type bridge is exactly `RemainingPhysicalEquality` / `IdentifiesPhysicalSourceWithUniqueCotangent`. It is Bridge1 / `NativeActionDualSourceLaw` equivalent; there is no strictly weaker independently forced parent in the current premise package. -/ def SmallestMissingPhysicalPrimitive (sourceScale : ℝ) : Prop := RemainingPhysicalEquality sourceScaleThe smallest new physical primitive needed to settle the choice is exactly that equality, not a weaker parent statement. SmallestMissingPhysicalPrimitive · IndisputableMonolith/Foundation/PairKernelGap2aRemainingPhysicalEqualityResidual.lean