Created: 2025-05-24
What: Sequential coupling of 4 spins using existing T66 capability Result: Valid quantum state, but fixed coupling order ((j1⊗j2)⊗j3)⊗j4 Limitation: Cannot transform between coupling schemes
interface BasicTetrahedron {
edgeSpins: number[]; // [j1, j2, j3, j4]
coupledState: StateVector; // Final result
totalJ: number; // Effective angular momentum
}
What: Full intertwiner space with recoupling transformations Result: All possible tetrahedron states, proper geometric symmetries Requirement: 6j symbols for transforming between coupling schemes
interface CompleteTetrahedron extends BasicTetrahedron {
intertwiners: number[]; // All allowed J values
basisStates: StateVector[]; // Complete orthogonal basis
recouplingTransforms: Matrix[]; // 6j-based transformations
}
Research shows 6j symbols are "the basic building block" for quantum tetrahedra because:
T67 can start now with basic construction. Complete tetrahedron needs 6j symbols for mathematical rigor and physical accuracy.