Encyclopedia Foundation Foundation Born Rule Forcing Fourth Power Sum Pos Of Normalized
ARTICLE 2 claims 2 theorems
Foundation Born Rule Forcing Fourth Power Sum Pos Of Normalized
A tiny lemma about eight numbers forces a key part of the Born rule in the Recognition Science framework.
A small positivity fact
In quantum mechanics, the Born rule says that the probability of finding a system in a particular state is the square of the state's amplitude. The declaration fourth_power_sum_pos_of_normalized proves a small but necessary fact about that rule: for any normalized eight-component signal, the sum of the fourth powers of the component magnitudes is strictly positive.
Here, a normalized signal means its total squared magnitude equals one, a standard condition that makes the signal a valid probability distribution. The lemma states that if the sum of squares of eight nonnegative magnitudes is 1, then the sum of their fourth powers is greater than 0. This is not a deep result on its own, but it is a required step in the framework's proof that the Born rule, not some other weighting, is forced.
The framework, called Recognition Science, models measurement as a discrete ledger of recognition events. Its machine-checked library of formal theorems proves that a unique probability measure on eight-mode sectors satisfies four conditions: normalization, phase invariance, additivity, and consistency with a two-branch calibration. That unique measure is the standard Born rule, the sum of squared amplitudes. The fourth-power positivity lemma is one of the technical bridges that makes that uniqueness proof go through.
It does not claim that the Born rule is the only possible rule in all of physics, nor does it say anything about the physical meaning of the fourth power itself. It is a formal, internal step within a larger derivation.
THEOREM fourth_power_sum_pos_of_normalized · IndisputableMonolith/Foundation/BornRuleForcing.lean
private theorem fourth_power_sum_pos_of_normalized (ψ : Signal8)
(hψ : IsNormalized ψ) : 0 < ∑ j : Fin 8, ‖ψ j‖ ^ 4 := by
have hexists : ∃ k : Fin 8, ψ k ≠ 0 := by
by_contra hnone
have hall : ∀ k : Fin 8, ψ k = 0 := by
intro k
by_contra hk
exact hnone ⟨k, hk⟩
have hsum : ∑ k : Fin 8, ‖ψ k‖ ^ 2 = 0 := by
simp [hall]
rw [hψ] at hsum
norm_num at hsum
rcases hexists with ⟨k, hk⟩
exact Finset.sum_pos'
(fun j _ => pow_nonneg (norm_nonneg (ψ j)) 4)
⟨k, Finset.mem_univ k, pow_pos (norm_pos_iff.mpr hk) 4⟩
THEOREM IsNormalized · IndisputableMonolith/Foundation/BornRuleForcing.lean
/-- A signal ψ is normalised when the sum of squared norms is 1. -/
def IsNormalized (ψ : Signal8) : Prop :=
∑ k : Fin 8, ‖ψ k‖ ^ 2 = 1
What this page does not claim
This lemma does not prove the Born rule itself. It does not assign any physical meaning to the fourth power of amplitudes. It does not claim the Born rule is the only possible rule in all physical contexts.
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 is the full proof that the Born rule is the unique probability measure on eight-mode sectors?
- How does the fourth-power positivity lemma connect to the two-branch calibration condition?
- What role does the DFT-8 basis play in the uniqueness proof?
- How does the framework's Born rule derivation relate to the standard quantum mechanical Born rule?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM fourth_power_sum_pos_of_normalized · IndisputableMonolith/Foundation/BornRuleForcing.lean
private theorem fourth_power_sum_pos_of_normalized (ψ : Signal8) (hψ : IsNormalized ψ) : 0 < ∑ j : Fin 8, ‖ψ j‖ ^ 4 := by have hexists : ∃ k : Fin 8, ψ k ≠ 0 := by by_contra hnone have hall : ∀ k : Fin 8, ψ k = 0 := by intro k by_contra hk exact hnone ⟨k, hk⟩ have hsum : ∑ k : Fin 8, ‖ψ k‖ ^ 2 = 0 := by simp [hall] rw [hψ] at hsum norm_num at hsum rcases hexists with ⟨k, hk⟩ exact Finset.sum_pos' (fun j _ => pow_nonneg (norm_nonneg (ψ j)) 4) ⟨k, Finset.mem_univ k, pow_pos (norm_pos_iff.mpr hk) 4⟩for any normalized eight-component signal, the sum of the fourth powers of the component magnitudes is strictly positive fourth_power_sum_pos_of_normalized · IndisputableMonolith/Foundation/BornRuleForcing.leanTHEOREM IsNormalized · IndisputableMonolith/Foundation/BornRuleForcing.lean
/-- A signal ψ is normalised when the sum of squared norms is 1. -/ def IsNormalized (ψ : Signal8) : Prop := ∑ k : Fin 8, ‖ψ k‖ ^ 2 = 1a normalized signal means its total squared magnitude equals one IsNormalized · IndisputableMonolith/Foundation/BornRuleForcing.lean