A Class of Models with the Potential to Represent Fundamental Physics
  1. Introduction
  2. Basic Form of Models
  3. Typical Behaviors
  4. Limiting Behavior and Emergent Geometry
  5. The Updating Process for String Substitution Systems
  6. The Updating Process in Our Models
  7. Equivalence and Computation in Our Models
  8. Potential Relation to Physics
  9. Additional Material
  10. References
  11. Index

3.15 Termination

Not all rules continue to evolve forever from a given initial state. Instead they can reach a fixed point where the rule no longer applies. If the rule depends only on a single relation, this can only happen at the very first step. But if the rule depends on multiple relations, it can happen after multiple steps. Among the 4702 rules with signature 22 32, 1788 rules eventually reach a fixed point starting from a self-loop initial condition, at least using our standard updating order. Their “halting time” decreases roughly exponentially, with the maximum being 7 steps, achieved by the rule:

{{x, y}, {z, y}} -> {{y, u}, {u, x}, {v, z}}
Framed[ResourceFunction["WolframModelPlot"][#, "MaxImageSize" -> 65], FrameStyle -> LightGray] & /@ ResourceFunction[ "WolframModel"][{{x, y}, {z, y}} -> {{y, u}, {u, x}, {v, z}}, {{0, 0}, {0, 0}}, 10, "StatesList"]

The longest halting time for which connectedness is maintained is 3 steps, achieved for example by:

{{x, y}, {y, z}} -> {{y, z}, {y, u}, {v, z}}
ResourceFunction["WolframModelPlot"][#, "MaxImageSize" -> 100] & /@ ResourceFunction[ "WolframModel"][{{x, y}, {y, z}} -> {{y, z}, {y, u}, {v, z}} , {{0, 0}, {0, 0}}, 10, "StatesList"]

Among the 40,405 22 42 rules, 10,480 evolve to fixed points starting from self-loops. The maximum halting time is 13 steps; the maximum maintaining connectedness is 6 steps, achieved by:

{{x, x}, {y, x}} -> {{y, y}, {y, z}, {z, x}, {w, z}}
(ResourceFunction["WolframModelPlot"][#, "MaxImageSize" -> 80] & /@ ResourceFunction[ "WolframModel"][ {{x, x}, {y, x}} -> {{y, y}, {y, z}, {z, x}, {w, z}}, {{0, 0}, {0, 0}}, 10, "StatesList"])

Among the 353,462 22 52 rules, 67,817 (or about 19%) evolve to fixed points. The maximum halting time is 24 steps; the maximum maintaining connectedness is 10 steps, achieved for example by:

{{x, x}, {y, x}} -> {{y, y}, {y, z}, {y, z}, {z, x}, {w, z}}
ResourceFunction["WolframModelPlot"][#, "MaxImageSize" -> 80] & /@ ResourceFunction[ "WolframModel"][ {{x, x}, {y, x}} -> {{y, y}, {y, z}, {y, z}, {z, x}, {w, z}}, {{0, 0}, {0, 0}}, 15, "StatesList"]

Among 23 33 rules

{{x, y, z}, {x, u, v}} -> {{y, x, w}, {w, u, s}, {v, z, u}}

has halting time 20:

ResourceFunction["WolframModelPlot"][#, "MaxImageSize" -> 80] & /@ ResourceFunction[ "WolframModel"][ {{x, y, z}, {x, u, v}} -> {{y, x, w}, {w, u, s}, {v, z, u}}, {{0, 0, 0}, {0, 0, 0}}, 25, "StatesList"]