Cycle¶
Core Idea¶
A closed path through a network that returns to its starting point without repeating any other element. From the closure three consequences travel together: closure permits return (feedback, lock-in), forecloses ordering (no topological sort), and creates a loop invariant (a quantity conserved around the loop).
How would you explain it like I'm…
Back To Start
The Closed Loop
Closure Permits Return
Broad Use¶
- Graph theory: Hamiltonian cycles, Eulerian circuits, the cycle space, and girth are foundational cycle objects.
- Systems and control: every feedback loop is a cycle; a positive cycle amplifies, a negative one counters.
- Computer science: cycle detection identifies deadlocks, infinite recursion, and circular imports that break topological ordering.
- Economics and biology: business, debt, predator–prey, circadian, and life cycles, each a closed loop of state-change.
- Hermeneutics: the hermeneutic circle — interpreting the whole requires interpreting the parts and vice versa — navigated by spiralling iteration.
- Algebra and topology: cycles in chain complexes found homology, with cycles-modulo-boundaries measuring topological holes.
Clarity¶
Separates the structural fact (cycle) from the ethical decoration (vicious or virtuous) and the dynamical detail (limit cycle, oscillation), and disambiguates a cycle in a state space from a cycle in a dependency graph.
Manages Complexity¶
Compresses an arbitrarily complex feedback web into one object whose presence determines orderability, stability, conservation, and lock-in — reasoning reduces from "trace every interaction" to "list the cycles and characterize each."
Abstract Reasoning¶
Supports reusable templates: acyclicity equals orderability, the sign of a cycle (product of edge signs predicts amplify vs. stabilize), loop integrals and conservation, and cycles versus boundaries (homology).
Knowledge Transfer¶
- Across systems: the cycle-inventory diagnostic ports from ecology (predator–prey) to macroeconomics (debt) to climate (carbon).
- Acyclicity as discipline: forbidding circular module dependencies ports to no-circular-reporting, DAG causal models, no-circular-reasoning.
- Cycle-breaking: "break the cycle, dampen the loop gain, decouple the variables" transfers from systems dynamics to debt restructuring to inflammatory disease.
Example¶
A build dependency graph with A→B, B→C, C→A admits no topological sort — there is no first or last among them — so the build system cannot order compilation, and removing any single edge (sever C→A) restores a sortable chain.
Relationships to Other Primes¶
Parents (1) — more general patterns this builds on
- Cycle presupposes Network — A cycle is a closed path in a relational network; it presupposes a graph of elements and directed-or-undirected relations. The file's signature opens with 'the network of elements and relations.'
Path to root: Cycle → Network → Reservoir-Flux Network
Not to Be Confused With¶
- Cycle is not Feedback because a cycle is the closed path in a graph that makes return possible (defined even if nothing flows), whereas feedback is the dynamic process of routing output back, with gain and delay.
- Cycle is not Recurrence because a cycle is structural closure of a path (which may sit dormant), whereas recurrence is repeated return to a state over time; a circular import deadlocks without anything recurring.
- Cycle is not Oscillation because a cycle in a dependency graph produces no motion at all, whereas oscillation is sustained back-and-forth motion in a state variable.