Minimal Pronoun Theory #
[Kra98a] [Kra09b] [Saf14] [Lan15]
All instances of bound variable anaphora — reflexives, PRO, bound variable pronouns — are syntactically identical: bare D heads with unvalued φ-features ("minimal pronouns"). Cross-linguistic variation in their surface form (null, reflexive, pronoun) reduces entirely to variation in vocabulary items, language-specific contextual allomorphs applied postsyntactically.
Definition (28) of [Lan15]: X is a minimal pronoun iff X = [D,uφ]. Within different derivations, X can become a reflexive, a bound lexical pronoun, a resumptive pronoun, a pro element, a relative pronoun, or controlled PRO. The choice is determined by the syntactic context and the language's vocabulary item inventory.
Key Definitions #
BVAContext: The four licensing contexts for bound variable anaphoraVocabItem: A context-sensitive realization rule (D[uφ] → Form / context)MinPronInventory: A language's vocabulary item inventory + elsewhere defaultPronForm: Standard surface form categories (null, pronoun, reflexive)OCSignature: [Lan13]'s Obligatory Control diagnostic package
Core Claims #
- Minimal pronouns are D heads with unvalued φ-features (28)
- φ-values are transmitted from the antecedent (via Agree or variable binding)
- Vocabulary items map valued feature bundles to surface forms, conditioned by syntactic context (locally bound, controlled subject, etc.)
- The Elsewhere Condition (DM; Halle & Marantz 1993): if no context-specific item matches, the default (pronoun) applies
- Cross-linguistic variation in anaphoric form is morphological, not syntactic ([Saf14]: "all anaphoric diversity is morphological"). The DM vocabulary-item implementation used here follows [Lan15] and [Ost26]; Safir's own mechanism is morphological shape conditions at Spell-Out, not Vocabulary Insertion per se.
Landau-specific theory (the Two-Tiered Theory of Control, predicate
classification, clause classes) is in Studies/Landau2015.lean.
The four syntactic contexts in which a minimal pronoun can occur. Each context may trigger a different vocabulary item (surface form).
These correspond to the traditional binding domains:
controlledSubject: PRO position (subject of controlled clause)locallyBound: Condition A domain (reflexives)boundVariable: Condition B domain (bound pronoun, non-local)free: Condition C / referential (unbound)
- controlledSubject : BVAContext
Subject of a controlled clause — PRO in English
- locallyBound : BVAContext
Locally bound — reflexive in English (Condition A domain)
- boundVariable : BVAContext
Bound by a non-local c-commanding antecedent
- free : BVAContext
Free / referential (unbound)
Instances For
Equations
- Minimalist.MinimalPronoun.instDecidableEqBVAContext x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
A vocabulary item: a context-specific realization rule for a minimal pronoun.
In DM terms: D[uφ] → form / context ...
Vocabulary items are ordered by specificity. When multiple items could apply, the most specific (first in the list) wins.
This is a specialization of the general DM Morphology.DM.VI.VocabItem
in Morphology/DM/VocabularyInsertion.lean, restricted to
BVAContext matching with a parameterized Form type.
- context : BVAContext
The syntactic context this item is restricted to
- form : Form
The surface form this item realizes
Instances For
A language's inventory of vocabulary items for minimal pronouns.
The items list is ordered by specificity (most specific first).
The elsewhere form applies when no context-specific item matches.
[Saf14]: "from this single element, all anaphoric diversity is morphological"
- items : List (VocabItem Form)
Context-specific vocabulary items, ordered by specificity
- elsewhere : Form
Default exponence: applies when no specific item matches. Crosslinguistically, this is the pronoun form ([Saf14]).
Instances For
The Elsewhere Condition: find the first vocabulary item whose context matches; if none does, use the elsewhere (default pronoun) form.
Equations
Instances For
A language's realized form for controlled subjects specifically. This is the function that distinguishes null-PRO from overt-PRO languages.
Equations
Instances For
Standard surface form categories for bound variable anaphora.
These are the cross-linguistically attested exponence options for minimal pronouns. Each vocabulary item maps a BVA context to one of these forms.
- null : PronForm
Silent (null PRO)
- pronoun : PronForm
Overt pronoun (φ-matching clitic or full form)
- reflexive : PronForm
Reflexive anaphor (English -self, SMPM mí + pronoun)
Instances For
Equations
- Minimalist.MinimalPronoun.instDecidableEqPronForm x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Whether a language's minimal-pronoun inventory realizes the
controlled-subject context with an overt form. The criterion is
non-nullness, not specifically .pronoun: [Ost26]'s universal
is about overt-vs-null PRO, so an inventory whose controlled-subject
form is .reflexive also counts as overt PRO.
Equations
- inv.hasOvertPRO = (inv.controlForm ≠ Minimalist.MinimalPronoun.PronForm.null)
Instances For
[Lan13]'s Obligatory Control signature (simplified).
A clause S exhibits OC iff its subject satisfies two core conditions: (a) the controller(s) must be codependent(s) of S (b) PRO (or part of it) must be interpreted as a bound variable
Partial control is a subspecies of OC per [Lan13] — "PRO (or part of it)" explicitly accommodates it.
- controllerCodependent : Bool
(a): Controller must be argument of the matrix predicate
- boundVariable : Bool
(b): Embedded subject interpreted as bound variable
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
The full OC signature: both core diagnostics positive.
Equations
- Minimalist.MinimalPronoun.ocFull = { controllerCodependent := true, boundVariable := true }
Instances For
No OC: neither core diagnostic holds.
Equations
- Minimalist.MinimalPronoun.ocNone = { controllerCodependent := false, boundVariable := false }
Instances For
Does a clause type show obligatory control?
Equations
- sig.isOC = (sig.controllerCodependent && sig.boundVariable)