Documentation

Linglib.Studies.Schwarz2009

Schwarz (2009): Two Types of Definites in Natural Language #

[Sch09b] [Sch13] [Haw78] [CB15] [PGG17]

The central thesis of [Sch09b] is that the surface category "definite article" decomposes into two structurally distinct articles with different presupposition profiles:

Crucially, this is not a stipulation about meaning: it is read off the morphology in languages whose article paradigm overtly distinguishes the two — most prominently German (weak im, vom, zum vs strong in dem, von dem, zu dem), but also Fering, Lakhota, Akan, Hausa, and others ([Sch13]). English collapses both into syncretic the, masking the distinction at the surface.

What this file tests #

The split is operationalized in the Core layer by:

We verify:

  1. Two distinct presupposition types.uniqueness and .familiarity are not collapsible in DefPresupType.
  2. Constructor split.unique and .anaphoric project to different presupposition types (uniqueness vs familiarity).
  3. Different argument shapes.unique consults the situation assignment via interpSitPronoun; .anaphoric consults the entity assignment via the discourse index. The interpreter realizes this difference structurally.
  4. Morphological correlate — German (bipartite) marks the two types with distinct articles; English (generallyMarked) syncretizes them. The inventory bool uniqueAnaphoricSyncretism is the discriminator.
  5. Donkey anaphora patterns with strong.donkey use type maps to .familiarity, predicting that languages with the contrast use the strong article for donkey pronouns (German von dem, not vom).
  6. Bridging split — part-whole bridging maps to uniqueness (weak article), relational/producer bridging to familiarity (strong article). This is [Sch13] §3.2 generalized via bridgingPresupType.

The two Schwarz presupposition types are distinct constructors of DefPresupType. The whole architectural claim of [Sch09b] rests on this: if the types were the same, there would be no contrast to expose morphologically.

DefPresupType has exactly the two Schwarz types — no third article-presupposition type. (The donkey/bridging cells in DefiniteUseType collapse into these two via useTypeToPresupType / bridgingPresupType.)

The weak article (.unique in the Core sum type) projects to the uniqueness presupposition.

The strong article (.anaphoric in the Core sum type) projects to the familiarity presupposition.

The two articles project to distinct presupposition types — the central [Sch09b] contrast at the type level.

The two articles do not just project different presupposition types — they consult different parts of the bi-assignment. The weak article binds a structural situation pronoun (its restrictor is evaluated at interpSitPronoun sIdx gs); the strong article looks up a discourse referent in the entity assignment (g d).

The weak article's restrictor sees the entire situation assignment gs (the unique constructor passes gs to R). The situation index sIdx is structurally recorded but does not affect the interpretation directly — the restrictor itself is what calls interpSitPronoun sIdx to fetch the resource situation.

The strong article's referent is the entity at the discourse index g d, accepted iff the restrictor holds of it. The situation assignment is consulted only through the restrictor R — the constructor itself reads the entity slot.

The classifier usesSituationPronoun correctly flags the weak article as a structural binder of the resource situation; the strong article is not. This is the structural correlate of the [Sch09b] claim that uniqueness is situational and familiarity is anaphoric.

[Sch09b] reads the two-article distinction off German morphology. English collapses both into the; the contrast is masked at the surface but recoverable via Determiner.IsSyncretic.

The morphological discriminator: German is .bipartite (two distinct forms), English is .generallyMarked (one syncretic form). Both distinguish the same semantic types — the surface morphology differs.

The number of morphologically distinguished presupposition types differs across the two languages, even though the underlying inventory of semantic distinctions is the same.

German marks 2 (bipartite); English marks 1 (the single the form). This is the [PGG17] D-layer count read off the article system.

[Sch09b] §3: donkey pronouns require the strong article in German (von dem, not vom). At the use-type level, this follows from useTypeToPresupType .donkey = .familiarity — the same presupposition type the strong article carries.

This is a non-trivial empirical prediction: a quantifier-bound pronoun in a syntactically inaccessible position is treated by the morphology as a familiarity phenomenon rather than a uniqueness phenomenon.

Cross-linguistic realization of donkey anaphora #

The cross-linguistic pattern ([Sch09b] §3; cf. [Mor21] Table 4.4 for the parallel pattern with anaphoric definites):

Cross-linguistic datum on how donkey anaphora is expressed morphologically, connecting DefiniteUseType.donkey to concrete article forms.

The article system (articleSystem) is derived from the language's fragment-level determiners, not stipulated independently — the declared Determiner.Entry list is the single source of truth.

  • language : String
  • isoCode : String
  • form : String

    Morphological form used for donkey pronouns

  • determiners : List Determiner.Entry

    Declared determiner set (single source of truth from which articleSystem is derived).

Instances For
    Equations
    Instances For
      Equations
      Instances For
        Equations
        Instances For
          Equations
          Instances For
            theorem Schwarz2009.weakAndStrong_uses_strong :
            ((List.filter (fun (x : DonkeyArticleDatum) => x.articleSystem == Features.Definiteness.ArticleType.weakAndStrong) donkeyArticleData).all fun (x : DonkeyArticleDatum) => x.form == "strong article (von dem)") = true

            In languages with a weak/strong article distinction, donkey anaphora uses the strong form — never the weak form. This is predicted by donkey_use_is_familiarity: strong articles encode familiarity, and donkey anaphora requires familiarity.

            [Sch13] §3.2: bridging splits across the two articles. Part-whole bridging (the village ... the church) takes the weak article — situational uniqueness. Relational/producer bridging (the play ... the author) takes the strong article — anaphoric familiarity.

            The two bridging subtypes are exactly the two Schwarz presupposition types — bridging is a microcosm of the [Sch09b] contrast. This is the empirical core of why the bridging split argument motivates a structural rather than purely lexical theory of definiteness.

            The semantic distinction is not just a presupposition-type label — the two articles can pick different referents in the same context. We build a tiny scenario where the unique satisfier of a restrictor is one entity, and the discourse-indexed entity is a different one (which also satisfies the restrictor). The weak article picks the indexed-by- uniqueness referent (none, because there are two satisfiers); the strong article picks the discourse-indexed antecedent.

            Two students.

            Instances For
              @[implicit_reducible]
              Equations
              def Schwarz2009.instReprStudent.repr :
              StudentStd.Format
              Equations
              Instances For
                @[implicit_reducible]
                Equations

                Both students count as students. The restrictor has two satisfiers, so the weak (uniqueness) article fails — there is no unique satisfier.

                Equations
                Instances For

                  Discourse referent at index 0 is Alice. The strong article (.anaphoric) reads off this slot.

                  Equations
                  Instances For

                    The weak article fails on a multi-satisfier restrictor — uniqueness presupposition violation.

                    The strong article succeeds — it returns the discourse-indexed referent (Alice) regardless of how many entities satisfy the restrictor. The familiarity presupposition does its work via the discourse index, not via uniqueness.

                    The empirical payoff at the Core API: the two articles, given the same restrictor and bi-assignment, can disagree on what they return. This is the semantic counterpart of the German morphological split.