Documentation

Linglib.Studies.Buring2012

Büring 2012 — pronouns as φ-presupposing variables #

[Bur12]

[Bur12]'s handbook survey of pronoun semantics makes several claims this file states as theorems about the unified pronoun denotation (PersonalPronoun.denote / PersonalPronoun.phiPresup) applied to the English Fragment's lexical entries (English.Pronouns) — not about a local re-implementation. This is the "theory-hub denotation as study-file constraint": the object the rest of the codebase attributes to pronouns is the object these theorems are about.

A fourth theorem records the [Arn26] contrast that motivates the English epicene paradigm: they carries no gender presupposition, so it is defined of a referent of any gender — exactly where she is undefined.

Main results #

theorem Buring2012.she_denotes_assignment_value {E : Type} [PartialOrder E] (g : Core.Assignment E) (i : ) (spk adr : E) (isFemale isInanimate : EProp) :
(English.Pronouns.she.denote i spk adr isFemale isInanimate).selector g PUnit.unit = some (Intensional.Variables.interpPronoun i g)

A pronoun denotes the assignment value g i: its selector is the canonical variable lookup interpPronoun i, by construction. Büring's assignment-lookup denotation — the same selector for free, anaphoric, and deictic uses.

theorem Buring2012.she_undefined_of_non_female {E : Type} [PartialOrder E] (g : Core.Assignment E) (i : ) (spk adr : E) (isFemale isInanimate : EProp) (scope : EPUnit.{u_1 + 1}Prop) (h : ¬isFemale (g i)) :
¬((English.Pronouns.she.denote i spk adr isFemale isInanimate).toPartialProp scope g).presup PUnit.unit

φ-features as presupposition: she is undefined of a non-female referent. The feminine feature does not assert femaleness of g i — it presupposes it, so the whole denotation lacks a defined value when the referent is not female.

theorem Buring2012.she_bound_reading {E : Type} [PartialOrder E] (g : Core.Assignment E) (i : ) (spk adr : E) (isFemale isInanimate : EProp) (b : E) :
(English.Pronouns.she.denote i spk adr isFemale isInanimate).selector (Function.update g i b) PUnit.unit = some b

A bound pronoun has the same denotation as a free one: binding is the external assignment update Function.update g i b, and the unchanged selector then returns the binder b. Büring §3 — there is no separate "bound pronoun" lexeme; the lexical entry is identical, binding lives in the assignment.

theorem Buring2012.they_defined_regardless_of_gender {E : Type} [PartialOrder E] (g : Core.Assignment E) (i : ) (spk adr : E) (isFemale isInanimate : EProp) (scope : EPUnit.{u_1 + 1}Prop) :
((English.Pronouns.they.denote i spk adr isFemale isInanimate).toPartialProp scope g).presup PUnit.unit

Epicene they ([Arn26]) carries no gender presupposition: its denotation is defined of a referent regardless of gender — the structural correlate of they's gender-neutrality, and the direct contrast with she_undefined_of_non_female.