Colored Merge and realization #
The bridge from the theta bud system to the syntactic-object carrier
([ML25]'s reinterpretation of theta filtering as colored
structure formation). The compatibility relation on a colored binary
Merge — the root and children colors form a generator — is ThetaLocal,
and the colored Merge of derivable structures under a compatible root is
derivable (derives_node_of_thetaLocal, via the bottom-up
Bud.System.Derives.node): structure building through colored Merge
stays within the theta-lawful language. realize prunes the colors,
sending a colored tree to the SyntacticObject it builds — lexically
anchored leaves become lexical leaves, binary nodes become bare Merge
nodes, and the empty-tree marker is the magma unit, so a movement landing
site realizes to its host unchanged (realize_node_emptyTree_right).
Main declarations #
derives_node_of_thetaLocal— colored Merge closure: joining derivable structures under a generator-compatible root color is derivable.realize— pruning to theSyntacticObjectcarrier,noneplaying the magma unit; intended on trees with terminal inputs, wherenonearises only from the empty-tree marker.realize_node_emptyTree_right— the unit lawM(T, 1) = T: movement landing sites leave no mark on the realized object.realize_isSome— a tree with a lexically anchored input realizes.
Colored Merge closure: joining two derivable structures under a root color that forms a generator with their output colors is derivable. Structure building by compatible colored Merge stays within the theta-lawful language.
Prune a colored tree to the syntactic object it builds: lexically
anchored leaves become lexical leaves, nodes become bare Merge nodes,
and none is the magma unit — contributed by the empty-tree marker
(and, degenerately, by bare-grid leaves, which do not occur in trees
with terminal inputs).
Equations
- One or more equations did not get rendered due to their size.
- Minimalist.Theta.realize (Bud.Tree.leaf (Minimalist.Theta.Color.lex tok g)) = some (Minimalist.SyntacticObject.lexLeaf tok)
- Minimalist.Theta.realize (Bud.Tree.leaf c) = none
Instances For
The unit law M(T, 1) = T: a movement landing site realizes to its
host unchanged — the empty-tree marker exists only for the coloring.
A tree with a lexically anchored input realizes to a syntactic object.