Function Repository Resource:

MultiwayMonoid

Source Notebook

Simulate an arbitrary (potentially commutative) monoid as a multiway system

Contributed by: Jonathan Gorard

ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity"id|>]

compiles the monoid with the specified generators, relations and identity element into a specification of a multiway system.

ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity"id|>,n]

generates the results of n steps in the evolution of the multiway monoid with the specified generators, relations and identity element.

ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity"id|>,n,"prop"]

gives the property "prop" for the specified multiway monoid evolution.

ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity"id|>sel,]

uses the function sel to select which of the events obtained at each step to include in the evolution.

ResourceFunction["MultiwayMonoid"][gen,]

specifies the free monoid with generators gen and default identity element "e".

ResourceFunction["MultiwayMonoid"][gen,rel,]

specifies the monoid with generators gen, relations rel and default identity element "e".

ResourceFunction["MultiwayMonoid"][gen,rel,id,]

specifies the monoid with generators gen, relations rel and identity element id.

Details and Options

Argument and option patterns for ResourceFunction["MultiwayMonoid"] largely match those of the resource function MultiwaySystem.
Rules are specified as associations of monoid generators, relations and the identity element; states are specified as words in the corresponding monoid.
In monoid presentation theory, the generators are the elements of the monoid in terms of which all other elements can be expressed as products of powers, the relations are the defining equations of the monoid and the identity element is the element that leaves all other elements unchanged when applied.
Generators and the identity element should be specified as characters, with relations being two-way rules on strings.
The event selection function sel in ResourceFunction["MultiwayMonoid"][rulessel,] can be any function; additionally, it can have the following special forms:
"Sequential"applies the first possible replacement (sequential substitution system)
"Random"applies a random replacement
{"Random",n}applies n randomly chosen replacements
ResourceFunction["MultiwayMonoid"][gen,] is interpreted as ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"{},"Identity""e"|>,] (i.e. the free monoid with default identity element "e").
ResourceFunction["MultiwayMonoid"][gen,rel,] is interpreted as ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity""e"|>,] (i.e. a monoid with default identity element "e").
ResourceFunction["MultiwayMonoid"][gen,rel,id,] is interpreted as ResourceFunction["MultiwayMonoid"][<|"Generators"gen,"Relations"rel,"Identity"id|>,].
In ResourceFunction["MultiwayMonoid"][rules,n,prop], the following properties can be requested:
"AllStatesList"the list of all states generated at each successive step (default)
"StatesCountsList"the number of distinct states generated at each successive step
"AllStatesListUnmerged"the list of all states without any merging
"PredecessorRulesList"the list of states and their corresponding predecessor states at each successive step
"EvolutionGraph"graph formed by the evolution process, with no merging between different time steps
"EvolutionGraphStructure"evolution graph without labeling
"EvolutionGraphFull"graph formed by the evolution process, including equivalent events
"EvolutionGraphFullStructure"full evolution graph without labeling
"EvolutionGraphUnmerged"graph formed by the evolution process, with no merging of equivalent states
"EvolutionGraphUnmergedStructure"unmerged evolution graph without labeling
"EvolutionGraphWeighted"graph formed by the evolution process, with edges weighted by event multiplicity
"EvolutionGraphWeightedStructure"weighted evolution graph without labeling
"StatesGraph"graph of how each distinct state leads to other states
"StatesGraphStructure"states graph without labeling
"AllEventsList"the list of all events that occur at each successive step
"EvolutionEventsGraph"graph showing the evolution process with updating events explicitly included
"EvolutionEventsGraphStructure"evolution events graph without labeling
"CausalGraph"graph of causal relationships between updating events
"CausalGraphStructure"causal graph without labeling
"EvolutionCausalGraph"combined graph of evolution process and causal relationships between events
"EvolutionCausalGraphStructure"evolution causal graph without labeling
"CausalGraphInstances"list of distinct causal graphs for all possible choices of event sequences
"CausalGraphStructureInstances"causal graph instances without labeling
"EvolutionCausalGraphInstances"list of distinct evolution causal graphs for all possible choices of event sequences
"EvolutionCausalGraphStructureInstances"evolution causal graph instances without labeling
"BranchPairsList"list of all branch pairs (i.e. critical pairs) generated in the states graph
"NewBranchPairsList"list of all new branch pairs generated at each successive step
"EvolutionBranchPairsList"list of all branch pairs generated in the evolution graph
"NewEvolutionBranchPairsList"list of all new evolution branch pairs generated at each successive step
"BranchPairEventsList"list of all events yielding branch pairs
"NewBranchPairEventsList"list of all events yielding new branch pairs at each successive step
"EvolutionBranchPairEventsList"list of all events yielding evolution branch pairs
"NewEvolutionBranchPairEventsList"list of all events yielding new evolution branch pairs at each successive step
"BranchialGraph"graph of branch pair ancestry at a given step
"BranchialGraphStructure"branchial graph without labeling
"AllStatesBranchialGraph"graph of branch pair ancestry across all steps
"AllStatesBranchialGraphStructure"all states branchial graph without labeling
"EvolutionBranchialGraph"graph of evolution branch pair ancestry at a given step
"EvolutionBranchialGraphStructure"evolution branchial graph without labeling
"AllStatesEvolutionBranchialGraph"graph of evolution branch pair ancestry across all steps
"AllStatesEvolutionBranchialGraphStructure"all states evolution branchial graph without labeling
"EventBranchialGraph"graph of branch pair event ancestry at a given step
"EventBranchialGraphStructure"event branchial graph without labeling
"AllEventsBranchialGraph"graph of branch pair event ancestry across all steps
"AllEventsBranchialGraphStructure"all events branchial graph without labeling
"BranchPairResolutionsList"association of all resolved and unresolved branch pairs up to a given step
"EvolutionBranchPairResolutionsList"association of all resolved and unresolved evolution branch pairs up to a given step
"CausalInvariantQ"whether the system is causal invariant (all branch pairs converge)
"EvolutionCausalInvariantQ"whether the system is evolution causal invariant (all evolution branch pairs converge)
"KnuthBendixCompletion"list of Knuth–Bendix completion rules required to force causal invariance
"EvolutionKnuthBendixCompletion"list of Knuth–Bendix completion rules required to force evolution causal invariance
"StateWeights"list of weights for all vertices in the states graph
Except for "AllStatesListUnmerged", "EvolutionGraphUnmerged" and states containing state IDs, identical states are always merged at each step.
In "StatesGraph", all instances of a given state at any step are merged. Different updating events that connect the same states will only be shown as separate edges if "IncludeEventInstances" is set to True.
Events are represented in the form {rule,input,rest}, where rule is the rule used in the updating event, input is the part of the state to which the rule is applied and rest is the remainder of the state. For substitution systems, rest is given in the form {prefix,suffix}.
Options for ResourceFunction["MultiwayMonoid"] include:
"Commutative"Falsewhether the monoid is commutative
"StyleEdges"Truewhether to style edges according to generators, relations, identity and commutativity
"AppendOnly"Falsewhether to apply generators only to the end of the word
"IncludeStepNumber"Falsewhether to label states and events with their respective step numbers
"IncludeStateID"Falsewhether to label states and events with unique IDs
"IncludeInitializationEvents"Falsewhether to include pseudoevents that set up initial conditions
"IncludeEventInstances"Falsewhether to show distinct updating events that connect the same states as separate edges
"IncludeStateWeights"Falsewhether to weight state vertices by their rate of occurrence at a particular time step
"IncludeStatePathWeights"Falsewhether to weight state vertices by the number of distinct evolution paths that lead to them
"StateRenderingFunction"Automatichow to label states that appear in graphs
"EventRenderingFunction"Automatichow to label events that appear in graphs
MaxItemsInfinityhow many instances of a causal graph or evolution causal graph to return
"GivePredecessors"Falsewhether to label branch pairs with their predecessor state
"GiveResolvents"Falsewhether to label branch pairs with their resolvent state
"IncludeSelfPairs"Falsewhether to include trivial branch pairs
"IncludeFullBranchialSpace"Falsewhether to show all possible states in a given branchial graph
"LineThickness"1absolute line thickness for graph edges
Possible settings for "StateRenderingFunction" and "EventRenderingFunction" include:
Inheriteduse the explicit vertex name as the label
Noneuse no label for the vertex
"shape"use a shape from the VertexShapeFunction collection
funcapply the function func to the name of the vertex
For "CausalGraphInstances" and "EvolutionCausalGraphInstances", the option MaxItemsn can be used to get only the first n possible instances of causal graphs.
By default, states graphs are styled using red edges to indicate the application of a generator, green edges to indicate the application of a relation, cyan edges to indicate the application of the identity element and blue edges to indicate the application of commutativity.

Examples

Basic Examples (18) 

Show basic monoid compilation (compiling monoids on one, two and three generators to MultiwaySystem rules):

In[1]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a"}, "Relations" -> {}, "Identity" -> "e"|>]
Out[1]=
In[2]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"abb" <-> "bba"}, "Identity" -> "e"|>]
Out[2]=
In[3]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {"abc" <-> "bca", "bca" <-> "cab"}, "Identity" -> "e"|>]
Out[3]=

When only the generators are specified, the free monoid with identity element "e" is assumed by default:

In[4]:=
ResourceFunction["MultiwayMonoid"][{"a", "b", "c"}]
Out[4]=
In[5]:=
ResourceFunction[
 "MultiwayMonoid"][{"a", "b", "c"}, {"abc" <-> "bca", "bca" <-> "cab"}]
Out[5]=
In[6]:=
ResourceFunction[
 "MultiwayMonoid"][{"a", "b", "c"}, {"abc" <-> "bca", "bca" <-> "cab"}, "x"]
Out[6]=

Generate a graph showing each state is obtained from the others for the free monoid on two generators:

In[7]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[7]=

Show the structure of the graph, without labels:

In[8]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraphStructure"]
Out[8]=

Generate the states graph for a non-free monoid on two generators:

In[9]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[9]=

Show the structure of the graph, without labels:

In[10]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraphStructure"]
Out[10]=

Generate the states graph for the free commutative monoid on 3 generators:

In[11]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraph", "Commutative" -> True]
Out[11]=

Compare to the free non-commutative monoid on 3 generators (default):

In[12]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraph", "Commutative" -> False]
Out[12]=

Generate the (reduced) states graph for a monoid on 3 generators, where generators are applied only to the end of the word:

In[13]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "StatesGraphStructure", "AppendOnly" -> True]
Out[13]=

Compare to the full states graph for the same monoid:

In[14]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "StatesGraphStructure", "AppendOnly" -> False]
Out[14]=

Generate a graph of the evolution history, with updating events included:

In[15]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph"]
Out[15]=

Show the structure of the graph, without labels:

In[16]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraphStructure"]
Out[16]=

Generate the causal graph, showing dependencies between updating events:

In[17]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "CausalGraph"]
Out[17]=

Show the structure of the graph, without labels:

In[18]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "CausalGraphStructure"]
Out[18]=

Generate the evolution events graph, with causal connections included:

In[19]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionCausalGraph"]
Out[19]=

Show the structure of the graph, without labels:

In[20]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionCausalGraphStructure"]
Out[20]=

Specify an event selection function that picks a random pair of events at each step:

In[21]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|> -> {"Random", 2}, 3, "StatesGraph", "StyleEdges" -> False]
Out[21]=

Generate causal graphs for all possible choices of event sequences:

In[22]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "CausalGraphInstances"]
Out[22]=

Show the structures of the graphs, without labels:

In[23]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "CausalGraphStructureInstances"]
Out[23]=

Generate the list of all branch pairs (i.e. critical pairs):

In[24]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairsList"]
Out[24]=

Generate the association showing which branch pairs converged and which did not:

In[25]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairResolutionsList"]
Out[25]=

Prove that the system is causal invariant:

In[26]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 4, "CausalInvariantQ"]
Out[26]=

Generate a graph showing branch pair ancestry:

In[27]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "BranchialGraph"]
Out[27]=

Show the structure of the graph, without labels:

In[28]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "BranchialGraphStructure"]
Out[28]=

Generate a graph showing branch pair event ancestry:

In[29]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "EventBranchialGraphStructure"]
Out[29]=

Prevent identical states from being merged by including step numbers and state IDs:

In[30]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[30]=
In[31]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllStatesList", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[31]=

Generate a graph of full evolution history, with all events included:

In[32]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphFull"]
Out[32]=

Show the structure of the graph, without labels:

In[33]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphFullStructure"]
Out[33]=

Generate a graph of full evolution history, with no merging of equivalent states:

In[34]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphUnmerged", "StyleEdges" -> False]
Out[34]=

Show the structure of the graph, without labels:

In[35]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphUnmergedStructure", "StyleEdges" -> False]
Out[35]=

Generate a graph of evolution history, with edges weighted by event multiplicity:

In[36]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphWeighted", EdgeLabels -> "EdgeWeight"]
Out[36]=

Show the structure of the graph, without labels:

In[37]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionGraphWeightedStructure", EdgeLabels -> "EdgeWeight"]
Out[37]=

Generate a states graph with vertices weighted by their rate of occurrence on each time step:

In[38]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStateWeights" -> True, VertexLabels -> "VertexWeight"]
Out[38]=

Show the structure of the graph, without labels:

In[39]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraphStructure", "IncludeStateWeights" -> True, VertexLabels -> "VertexWeight"]
Out[39]=

Generate a states graph with vertices weighted by the number of distinct evolution paths that lead to them:

In[40]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStatePathWeights" -> True, VertexLabels -> "VertexWeight"]
Out[40]=

Show the structure of the graph, without labels:

In[41]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraphStructure", "IncludeStatePathWeights" -> True, VertexLabels -> "VertexWeight"]
Out[41]=

Scope (4) 

Generators, relations and identity (1) 

MultiwayMonoid accepts both partial and full (association) specifications of monoids in terms of generators, relations and identity element:

In[42]:=
ResourceFunction["MultiwayMonoid"][{"a", "b"}, 2, "StatesGraph"]
Out[42]=
In[43]:=
ResourceFunction[
 "MultiwayMonoid"][{"a", "b"}, {"aa" <-> "bb"}, 2, "StatesGraph"]
Out[43]=
In[44]:=
ResourceFunction[
 "MultiwayMonoid"][{"a", "b"}, {"aa" <-> "bb"}, "i", 2, "StatesGraph"]
Out[44]=
In[45]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "i"|>, 2, "StatesGraph"]
Out[45]=

Commutativity (1) 

MultiwayMonoid can handle both commutative and non-commutative (default) monoids:

In[46]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 3, "StatesGraph", "Commutative" -> True]
Out[46]=
In[47]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 3, "StatesGraph", "Commutative" -> False]
Out[47]=

Event selection functions (2) 

Apply only the first possible event at each step:

In[48]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|> -> "Sequential", 3, "StatesGraph", "StyleEdges" -> False]
Out[48]=

Apply the first and last possible events at each step:

In[49]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|> -> ({First[#], Last[#]} &), 3, "StatesGraph", "StyleEdges" -> False]
Out[49]=

Options (31) 

Commutativity (2) 

By default, monoids are non-commutative:

In[50]:=
monoid = ResourceFunction[
  "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[50]=
In[51]:=
FindShortestPath[monoid, "ab", "ba"]
Out[51]=

Make the monoid commutative:

In[52]:=
monoid2 = ResourceFunction[
  "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "Commutative" -> True]
Out[52]=
In[53]:=
FindShortestPath[monoid2, "ab", "ba"]
Out[53]=

Append only (2) 

By default, MultiwayMonoid evolves by applying generators at all possible places within a word:

In[54]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {"ab" <-> "bc", "bc" <-> "ca"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[54]=

Apply generators only at the end of the word:

In[55]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {"ab" <-> "bc", "bc" <-> "ca"}, "Identity" -> "e"|>, 2, "StatesGraph", "AppendOnly" -> True]
Out[55]=

Edge styling (2) 

By default, edges are styled in red if they correspond to the application of a generator, green if they correspond to the application of a relation, cyan if they correspond to the application of the identity element and blue if they correspond to the application of commutativity:

In[56]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {"ab" <-> "bc", "bc" <-> "ca"}, "Identity" -> "e"|>, 2, "StatesGraph", "Commutative" -> True]
Out[56]=

Use no styling for edges:

In[57]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b", "c"}, "Relations" -> {"ab" <-> "bc", "bc" <-> "ca"}, "Identity" -> "e"|>, 2, "StatesGraph", "Commutative" -> True, "StyleEdges" -> False]
Out[57]=

State node rendering (5) 

By default, states are labeled by their contents:

In[58]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[58]=

Use no labeling for states:

In[59]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "StateRenderingFunction" -> None]
Out[59]=

"StatesGraphStructure" yields the same result:

In[60]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraphStructure"]
Out[60]=

Use raw state names as node labels:

In[61]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "StateRenderingFunction" -> Inherited]
Out[61]=

Use a named shape as each state label:

In[62]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "StateRenderingFunction" -> "Square"]
Out[62]=

Event node rendering (4) 

By default, both states and events are labeled by their contents:

In[63]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph"]
Out[63]=

Use no labels for states or events:

In[64]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph", "StateRenderingFunction" -> None, "EventRenderingFunction" -> None]
Out[64]=

"EvolutionEventsGraphStructure" yields an equivalent result:

In[65]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraphStructure"]
Out[65]=

Use raw event expressions as their labels:

In[66]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph", "StateRenderingFunction" -> None, "EventRenderingFunction" -> Inherited]
Out[66]=

Initialization events (2) 

By default, "AllEventsList" does not include initialization events:

In[67]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllEventsList"]
Out[67]=

The option "IncludeInitializationEvents" allows one to override this default:

In[68]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllEventsList", "IncludeInitializationEvents" -> True]
Out[68]=

Initialization events have special default rendering:

In[69]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph", "IncludeInitializationEvents" -> True]
Out[69]=

Graph layout options (2) 

Place arrows in the middle of edges:

In[70]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", EdgeShapeFunction -> GraphElementData["ShortFilledArrow", "ArrowSize" -> 0.03]]
Out[70]=

Generate an example of a (free) multiway monoid:

In[71]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[71]=

Force the initial state nodes to be at the top:

In[72]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {}, "Identity" -> "e"|>, 2, "StatesGraph", GraphLayout -> {"LayeredDigraphEmbedding", "RootVertex" -> {"a", "b", "e"}}]
Out[72]=

Step numbers and state IDs (2) 

By default, equivalent states are merged across all time steps:

In[73]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[73]=
In[74]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllStatesList"]
Out[74]=

Merging of equivalent states across different time steps can be prevented by including step numbers:

In[75]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStepNumber" -> True]
Out[75]=

List the states:

In[76]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllStatesList", "IncludeStepNumber" -> True]
Out[76]=

Merging of equivalent states at the same time step can be prevented by also including state IDs:

In[77]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[77]=

List the states:

In[78]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllStatesList", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[78]=

Step numbers and state IDs also apply to events:

In[79]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "EvolutionEventsGraph", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[79]=

See the events:

In[80]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "AllEventsList", "IncludeStepNumber" -> True, "IncludeStateID" -> True]
Out[80]=

Event instances (2) 

By default, multiple instances of equivalent updating events are merged in the states graph:

In[81]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph"]
Out[81]=

Merging of equivalent events can be prevented by including event instances:

In[82]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeEventInstances" -> True]
Out[82]=

State (path) weights (2) 

Vertices of a states graph can be weighted by their relative rate of occurrence at each time step:

In[83]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStateWeights" -> True, VertexLabels -> "VertexWeight"]
Out[83]=

Vertices can also be weighted by the number of distinct evolution paths that lead to them:

In[84]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "StatesGraph", "IncludeStatePathWeights" -> True, VertexLabels -> "VertexWeight"]
Out[84]=

MaxItems (2) 

By default, "CausalGraphInstances" returns all possible causal graphs:

In[85]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "CausalGraphInstances"]
Out[85]=

The number of causal graphs can be limited using MaxItems:

In[86]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "CausalGraphInstances", MaxItems -> 5]
Out[86]=

Predecessors and resolvents (2) 

By default, "BranchPairsList" returns only a list of branch pairs:

In[87]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairsList"]
Out[87]=

Common predecessor states can be shown using "GivePredecessors":

In[88]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairsList", "GivePredecessors" -> True]
Out[88]=

Similarly, "BranchPairResolutionsList" by default lists only resolved and unresolved branch pairs:

In[89]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairResolutionsList"]
Out[89]=

Common resolvents of resolved branch pairs can be shown using "GiveResolvents":

In[90]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairResolutionsList", "GiveResolvents" -> True]
Out[90]=

Show both common predecessors and common resolvents, where appropriate:

In[91]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 2, "BranchPairResolutionsList", "GivePredecessors" -> True, "GiveResolvents" -> True]
Out[91]=

Full branchial space (2) 

By default, non-branch pair states are not shown as part of the branchial graph:

In[92]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "BranchialGraph"]
Out[92]=

They can be shown using "IncludeFullBranchialSpace":

In[93]:=
ResourceFunction[
 "MultiwayMonoid"][<|"Generators" -> {"a", "b"}, "Relations" -> {"aa" <-> "bb"}, "Identity" -> "e"|>, 3, "BranchialGraph", "IncludeFullBranchialSpace" -> True]
Out[93]=

Publisher

Jonathan Gorard

Version History

  • 1.0.0 – 02 September 2020

Source Metadata

Related Resources

License Information