Minimal Search as a weighting of Merge #
The ε-weighted Merge M^ε = ⊔ ∘ (Bᵉ ⊗ id) ∘ δ ∘ Δ scales the graft by ε^c, where c is the
Minimal-Search cost of the merge. Since mergePost is linear and the graft is its only creation,
this is the Δ^c Merge mergeOpC scaled by epsWeight ε c. The net cost is the signed sum of the
operands' depth-costs (Cut.extractionCost, Cut.quotientCost): External Merge costs 0;
Internal Merge's extraction +d and its own quotient's −d cancel; Sideward Merge's extraction
is uncancelled, so c = d > 0. At ε = 0 External and Internal Merge survive and Sideward Merge
is annihilated.
Main definitions #
Minimalist.Merge.epsWeight: the weightε^c.Minimalist.Merge.emNetCost,imNetCost,swNetCost: the per-case net costs.Minimalist.Merge.mergeOpCEps: the ε-weighted Δ^c Merge.
Main results #
Minimalist.Merge.mergeOpCEps_zero_em,mergeOpCEps_zero_im,mergeOpCEps_zero_sideward: the ε → 0 limit keeps External and Internal Merge and kills Sideward Merge.
References #
- [marcolli-chomsky-berwick-2025], §1.5 (Proposition 1.5.1)
The weight #
The Minimal-Search ε-weight of a merge with net cost c: ε^c
(MCB eq 1.5.2).
Equations
- Minimalist.Merge.epsWeight ε c = ε ^ c
Instances For
Signed depth costs of a cut #
Cut.extractionCost p = depthC p: pulling out the crown of a Δ^c cut costs its depth.
Equations
Instances For
Cut.quotientCost p = −depthC p: the contraction quotient of a Δ^c cut costs minus its
depth.
Equations
Instances For
Re-merging an extracted crown with its own quotient costs nothing.
Extracting a proper crown from a lexical-rooted object has positive cost.
Net costs and the weighted operator #
External Merge net cost (MCB rule 4, whole operands): 0.
Equations
Instances For
Internal Merge net cost (MCB Prop 1.5.1, IM): the extracted crown's +d
and its own quotient's −d cancel — the signed sum over the same cut p,
truncated to ℕ (it is 0, see imNetCost_eq_zero).
Equations
Instances For
Sideward Merge net cost (MCB Prop 1.5.1, Sideward 2b): the extracted
crown's +d, with no quotient operand to cancel it. Equals Cut.depthC p.
Equations
Instances For
A Sideward Merge of a lexical-rooted object has strictly positive net cost (MCB Prop 1.5.1) — the uncancelled extraction depth.
The ε-weighted Δ^c Merge operator (MCB §1.5, eq 1.5.2): the Δ^c merge
scaled by the Minimal-Search weight ε^c.
Equations
- Minimalist.Merge.mergeOpCEps τ ε c lbl S S' = Minimalist.Merge.epsWeight ε c • Minimalist.Merge.mergeOpC τ lbl S S'
Instances For
At ε = 1 the weight is trivial and mergeOpCEps recovers the unweighted Δ^c
Merge.
MCB Prop 1.5.1, External Merge survives ε → 0. EM has net cost 0, so its
weight ε^0 = 1 is unaffected: mergeOpCEps τ 0 emNetCost = mergeOpC τ.
MCB Prop 1.5.1, Internal Merge survives ε → 0. IM has net cost 0 — the
extraction +d and its own quotient's −d cancel — so its weight is 1 and
the operator is preserved at ε = 0.
MCB Prop 1.5.1, Sideward Merge vanishes ε → 0. A Sideward Merge has net
cost > 0 (the uncancelled extraction depth), so its weight ε^{>0} = 0 at
ε = 0: the operator is annihilated.
MCB Prop 1.5.1, Sideward Merge vanishes — instantiated at an actual Δ^c
extraction p of a lexical-rooted object: the uncancelled depth makes
swNetCost p > 0, so the operator is annihilated at ε = 0.