
The Mod-8 Collatz State Machine
This diagram shows all the valid state transitions along an odd-Collatz path in one easy to read diagram.
Every structural count in the mod-8 state machine is a multiple of 3:
- In-degree 3: every state has exactly 3 inbound edges (including self-loops) one from each of its three mod-24 representatives.
- 3 self-loops: states 7, 1, and 5 each have a self-transition; state 3 does not.
- 3 bidirectional transitions: 3↔1, 3↔5, and 1↔5.
- 3 unidirectional transitions: 7→3, 1→7, and 5→7.
State 3 is the sole exception to self-referentiality: it is a pure funnel, with no self-loop and no outgoing back-links, only receiving from 7 and forwarding to {1, 5}.
(The irony, of course, is that there are 4 of these degree-3 structural counts, not 3 - off-by-one errors, huh?)