Documentation

Linglib.Phenomena.Definiteness.Studies.Schwarz2009

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

@cite{schwarz-2009} @cite{schwarz-2013} @cite{hawkins-1978} @cite{coppock-beaver-2015} @cite{patel-grosz-grosz-2017}

The central thesis of @cite{schwarz-2009} 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 (@cite{schwarz-2013}). 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 @cite{schwarz-2013} §3.2 generalized via bridgingPresupType.

The two Schwarz presupposition types are distinct constructors of DefPresupType. The whole architectural claim of @cite{schwarz-2009} 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 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 @cite{schwarz-2009} claim that uniqueness is situational and familiarity is anaphoric.

@cite{schwarz-2009} reads the two-article distinction off German morphology. English collapses both into the; the contrast is masked at the surface but recoverable via the inventory's uniqueAnaphoricSyncretism bool.

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 @cite{patel-grosz-grosz-2017} D-layer count read off the article system.

@cite{schwarz-2013} §3.1: anaphoric uses pattern with the strong article — i.e., they project the familiarity presupposition.

@cite{schwarz-2009} §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.

@cite{schwarz-2013} §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 @cite{schwarz-2009} 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
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      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.