Documentation

Linglib.Studies.DelPinal2015

Del Pinal (2015): Dual Content Semantics #

[DP15]

Dual-content reanalysis of privative adjectives: nouns have E-structure + qualia C-structure ([Pus95]); privatives operate on C-structure. Sibling to Partee2010.lean (same data, opposite mechanism: Partee re-types fake as subsective plus noun-coercion, DC keeps fake's Kamp-privative typing and pairs it with C-structure).

Main definitions #

Implementation notes #

Paper qualia values involve event quantifiers (λx.GEN e[SHOOTING(e) ∧ INSTRUMENT(e,x)], ∃e[MAKING(e) ∧ GOAL(e, Q_F(N)(x))]); these are flattened to characteristic predicates of type Property W E. The AGENTIVE clause of fakeDC is approximated as N.qualia.formal (the GOAL projects the formal quale), which loses the existential commitment about an event of making — a found object can look like a gun without being made-to-look-like one. This proxy is adequate at the predicate-level fidelity of the current substrate; faithful encoding would require an event substrate. Counterfeit's AGENTIVE goal is Q_F ∧ Q_T; artificial's is Q_T alone.

The dual FA_DC compositional rule (paper §3: E-side standard FA, C-side pointwise FA via qualia functions) is elided — operators here are flat NounMeaningNounMeaning functions rather than structured pairs of E-functions and C-functions. The trade-off is exposed by artificialDC_not_DelPinalReanalysis: not every privative-like operator satisfies extension_implies_formal.

References #

structure DelPinal2015.Qualia (W : Type u_1) (E : Type u_2) :
Type (max u_1 u_2)

Pustejovsky-style four-role qualia profile.

Instances For
    structure DelPinal2015.NounMeaning (W : Type u_1) (E : Type u_2) :
    Type (max u_1 u_2)

    DC lexical entry: extension plus qualia profile.

    Instances For
      @[reducible, inline]
      abbrev DelPinal2015.DCAdjMeaning (W : Type u_1) (E : Type u_2) :
      Type (max u_2 u_1)

      Adjective as a DC operator on noun meanings.

      Equations
      Instances For
        structure DelPinal2015.DelPinalReanalysis (W : Type u_3) (E : Type u_4) :
        Type (max u_3 u_4)

        DC reanalysis: a DCAdjMeaning operator with privative E-structure and formal-quale entailment (the "looks like N" inference).

        Instances For

          The privative trio: fake, counterfeit, artificial #

          def DelPinal2015.fakeDC {W : Type u_1} {E : Type u_2} :

          DC fake operator (paper eq. 16).

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For
            def DelPinal2015.counterfeitDC {W : Type u_1} {E : Type u_2} :

            DC counterfeit operator (paper eq. 11). The AGENTIVE goal is to look AND function like N (made-to-look-and-function). TELIC preserved (not negated).

            Equations
            • One or more equations did not get rendered due to their size.
            Instances For
              def DelPinal2015.artificialDC {W : Type u_1} {E : Type u_2} :

              DC artificial operator (paper eq. 12). The AGENTIVE goal is to function like N (no look-like commitment). FORMAL is preserved in qualia but is not asserted in extension.

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

                fakeDC is a DelPinalReanalysis.

                Equations
                Instances For

                  counterfeitDC is a DelPinalReanalysis.

                  Equations
                  Instances For

                    artificialDC is not a DelPinalReanalysis: artificial N does not entail the look-like inference (paper §3: artificial heart need not look like a heart). Counterexample noun shows that the extension can be inhabited while the input formal quale is empty.

                    Cross-framework divergence with [Par10] #

                    Classical-AdjMeaning projection of a DC operator under a per-noun qualia assignment Q.

                    Equations
                    Instances For

                      The classical projection of any DC reanalysis admits no LicensedCoercion. The two frameworks make incompatible type-level commitments about privatives.

                      Classical lift; impoverishment of Kamp-typed fake #

                      Lift a classical AdjMeaning to a DCAdjMeaning by computing the extension via the classical adj and inheriting the input noun's qualia (the C-structure passes through unchanged).

                      Equations
                      Instances For

                        Kamp1975.fakeAdj lifted to a DCAdjMeaning is not a DelPinalReanalysis: the classical typing preserves the Kamp- privative E-structure but cannot in general guarantee the look-like-N inference (the input noun's formal quale need not hold at the fake-witness entity). Formal counterpart to Del Pinal's argument that the classical analysis is incomplete.

                        RevisedClass classification: DC side #

                        Under Del Pinal's framework, Kamp1975.fakeAdj keeps its Kamp-privative typing and falls in RevisedClass.nonSubsective. Contrast with Partee2010.fakeReanalysis.is_subsective: Partee reclassifies the reanalyzed meaning into RevisedClass.subsective. The two frameworks attribute different RevisedClass values to the lexical item 'fake' because they posit different formal objects for it.

                        Output-qualia witness theorems #

                        Per paper eqs. 11, 12, 16/17, the three operators produce distinct qualia outputs. The Iff.rfl theorems below verify the structural discrimination, justifying the 4-field Qualia shape.

                        theorem DelPinal2015.fakeDC_telic_negates {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :
                        (fakeDC N).qualia.telic w x ¬N.qualia.telic w x
                        theorem DelPinal2015.counterfeitDC_telic_preserved {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :
                        theorem DelPinal2015.artificialDC_telic_preserved {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :
                        theorem DelPinal2015.fakeDC_agentive_is_formal {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :
                        (fakeDC N).qualia.agentive w x N.qualia.formal w x
                        theorem DelPinal2015.counterfeitDC_agentive_is_formal_and_telic {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :
                        (counterfeitDC N).qualia.agentive w x N.qualia.formal w x N.qualia.telic w x
                        theorem DelPinal2015.artificialDC_agentive_is_telic {W : Type u_1} {E : Type u_2} (N : NounMeaning W E) (w : W) (x : E) :