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

5.7 Events and Their Causal Relationships

So far the nodes in our graphs have always been states generated by substitution systems. But we can also introduce nodes to represent the “updating events” associated with replacements performed on strings. Here is the result for evolution according to the rule {AB BAB, BA A} starting from ABAwith each event node indicating the string replacement to which it corresponds:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "EvolutionEventsGraph", "IncludeInitializationEvents" -> False, "IncludeStepNumber" -> True], GraphLayout -> {"LayeredDigraphEmbedding"}]

We can also show this as a states graph, where we have merged instances of the same state that occur at different steps:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "EvolutionEventsGraph"], GraphLayout -> {"LayeredDigraphEmbedding", "RootVertex" -> "ABA"}]

States are connected through events. But how are events connected? Given two events the key question to ask is whether they are causally related. Does one event depend on the otherin the sense that all or part of its input comes from the output of the other event?

Looking at the graph above, for example, the event  depends on  because  uses as input the A that arises as output from  . On the other hand,  does not depend on  because the BA it consumes was not generated by  .

We can add this dependency information to the evolution graph by putting orange lines between events that are causally related:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "EvolutionCausalGraph", "IncludeInitializationEvents" -> False, "IncludeStepNumber" -> True], GraphLayout -> {"LayeredDigraphEmbedding"}]

We can also do this in the states graph, in which we have merged instances of states from different steps:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "EvolutionCausalGraph", "IncludeInitializationEvents" -> False], GraphLayout -> {"LayeredDigraphEmbedding", "RootVertex" -> "ABA"}]

We can redraw this graph without the layering that puts the initial state at the top. We have added an “initialization event”  to indicate the creation of the initial condition:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "EvolutionCausalGraph", "IncludeInitializationEvents" -> True]]

If we want to focus on causal relationships, we can now drop the state nodes altogether, and get a multiway causal graph that represents possible causal relationships between events:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "CausalGraph"]]

This causal graph is dual to our original evolution graph in the sense that edges in the original evolution graph correspond to eventswhich now become nodes in the causal graph. Similarly, each edge in the causal graph is associated with some state which appears as a node in the evolution graph.

We can get a sense of “possible causal histories” of our system by arranging the multiway causal graph in layers:

GraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 4, "CausalGraph", "IncludeInitializationEvents" -> False], GraphLayout -> {"LayeredDigraphEmbedding"}]

Just like every possible path through the multiway evolution graph gives a possible sequence of states that can occur in the evolution of a system, so also every possible path through the multiway causal graph gives a possible sequence of events that can occur in the evolution of the system.

After 10 steps, the graph in our example has become quite complicated:

LayeredGraphPlot[ ResourceFunction["MultiwaySystem"][{"AB" -> "BAB", "BA" -> "A"}, "ABA", 10, "CausalGraphStructure"]]