Donkey Anaphora: Empirical Data #
@cite{geach-1962} @cite{heim-1982} @cite{kadmon-1987} @cite{kanazawa-1994} @cite{schwarz-2009}
Theory-neutral data on donkey anaphora and related binding puzzles.
The Phenomenon #
Donkey sentences involve pronouns that are apparently bound by indefinites in syntactically "inaccessible" positions:
"Every farmer who owns a donkey beats it"
The indefinite "a donkey" is inside a relative clause, yet "it" seems to depend on it for its reference.
Properties #
- The indefinite doesn't c-command the pronoun (scope puzzle).
- Often interpreted as "...beats every donkey they own" (universal force).
- Sometimes "...beats some donkey they own" (weak readings).
- "Most farmers who own a donkey beat it" (proportion problem).
A donkey anaphora datum records a sentence with its readings
- sentence : String
The sentence
- boundReading : Bool
Does the pronoun depend on the indefinite?
- strongReading : Bool
Is a universal ("strong") reading available?
- weakReading : Bool
Is an existential ("weak") reading available?
- grammatical : Bool
Is the sentence grammatical?
- notes : String
Notes on the reading
- source : String
Citation
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Classic Geach donkey sentence
Equations
- One or more equations did not get rendered due to their size.
Instances For
Conditional donkey
Equations
- One or more equations did not get rendered due to their size.
Instances For
Negated donkey
Equations
- One or more equations did not get rendered due to their size.
Instances For
"Most" donkey (proportion problem)
Equations
- One or more equations did not get rendered due to their size.
Instances For
Data on weak vs strong reading availability
- sentence : String
- strongAvailable : Bool
- weakAvailable : Bool
- preferredReading : String
- context : String
- source : String
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Strong reading dominant
Equations
- One or more equations did not get rendered due to their size.
Instances For
Weak reading facilitated by context
Equations
- One or more equations did not get rendered due to their size.
Instances For
Only strong reading possible
Equations
- One or more equations did not get rendered due to their size.
Instances For
Bathroom sentences (Partee)
Equations
- One or more equations did not get rendered due to their size.
Instances For
Paycheck pronouns
Equations
- One or more equations did not get rendered due to their size.
Instances For
Sage plant sentences (Evans)
Equations
- One or more equations did not get rendered due to their size.
Instances For
Discourse-level donkey anaphora
- sentences : List String
- pronounSentenceIdx : ℕ
- antecedentSentenceIdx : ℕ
- grammatical : Bool
- notes : String
- source : String
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Cross-sentential binding
Equations
- One or more equations did not get rendered due to their size.
Instances For
Indefinite persists across sentences
Equations
- One or more equations did not get rendered due to their size.
Instances For
The proportion problem: what is being counted?
- sentence : String
- farmerCountingReading : String
Farmer-counting: proportion of farmers (who own donkeys)
- pairCountingReading : String
Pair-counting: proportion of farmer-donkey pairs
- preferredReading : String
Which reading is more natural?
- source : String
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Classic proportion problem case
Equations
- One or more equations did not get rendered due to their size.
Instances For
All basic donkey data
Equations
- One or more equations did not get rendered due to their size.
Instances For
All weak/strong reading data
Equations
- One or more equations did not get rendered due to their size.
Instances For
All discourse-level data
Equations
Instances For
Donkey anaphora as a definiteness use type #
@cite{schwarz-2009} §3: donkey pronouns in German pattern with anaphoric definites (strong article von dem), not with uniqueness definites (weak article vom). This means donkey anaphora selects the familiarity presupposition type — the same as regular anaphora.
The cross-linguistic pattern:
- German: strong article (von dem) — two-article system distinguishes
- Thai/Mandarin: demonstrative — demonstratives fill the strong-article role
- Shan: bare noun — no articles, so no morphological signal
This parallels the general pattern for anaphoric definites in @cite{moroney-2021} Table 4.4.
Donkey anaphora is classified as its own use type in the definiteness typology, distinct from regular anaphora but sharing the same presupposition type (familiarity).
Equations
Instances For
Donkey pronouns select the familiarity (strong article) presupposition type. @cite{schwarz-2009} §3: in German, donkey pronouns require the strong article (von dem), patterning with anaphoric uses rather than uniqueness uses.
Donkey anaphora and regular anaphora share the same presupposition type (familiarity). This is why they select the same article form cross-linguistically: both require discourse familiarity, not situational uniqueness.
Cross-linguistic data on how donkey anaphora is expressed
morphologically. This connects the abstract DefiniteUseType.donkey
to concrete article forms.
The article system (articleSystem) is derived from the language's
fragment-level articleInventory, not stipulated independently —
ArticleInventory is the single source of truth.
- language : String
- isoCode : String
- form : String
Morphological form used for donkey pronouns
- articleInventory : Core.Nominal.ArticleInventory
Morphological article inventory (single source of truth from which
articleSystemis derived).
Instances For
Schwarz ArticleType classification, derived from articleInventory.
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Phenomena.Anaphora.DonkeyAnaphora.thaiDonkey = { language := "Thai", isoCode := "tha", form := "demonstrative", articleInventory := Fragments.Thai.Definiteness.articleInventory }
Instances For
Equations
- Phenomena.Anaphora.DonkeyAnaphora.mandarinDonkey = { language := "Mandarin", isoCode := "cmn", form := "demonstrative", articleInventory := Fragments.Mandarin.Definiteness.articleInventory }
Instances For
Equations
- Phenomena.Anaphora.DonkeyAnaphora.shanDonkey = { language := "Shan", isoCode := "shn", form := "bare noun", articleInventory := Fragments.Shan.Definiteness.articleInventory }
Instances For
All cross-linguistic donkey article data.
Equations
- One or more equations did not get rendered due to their size.
Instances For
In languages with a weak/strong article distinction, donkey anaphora
uses the strong form — never the weak form. This is predicted by
donkey_presup_is_familiarity: strong articles encode familiarity,
and donkey anaphora requires familiarity.