Documentation

Linglib.Theories.Semantics.Dynamic.DRT.Basic

Discourse Representation Theory #

@cite{kamp-1981} @cite{kamp-reyle-1993}

Discourse Representation Theory (DRT), the pioneering framework for dynamic semantics using Discourse Representation Structures (DRSs).

Unified DRS Representation #

This module builds on the canonical DRSExpr type from Core.DRSExpr, which captures the full recursive syntax of @cite{kamp-reyle-1993} Def 1.4.1:

Syntactic operations (adr, occurs, acc, isFree, isProper) are defined in Core.DRSExpr. Semantic interpretation (interp, mergingLemma, reduce) is defined in Core.Accessibility.

K&R Model Theory (Def 1.2.1) #

A KRModel formalizes @cite{kamp-reyle-1993}'s Definition 1.2.1: a triple ⟨U_M, Name_M, Pred_M⟩ providing the universe, name bearers, and predicate extensions for evaluating DRSs.

Subordination (Def 2.1.2) #

The subordinate relation captures when one DRS is structurally embedded inside another — the key structural relation governing anaphoric accessibility in @cite{kamp-reyle-1993} Ch 2.

Layered DRT (LDRT) #

@cite{van-der-sandt-maier-2003} extend DRT with content layers: each DRS condition carries a label (pr, fr, imp) indicating whether it contributes presuppositional, at-issue, or implicature content. This enables a unified treatment of denial.

structure Semantics.Dynamic.DRT.KRModel (E : Type u_1) :
Type u_1

A model for a DRS vocabulary, following @cite{kamp-reyle-1993} Def 1.2.1.

A model M for vocabulary V is a triple ⟨U_M, Name_M, Pred_M⟩:

  • U_M: a non-empty set of individuals (the universe)
  • Name_M: maps individual constants to their bearers in U_M
  • Pred_M: maps predicate constants to their extensions

In our formalization, names and predicates are both identified by Nat indices (matching DRSExpr's atom constructor).

  • names : E

    Name interpretation: maps name indices to their bearers.

  • Predicate interpretation: maps relation indices to truth on entity lists. This is exactly a RelInterp E from Core.Accessibility.

Instances For

    Extract a RelInterp from a K&R model for use with interp.

    Equations
    Instances For

      A DRS K is true in model M iff there is an embedding (assignment) that verifies all conditions (@cite{kamp-reyle-1993} Def 1.4.5).

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

        K₁ is immediately subordinate to K₂ if K₂'s conditions contain K₁ as a component of a complex condition (negation, implication, or disjunction). Matches @cite{kamp-reyle-1993} Def 2.1.2(i).

        Instances For

          K₁ is subordinate to K₂ (written K₁ < K₂) if there is a chain of immediate subordination from K₁ to K₂. This is the transitive closure of ImmSubordinate. Matches @cite{kamp-reyle-1993} Def 2.1.2(ii).

          Instances For

            K₁ is weakly subordinate to K₂ (written K₁ ≤ K₂) iff K₁ = K₂ or K₁ < K₂. Matches @cite{kamp-reyle-1993} Def 2.1.2(iii).

            Equations
            Instances For

              A DRS condition tagged with its content layer.

              @cite{van-der-sandt-maier-2003}: in LDRT, every condition carries a label indicating its discourse role. Uses DRSExpr as the condition type, unifying with the canonical DRS representation from Core.Accessibility.

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

                  A Layered DRS (LDRS): a DRS whose conditions carry content-layer tags.

                  This is the core data structure of @cite{van-der-sandt-maier-2003}'s LDRT. A standard DRS is the special case where all conditions are tagged atIssue.

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

                      Convert an LDRS to a plain DRSExpr by stripping layer tags.

                      Equations
                      Instances For

                        Lift a DRSExpr.box to an LDRS by tagging all conditions as at-issue.

                        A plain DRS is an LDRS where everything is atIssue.

                        Equations
                        Instances For

                          LDRS merge: combine two layered DRSs, preserving layer tags.

                          Equations
                          Instances For

                            The offensive conditions of an LDRS with respect to a correction: those whose layer is in the offensive set.

                            In denial, these are the conditions that get retracted.

                            Equations
                            Instances For

                              The surviving conditions after denial: those NOT at offensive layers.

                              Equations
                              Instances For

                                The paper's deepest architectural claim: assertion is monotonic (merge only adds conditions), while denial is non-monotonic (surviving conditions are a subset of the original). Standard DRT update is monotonic; denial is the ONLY operation that removes information from the discourse context.

                                Offensive + surviving = all conditions (partition).

                                Assertion (merge) is monotonic: the result has at least as many conditions as the original LDRS.

                                Denial (surviving conditions) is non-monotonic: the result has at most as many conditions as the original LDRS.

                                Interpret an LDRS by stripping tags and using interp from Core.Accessibility. This gives the at-issue truth conditions; presuppositional and implicature content must be handled separately by the content-layer machinery.

                                Equations
                                Instances For

                                  @cite{van-der-sandt-maier-2003} §4.3: given a set of offensive layers (computed by Off from Core.Semantics.ContentLayer), RA* partitions the LDRS conditions: surviving conditions remain in the main DRS, offensive conditions are moved under negation.

                                  Directed reverse anaphora (RA*): move offensive-layer conditions under negation, preserving non-offensive conditions.

                                  @cite{van-der-sandt-maier-2003} §4.3, def (67).

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

                                    Denial pipeline: merge correction, then apply RA*.

                                    @cite{van-der-sandt-maier-2003} §4.3: in an assertion-denial-correction sequence ⟨σᵢ, σᵢ₊₁, σᵢ₊₂⟩, the correction is merged with the discourse state, then RA* retracts the offensive layers.

                                    Equations
                                    Instances For

                                      RA* always preserves discourse referents — denial retracts conditions, not referent introductions. This matches the paper's treatment: drefs introduced by σ₁ remain available for anaphoric reference even after denial (@cite{van-der-sandt-maier-2003} §3.6, ex. 51: "A man jumped off the bridge. He didn't jump, he was pushed.").