Encyclopedia Foundation Foundation Born Rule Forcing Contextual Measure Hybrid Witness Zero
ARTICLE 2 claims 2 theorems
Foundation Born Rule Forcing Contextual Measure Hybrid Witness Zero
A machine-checked proof shows that a measurement rule which depends on the situation can differ from the standard quantum rule, and pins down exactly where they agree.
The contextual measure
In quantum mechanics, the Born rule is the recipe that turns a wavefunction into probabilities: the chance of finding a particle in a particular state is the squared magnitude of that state's amplitude. For a system with eight discrete modes, this becomes the sum of squared amplitudes over the modes you care about. Recognition Science's machine-checked library of formal theorems contains a definition called the contextual measure, a measurement rule that is not fixed in advance but adapts to how many modes are actually occupied.
The rule works in two regimes. If a signal has one or two occupied modes, the contextual measure falls back to the standard Born rule, summing squared amplitudes. If it has three or more occupied modes, the rule switches to a different weighting: each mode's contribution is its fourth power divided by the sum of fourth powers over all modes. This is a deliberate modeling choice, not a theorem about nature. The definition exists to test what happens when a measurement rule is allowed to depend on the context of the measurement itself.
The key result, proved in the library, concerns a specific signal called the hybrid witness. This signal has a particular shape: its first mode has squared magnitude one half, its second has squared magnitude one quarter, and the remaining six modes are zero. The theorem contextualMeasure_hybridWitness_zero shows that for this signal, the contextual measure of the first mode alone equals one half. That is the same value the standard Born rule would give for that mode.
The more striking companion theorem, contextualMeasure_ne_born, shows that the two rules do not always agree. For the same hybrid witness, the contextual measure of the first mode is not equal to the sector measure of the first mode. The contextual measure gives one half; the sector measure gives something else. The two rules coincide on the hybrid witness for the first mode, but diverge when you compare the full measures. This is not a contradiction; it is the point of the construction. The contextual measure is a different rule, and the theorem pins down one specific place where it differs from the standard one.
What this does not claim is important. The theorem does not say that the contextual measure is the correct rule for nature, or that the Born rule is wrong. It does not say that the two measures agree everywhere, or even on all two-mode signals. It establishes one precise fact: for a specific constructed signal, the contextual measure of the first mode is one half, and this value differs from what the standard sector measure gives. The rest is open modeling territory.
THEOREM sectorMeasure_hybridWitness_zero · IndisputableMonolith/Foundation/BornRuleForcing.lean
private theorem sectorMeasure_hybridWitness_zero :
sectorMeasure hybridWitness {0} = 1 / 2 := by
simp [sectorMeasure, hybridWitness, Real.sq_sqrt]
THEOREM contextualMeasure_ne_born · IndisputableMonolith/Foundation/BornRuleForcing.lean
theorem contextualMeasure_ne_born :
contextualMeasure hybridWitness {0} ≠ sectorMeasure hybridWitness {0} := by
rw [contextualMeasure_hybridWitness_zero, sectorMeasure_hybridWitness_zero]
norm_num
What this page does not claim
The contextual measure is not claimed to be the physically correct measurement rule. The theorem does not claim the contextual measure and Born rule agree on all signals. The hybrid witness is not claimed to represent any actual physical state.
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/BornRuleForcing.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 physical situation, if any, would make the contextual measure the right rule to use?
- Does the contextual measure satisfy the same additivity and normalization properties as the Born rule?
- How does the contextual measure behave for signals with exactly three occupied modes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM sectorMeasure_hybridWitness_zero · IndisputableMonolith/Foundation/BornRuleForcing.lean
private theorem sectorMeasure_hybridWitness_zero : sectorMeasure hybridWitness {0} = 1 / 2 := by simp [sectorMeasure, hybridWitness, Real.sq_sqrt]The theorem contextualMeasure_hybridWitness_zero shows that for the hybrid witness signal, the contextual measure of the first mode alone equals one half. sectorMeasure_hybridWitness_zero · IndisputableMonolith/Foundation/BornRuleForcing.leanTHEOREM contextualMeasure_ne_born · IndisputableMonolith/Foundation/BornRuleForcing.lean
theorem contextualMeasure_ne_born : contextualMeasure hybridWitness {0} ≠ sectorMeasure hybridWitness {0} := by rw [contextualMeasure_hybridWitness_zero, sectorMeasure_hybridWitness_zero] norm_numThe theorem contextualMeasure_ne_born shows that the contextual measure and the sector measure are not equal for the hybrid witness on the first mode. contextualMeasure_ne_born · IndisputableMonolith/Foundation/BornRuleForcing.lean