Derivational Economy #
@cite{chomsky-1995} @cite{chomsky-2000}
Economy principles constrain syntactic derivations by comparing competing derivations that converge on the same PF string and LF interpretation, selecting the one with fewest operations.
Key Principles #
- Least Effort: Among derivations yielding the same PF string and LF interpretation, prefer the one with fewest operations and fewest lexical resources drawn from the numeration.
- Pronunciation Economy: PF-reducing operations (ellipsis) may apply only if they have an effect on pronunciation. This bans vacuous deletion — eliding material that is already unpronounced.
Design #
Economy is formalized as a COMPARISON between derivation costs, not as a constraint on individual derivations. This captures the global, transderivational character of economy: the grammar evaluates the full set of convergent derivations and selects the cheapest.
DerivationCost is abstract — it counts operations by type without
committing to a particular derivation model. Both the core Derivation
(step-based) and FullDerivation (workspace-based) models can project
onto DerivationCost.
Cost of a syntactic derivation, measured by operation and resource counts.
The four dimensions capture the resources consumed:
lexicalItems: items drawn from the numeration (lexical resources)mergeOps: External + Internal Merge (structure building)agreeOps: Agree operations (feature checking)ellipsisOps: E-feature triggered deletions at PF
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Total number of syntactic operations (excluding lexical selection).
Instances For
Extract cost from a core Derivation (step-based model).
Counts emL/emR as External Merge and im as Internal Merge.
Agree and ellipsis are not tracked in the core model.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Derivation c1 is at least as economical as c2: no more operations and no more lexical resources on any dimension.
Equations
- Minimalism.atLeastAsEconomical c1 c2 = (c1.totalOps ≤ c2.totalOps ∧ c1.lexicalItems ≤ c2.lexicalItems)
Instances For
Derivation c1 is strictly more economical than c2: at least as economical, and strictly better on at least one dimension.
Equations
- Minimalism.strictlyMoreEconomical c1 c2 = (Minimalism.atLeastAsEconomical c1 c2 ∧ (c1.totalOps < c2.totalOps ∨ c1.lexicalItems < c2.lexicalItems))
Instances For
Economy comparison is reflexive.
Economy comparison is transitive.
Strict economy is irreflexive.
Strict economy is transitive.
Strict economy is asymmetric.
Pronunciation Economy: ellipsis may apply only if it changes the PF output.
An ellipsis operation that targets material already unpronounced (e.g., because a prior deletion already removed it) is vacuous and therefore banned.
pfBefore: the PF string before ellipsis applies.
pfAfter: the PF string after ellipsis applies.
Equations
- Minimalism.pronunciationEconomy pfBefore pfAfter = (pfBefore ≠ pfAfter)
Instances For
Vacuous ellipsis: the PF output is unchanged by the deletion.
Equations
- Minimalism.vacuousEllipsis pfBefore pfAfter = (pfBefore = pfAfter)
Instances For
Pronunciation Economy holds iff ellipsis is not vacuous.
Two syntactic objects are PF-equivalent if they produce the same phonological string (left-to-right leaf yield).
Equations
- Minimalism.pfEquivalent so1 so2 = (so1.phonYield = so2.phonYield)
Instances For
PF equivalence is reflexive.
PF equivalence is symmetric.
PF equivalence is transitive.