Del Pinal (2015): Dual Content Semantics #
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 #
Qualia,NounMeaning,DCAdjMeaning: dual-content lexical-entry types.DelPinalReanalysis: stand-alone operator-typed reanalysis structure.fakeDC,counterfeitDC,artificialDC: the privative trio (paper eqs. 16, 11, 12);fakeDelPinal,counterfeitDelPinal: constructive witnesses.artificialDCis not aDelPinalReanalysis(it admits no look-like-N inference) — seeartificialDC_not_DelPinalReanalysis.AdjMeaning.toDCAdjMeaning: lift a classicalAdjMeaningto aDCAdjMeaningby inheriting noun qualia.DelPinalReanalysis.no_LicensedCoercion: cross-framework divergence with [Par10] (any DC reanalysis projects to a Kamp-privativeAdjMeaning, hence admits no NVP-licensed coercion).Kamp1975_fakeAdj_lift_not_DelPinalReanalysis: Kamp's classical typing offakeis genuinely impoverished — the lift toDCAdjMeaningfails to satisfy the look-like-N constraint that DC'sfakeenforces.
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
NounMeaning → NounMeaning 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 #
Pustejovsky-style four-role qualia profile.
- constitutive : Semantics.Gradability.Classification.Property W E
- formal : Semantics.Gradability.Classification.Property W E
- telic : Semantics.Gradability.Classification.Property W E
- agentive : Semantics.Gradability.Classification.Property W E
Instances For
DC lexical entry: extension plus qualia profile.
- extension : Semantics.Gradability.Classification.Property W E
- qualia : Qualia W E
Instances For
Adjective as a DC operator on noun meanings.
Equations
- DelPinal2015.DCAdjMeaning W E = (DelPinal2015.NounMeaning W E → DelPinal2015.NounMeaning W E)
Instances For
DC reanalysis: a DCAdjMeaning operator with privative E-structure
and formal-quale entailment (the "looks like N" inference).
- operator : DCAdjMeaning W E
- extension_privative (N : NounMeaning W E) (w : W) (x : E) : (self.operator N).extension w x → ¬N.extension w x
- extension_implies_formal (N : NounMeaning W E) (w : W) (x : E) : (self.operator N).extension w x → N.qualia.formal w x
Instances For
The privative trio: fake, counterfeit, artificial #
DC fake operator (paper eq. 16).
Equations
- One or more equations did not get rendered due to their size.
Instances For
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
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
- DelPinal2015.fakeDelPinal = { operator := DelPinal2015.fakeDC, extension_privative := ⋯, extension_implies_formal := ⋯ }
Instances For
counterfeitDC is a DelPinalReanalysis.
Equations
- DelPinal2015.counterfeitDelPinal = { operator := DelPinal2015.counterfeitDC, extension_privative := ⋯, extension_implies_formal := ⋯ }
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.
Classical-AdjMeaning projection of a DC operator under a
per-noun qualia assignment Q.
Equations
- r.toAdjMeaning Q N w x = (r.operator { extension := N, qualia := Q N }).extension w x
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
- adj.toDCAdjMeaning N = { extension := adj N.extension, qualia := N.qualia }
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.