pith. machine review for the scientific record. sign in
def definition def or abbrev high

vertex_edge_slots

show as:
view Lean formalization →

The definition sets the total vertex-edge incidence slots in a 3-cube to twice the hypercube edge count. CKM and PMNS mixing derivations cite this integer to obtain the factor 24 that fixes V_cb as 1/24 and links V_ub to fine-structure leakage. The definition is a direct one-line application of the upstream cube_edges formula at dimension 3.

claimLet $S$ denote the total number of vertex-edge incidence slots in the 3-cube. Then $S = 2d2^{d-1}$ evaluated at $d=3$, which equals 24.

background

The module supplies the geometric foundation for mixing matrices by imposing cubic voxel topology constraints on the CKM and PMNS parameters. The upstream cube_edges(d) counts the edges of a d-dimensional hypercube via the formula d * 2^(d-1). For d=3 this produces 12 edges; doubling yields the incidence slots because each edge meets two vertices.

proof idea

One-line definition that applies cube_edges to dimension 3 and multiplies the result by 2.

why it matters in Recognition Science

The count supplies the denominator 24 used in downstream theorems that set V_cb_pred = 1/vertex_edge_slots and V_ub_pred = fine_structure_leakage. It thereby anchors the Recognition Science claim that cubic topology forces the observed mixing angles and the Cabibbo correction coefficient. The construction sits inside the D=3 step of the forcing chain and the RCL-derived geometry for particle generations.

scope and limits

Lean usage

have hslots : (vertex_edge_slots : ℝ) = 24 := by unfold vertex_edge_slots cube_edges; norm_num

formal statement (Lean)

  20def vertex_edge_slots : ℕ := 2 * cube_edges 3

proof body

Definition body.

  21

used by (5)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (1)

Lean names referenced from this declaration's body.