Encyclopedia Gravity Gravity Analysis Regge Bloch Star Edge Origins4 D Seed Edge Contribs T12 Length
ARTICLE 3 claims 2 theorems 1 model
Gravity Analysis Regge Bloch Star Edge Origins4 D Seed Edge Contribs T12 Length
A machine-checked theorem counts the building blocks of a gravity calculation, and the count is 22.
The t12 seed list
In the Recognition Science framework's gravity analysis, a seed edge contribution is a small record that packs three pieces of data: a class index (a label from a finite set of 15), a real-numbered weight, and an origin, which is a four-component wave vector. The declaration seedEdgeContribs_t12 is a definition: it lists these contribution records for one particular orbit seed, called t12. The theorem seedEdgeContribs_t12_length proves that this list has exactly 22 entries. The proof is by direct computation, and the result is checked by the machine, so the count of 22 is not an estimate or a numerical accident; it is a proved fact about the definition as written.
The list is not an isolated curiosity. It feeds a larger construction: the framework transports each seed contribution's origin by a covering permutation, applies a phase, and sums over the list to build a position-resolved deficit term for the t12 orbit. The length theorem matters because the sum's behavior, and the later proof that the whole expression scales linearly when the matrix is multiplied by a constant, depends on the list being finite and on its exact size. The companion definitions for other orbit seeds have their own counts: t13 has 24 entries, t22 has 32, and t11 contributes none. The t12 count of 22 is one concrete datum in that table.
What the theorem does not claim is just as important. It does not say that the t12 list is complete, that the weights or origins are physically correct, or that the sum over the list produces a number that matches any measurement. It does not assert that the t12 orbit is special or that the count 22 has any meaning beyond being the length of this particular list. The theorem only certifies the arithmetic: the list has 22 entries, and that is all. The status record for the whole fold repair confirms that the tables landed and that a forbidden base0 half-repair is not used, but it does not certify any physics.
The practical upshot is a small but solid brick in a larger wall. Any reader who wants to know whether the t12 seed list has the right shape for the framework's gravity machinery can now rely on a machine-checked count. The length is not a claim about the universe; it is a claim about a definition, and it is exactly as strong as that.
THEOREM seedEdgeContribs_t12_length · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
theorem seedEdgeContribs_t12_length :
seedEdgeContribs_t12.length = 22 := rfl
MODEL SeedEdgeContrib · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
/-- One seed-frame star edge contribution: class index, weight, origin. -/
structure SeedEdgeContrib where
cls : Fin 15
weight : ℝ
origin : Wave4
THEOREM seedEdgeContribs_t13_length · seedEdgeContribs_t22_length · seedEdgeContribs · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
theorem seedEdgeContribs_t13_length :
seedEdgeContribs_t13.length = 24 := rfl
theorem seedEdgeContribs_t22_length :
seedEdgeContribs_t22.length = 32 := rfl
def seedEdgeContribs : HingeOrbitType → List SeedEdgeContrib
| .t11 => []
| .t12 => seedEdgeContribs_t12
| .t21 => seedEdgeContribs_t21
| .t13 => seedEdgeContribs_t13
| .t31 => seedEdgeContribs_t31
| .t22 => seedEdgeContribs_t22
What this page does not claim
The t12 seed list is complete or physically correct. The count 22 has any special significance beyond being the list length. The theorem certifies any measurement or physical prediction.
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/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.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 quantity does the sum over the t12 seed list ultimately compute?
- How were the weights and origins for the t12 seed list chosen?
- What distinguishes the t12 orbit seed from the t13 and t22 seeds?
- What does the forbidden base0 half-repair refer to and why is it forbidden?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM seedEdgeContribs_t12_length · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
theorem seedEdgeContribs_t12_length : seedEdgeContribs_t12.length = 22 := rflThe theorem seedEdgeContribs_t12_length proves that this list has exactly 22 entries. seedEdgeContribs_t12_length · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.leanMODEL SeedEdgeContrib · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
/-- One seed-frame star edge contribution: class index, weight, origin. -/ structure SeedEdgeContrib where cls : Fin 15 weight : ℝ origin : Wave4A seed edge contribution is a small record that packs three pieces of data: a class index, a real-numbered weight, and an origin, which is a four-component wave vector. SeedEdgeContrib · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.leanTHEOREM seedEdgeContribs_t13_length · seedEdgeContribs_t22_length · seedEdgeContribs · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean
theorem seedEdgeContribs_t13_length : seedEdgeContribs_t13.length = 24 := rfltheorem seedEdgeContribs_t22_length : seedEdgeContribs_t22.length = 32 := rfldef seedEdgeContribs : HingeOrbitType → List SeedEdgeContrib | .t11 => [] | .t12 => seedEdgeContribs_t12 | .t21 => seedEdgeContribs_t21 | .t13 => seedEdgeContribs_t13 | .t31 => seedEdgeContribs_t31 | .t22 => seedEdgeContribs_t22The companion definitions for other orbit seeds have their own counts: t13 has 24 entries, t22 has 32, and t11 contributes none. seedEdgeContribs_t13_length · seedEdgeContribs_t22_length · seedEdgeContribs · IndisputableMonolith/Gravity/Analysis/ReggeBlochStarEdgeOrigins4D.lean