Documentation

Linglib.Phenomena.Negation.Studies.VanDerSandtMaier2003

Van der Sandt & Maier (2003) — Denials in Discourse #

@cite{van-der-sandt-maier-2003}

Denials in Discourse. Michigan Linguistics and Philosophy Workshop, 2003.

Formalization of directed reverse anaphora (RA*) applied to the paper's worked examples. Connects three linglib modules:

Layer Naming Convention #

The paper's layer labels map to ContentLayer constructors as follows:

PaperCodeMeaning
pr.presuppositionBackgrounded precondition
fr (Frege).atIssueAssertoric/at-issue content
imp.implicatureScalar implicature or connotation

Core Mechanism #

Denial is a non-monotonic discourse operation that selectively retracts content. The RA* algorithm (§4.3):

  1. Identifies offensive layers via Off — those inconsistent with the correction
  2. Moves conditions at offensive layers under negation
  3. Preserves conditions at non-offensive layers

Verified Examples #

ExampleDenial typeOffRA* result
King of France (49)Presuppositional{pr, fr}1 cond: ¬[pr+fr]
Possible/necessary (68)Implicature{imp}3 conds: pr, fr + ¬[imp]
Lady/wife (69)Connotation{imp}4 conds: pr, fr, fr + ¬[imp]

σ₁: "The King of France walks in the park." σ₂: "No, he doesn't," σ₃: "France doesn't have a king."

The correction targets the existence presupposition of the definite. Off = {pr, fr}: both layers conflict with "no king."

Note: the Denial.lean datum kingBald_presuppositional uses a different sentence (ex. 30b: "The king of France is not bald") but the same denial type — presuppositional. The bridge theorem below connects the Off computation to that datum's target layer.

Equations
  • One or more equations did not get rendered due to their size.
Instances For

    After RA* with Off = {pr, fr}: no conditions survive (both are offensive). All material moves under a single negation wrapper.

    σ₁: "It is possible the Pope is right." σ₂: "No, it's not POssible," σ₃: "it's NECessary that he's right."

    The correction targets the scalar implicature ¬□p. Off = {imp}: only the implicature conflicts with correction □p. At-issue content ◇p survives (□p entails ◇p).

    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      After RA* with Off = {imp}: pr and fr survive; imp moves under negation. Result: 2 surviving + 1 negation wrapper = 3 conditions.

      σ₁: "Now, THAT's a nice lady." σ₂: "Yes, she is," σ₃: "but she's not a LAdy," σ₄: "she's my WIfe."

      The correction targets the connotation of "a lady" (implicature: the person is a stranger, not a close relative). The literal predication (lady, nice) and presupposition (pointing) survive; only the stranger implicature is retracted. Off = {imp}.

      The paper's derivation has 4 utterances; σ₂ (affirmation "yes, she is") is treated as monotonic merge and omitted here. The Off computation depends only on σ₁ + σ₄.

      Note: the Denial.lean datum lady_wife uses a related sentence (ex. 13: "That wasn't a lady I kissed last night") but the same denial type — implicature targeting the connotation of "lady."

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        Off: correction "wife" conflicts only with imp (stranger). Crucially, lady (fr) is consistent with wife — Off does NOT retract the literal predication "lady."

        After RA*: pr, fr (lady), fr (nice) survive. imp (stranger) moves under negation. Result: 3 surviving + 1 negated = 4.

        Full pipeline for the modal example: assertion adds content (monotonic merge), denial selectively retracts (non-monotonic RA*).

        This demonstrates the paper's central architectural claim: assertion and denial are dual discourse operations, one monotonic and one not.

        Denial update: 4 conditions = 2 surviving (pr + ◇right) + 1 correction (□right) + 1 negated wrapper (¬[¬□right]).

        The Off computations from §§ 1–3 agree with the denial-type classification in Phenomena.Negation.Denial. Each Off result contains the target layer of the corresponding DenialDatum.

        This is the end-to-end chain: a semantic computation over layered propositions (Off) yields offensive layers that match the empirical denial-type taxonomy.

        The Off result for the modal example includes the datum's target layer. The semantic Off computation (checking proposition consistency) agrees with the empirical classification (implicature denial).

        @cite{van-der-sandt-maier-2003} §2.1: denial and negation are orthogonal concepts. Denial is a discourse operation (non-monotonic correction); negation is a semantic operator (truth-functional connective). A denial can use a positive sentence (ex. 6), and a negative sentence can be a plain assertion, not a denial (ex. 2).

        Positive denial exists: the denial utterance IS the correction, with no negation involved. Denial is a discourse function, not a syntactic form.

        Positive denial is propositional — it targets fr (at-issue content), just like negative propositional denials. The mechanism is the same regardless of surface polarity.