Encyclopedia Masses Masses Mass Genesis T10 Total Flip Genesis Wall Posts Each Axis Once Iff Coverag
ARTICLE 5 claims 5 theorems
Masses Mass Genesis T10 Total Flip Genesis Wall Posts Each Axis Once Iff Coverag
A machine-checked theorem shows that a creation walk touching each of three axes exactly once is the same as touching every axis at least once in a walk of length three.
The coverage equivalence
In the Recognition Science framework, a creation deposit, a discrete record of events that builds a particle, is modeled as a walk along the three axes of a cube. The declaration postsEachAxisOnce_iff_coverage_length_three proves a clean equivalence: a walk posts each axis exactly once if and only if it has length three and it posts every axis at least once. This is a theorem, checked by a machine, with no unproved assumptions.
The statement matters because it separates two ideas that look similar. A walk of length three that visits every axis, such as [0,1,2], is a total flip: it turns each axis an odd number of times. But a walk of length three that stays on one axis, such as [0,0,0], has the same length and the same normalization value, yet it is not a total flip. The theorem proves that the normalization, a number attached to the walk's length, cannot distinguish these cases. The only thing that can tell them apart is the coverage condition itself.
In Recognition Science, this result closes a specific gap. Earlier work forced the length-three normalization from unitarity and the lattice dimension, but left open whether a genesis deposit actually realizes the flip-every-axis walk. This theorem shows that the entire remaining question reduces to a coverage principle: whether the deposit engages every cube axis. The framework proves that coverage is not forced by the normalization, so it names the exact missing principle: a genesis full-dimension-coverage law.
What the declaration does not claim is just as important. It does not prove that any actual genesis walk is a total flip. The realized seed settlement walk is [0,1], which misses axis 2, and the full eight-tick octave is closed, with every axis count even. The total flip is not forbidden, the octave contains length-three total-flip sub-walks, but nothing selects one as the creation deposit. The theorem also says nothing about a separate open residual concerning a phi^21 scalar taint.
THEOREM postsEachAxisOnce_iff_coverage_length_three · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **The reduction.** The conjecture "genesis posts each axis exactly once" is
EXACTLY full-dimension coverage plus the length-3 normalization. Since the
length-3 normalization is banked, the residual conjecture is precisely the
coverage principle. -/
theorem postsEachAxisOnce_iff_coverage_length_three {w : Walk} :
PostsEachAxisOnce w ↔ FullDimensionCoverage w ∧ w.length = 3 := by
constructor
· intro h
have hlen : w.length = 3 := by
have hsum := length_eq_sum_countAxis w
rw [Fin.sum_univ_three] at hsum
have e0 := h (0:Axis); have e1 := h (1:Axis); have e2 := h (2:Axis)
omega
refine ⟨?_, hlen⟩
intro a
have := h a
omega
· rintro ⟨hcov, hlen⟩
have hsum : countAxis (0:Axis) w + countAxis (1:Axis) w + countAxis (2:Axis) w = 3 := by
have hle := length_eq_sum_countAxis w
rw [hlen] at hle
rw [Fin.sum_univ_three] at hle
exact hle.symm
have h0 := hcov (0:Axis)
have h1 := hcov (1:Axis)
have h2 := hcov (2:Axis)
have e0 : countAxis (0:Axis) w = 1 := by omega
have e1 : countAxis (1:Axis) w = 1 := by omega
have e2 : countAxis (2:Axis) w = 1 := by omega
intro a
have ha : a = 0 ∨ a = 1 ∨ a = 2 := by fin_cases a <;> decide
rcases ha with rfl | rfl | rfl
· exact e0
· exact e1
· exact e2
THEOREM totalFlip_independent_of_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **The independence theorem.** No predicate that factors through the deposit
normalization can be the total-flip predicate: the normalization is
length-blind, but the total flip is not length-determined. Equivalently, the
total flip is independent of every quantity that factors through
`postingNorm ^ w.length` (the per-tick share, the off-field factor, the
amplitude modulus). -/
theorem totalFlip_independent_of_normalization :
¬ ∃ Q : ℝ → Prop, ∀ w : Walk, TotalFlip w ↔ Q (postingNorm ^ w.length) := by
rintro ⟨Q, hQ⟩
have h1 := hQ [(0:Axis),(1:Axis),(2:Axis)]
have h2 := hQ [(0:Axis),(0:Axis),(0:Axis)]
have hsame : postingNorm ^ [(0:Axis),(1:Axis),(2:Axis)].length =
postingNorm ^ [(0:Axis),(0:Axis),(0:Axis)].length :=
postingNorm_pow_eq_of_length rfl
rw [hsame] at h1
exact not_totalFlip_xxx (h2.mpr (h1.mp totalFlip_xyz))
THEOREM coverage_not_forced_by_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **Coverage is independent of the normalization.** The walk `x x x` has the
length-3 normalization `creationDepositNorm` but is not full-dimension. So the
coverage principle is genuinely additional, not a consequence of the deposit
law. -/
theorem coverage_not_forced_by_normalization :
[(0:Axis),(0:Axis),(0:Axis)].length = 3 ∧
postingNorm ^ [(0:Axis),(0:Axis),(0:Axis)].length = creationDepositNorm ∧
¬ FullDimensionCoverage [(0:Axis),(0:Axis),(0:Axis)] := by
have hlen : [(0:Axis),(0:Axis),(0:Axis)].length = 3 := rfl
refine ⟨hlen, ?_, ?_⟩
· rw [hlen, creationDepositNorm_eq_pow]
· intro h
have h1 := h (1:Axis)
have hcount : countAxis (1:Axis) [(0:Axis),(0:Axis),(0:Axis)] = 0 := by decide
omega
THEOREM seedSettlementWalk_not_totalFlip · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- The realized seed's settlement is not a total flip: it posts axes `0` and
`1` and never axis `2`. -/
theorem seedSettlementWalk_not_totalFlip : ¬ TotalFlip seedSettlementWalk := by
rw [seedSettlementWalk_eq]
intro h
have h2 := h (2:Axis)
have hf : flipBits [(0:Axis), (1:Axis)] (2:Axis) = false := by decide
rw [hf] at h2
exact Bool.false_ne_true h2
THEOREM octaveWalk_isClosed · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- The realized octave is a CLOSED walk: every axis count is even
(`4, 2, 2`). This is the walk-form of the banked settlement law that the octave
returns to its initial parity at tick eight. -/
theorem octaveWalk_isClosed : IsClosed octaveWalk := by
rw [octaveWalk_eq]
intro a
fin_cases a
· exact ⟨2, by decide⟩
· exact ⟨1, by decide⟩
· exact ⟨1, by decide⟩
What this page does not claim
This does not prove that any realized genesis walk is a total flip. This does not claim that the total flip is forbidden by the substrate. This does not address the phi^21 scalar taint residual.
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/Masses/MassGenesis/T10TotalFlipGenesisWall.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 principle would select a total-flip walk as the creation deposit?
- How does the phi^21 scalar taint affect the genesis deposit?
- What is the relationship between the coverage law and the three spatial dimensions?
- Does the coverage principle hold for walks of length other than three?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM postsEachAxisOnce_iff_coverage_length_three · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **The reduction.** The conjecture "genesis posts each axis exactly once" is EXACTLY full-dimension coverage plus the length-3 normalization. Since the length-3 normalization is banked, the residual conjecture is precisely the coverage principle. -/ theorem postsEachAxisOnce_iff_coverage_length_three {w : Walk} : PostsEachAxisOnce w ↔ FullDimensionCoverage w ∧ w.length = 3 := by constructor · intro h have hlen : w.length = 3 := by have hsum := length_eq_sum_countAxis w rw [Fin.sum_univ_three] at hsum have e0 := h (0:Axis); have e1 := h (1:Axis); have e2 := h (2:Axis) omega refine ⟨?_, hlen⟩ intro a have := h a omega · rintro ⟨hcov, hlen⟩ have hsum : countAxis (0:Axis) w + countAxis (1:Axis) w + countAxis (2:Axis) w = 3 := by have hle := length_eq_sum_countAxis w rw [hlen] at hle rw [Fin.sum_univ_three] at hle exact hle.symm have h0 := hcov (0:Axis) have h1 := hcov (1:Axis) have h2 := hcov (2:Axis) have e0 : countAxis (0:Axis) w = 1 := by omega have e1 : countAxis (1:Axis) w = 1 := by omega have e2 : countAxis (2:Axis) w = 1 := by omega intro a have ha : a = 0 ∨ a = 1 ∨ a = 2 := by fin_cases a <;> decide rcases ha with rfl | rfl | rfl · exact e0 · exact e1 · exact e2A walk posts each axis exactly once if and only if it has length three and it posts every axis at least once. postsEachAxisOnce_iff_coverage_length_three · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.leanTHEOREM totalFlip_independent_of_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **The independence theorem.** No predicate that factors through the deposit normalization can be the total-flip predicate: the normalization is length-blind, but the total flip is not length-determined. Equivalently, the total flip is independent of every quantity that factors through `postingNorm ^ w.length` (the per-tick share, the off-field factor, the amplitude modulus). -/ theorem totalFlip_independent_of_normalization : ¬ ∃ Q : ℝ → Prop, ∀ w : Walk, TotalFlip w ↔ Q (postingNorm ^ w.length) := by rintro ⟨Q, hQ⟩ have h1 := hQ [(0:Axis),(1:Axis),(2:Axis)] have h2 := hQ [(0:Axis),(0:Axis),(0:Axis)] have hsame : postingNorm ^ [(0:Axis),(1:Axis),(2:Axis)].length = postingNorm ^ [(0:Axis),(0:Axis),(0:Axis)].length := postingNorm_pow_eq_of_length rfl rw [hsame] at h1 exact not_totalFlip_xxx (h2.mpr (h1.mp totalFlip_xyz))The normalization, a number attached to the walk's length, cannot distinguish a total flip from a walk that stays on one axis. totalFlip_independent_of_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.leanTHEOREM coverage_not_forced_by_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- **Coverage is independent of the normalization.** The walk `x x x` has the length-3 normalization `creationDepositNorm` but is not full-dimension. So the coverage principle is genuinely additional, not a consequence of the deposit law. -/ theorem coverage_not_forced_by_normalization : [(0:Axis),(0:Axis),(0:Axis)].length = 3 ∧ postingNorm ^ [(0:Axis),(0:Axis),(0:Axis)].length = creationDepositNorm ∧ ¬ FullDimensionCoverage [(0:Axis),(0:Axis),(0:Axis)] := by have hlen : [(0:Axis),(0:Axis),(0:Axis)].length = 3 := rfl refine ⟨hlen, ?_, ?_⟩ · rw [hlen, creationDepositNorm_eq_pow] · intro h have h1 := h (1:Axis) have hcount : countAxis (1:Axis) [(0:Axis),(0:Axis),(0:Axis)] = 0 := by decide omegaCoverage is not forced by the normalization. coverage_not_forced_by_normalization · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.leanTHEOREM seedSettlementWalk_not_totalFlip · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- The realized seed's settlement is not a total flip: it posts axes `0` and `1` and never axis `2`. -/ theorem seedSettlementWalk_not_totalFlip : ¬ TotalFlip seedSettlementWalk := by rw [seedSettlementWalk_eq] intro h have h2 := h (2:Axis) have hf : flipBits [(0:Axis), (1:Axis)] (2:Axis) = false := by decide rw [hf] at h2 exact Bool.false_ne_true h2The realized seed settlement walk is [0,1], which misses axis 2. seedSettlementWalk_not_totalFlip · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.leanTHEOREM octaveWalk_isClosed · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean
/-- The realized octave is a CLOSED walk: every axis count is even (`4, 2, 2`). This is the walk-form of the banked settlement law that the octave returns to its initial parity at tick eight. -/ theorem octaveWalk_isClosed : IsClosed octaveWalk := by rw [octaveWalk_eq] intro a fin_cases a · exact ⟨2, by decide⟩ · exact ⟨1, by decide⟩ · exact ⟨1, by decide⟩The full eight-tick octave is closed, with every axis count even. octaveWalk_isClosed · IndisputableMonolith/Masses/MassGenesis/T10TotalFlipGenesisWall.lean