Documentation

Linglib.Phenomena.Negation.Studies.Horn1989

Horn 1989: Negation ambiguity for metalinguistic negation #

@cite{horn-1989} @cite{horn-1985} @cite{burton-roberts-1989}

Horn, L. R. (1989). A Natural History of Negation. Univ. of Chicago Press. Foundation: Horn, L. R. (1985). Metalinguistic negation and pragmatic ambiguity. Language 61(1), 121–174.

Defining commitment #

There are TWO negations in natural language: descriptive negation (truth-functional, targets at-issue content) and metalinguistic negation (objects to the appropriateness of the negated utterance, NOT to its truth conditions). The lexical item not is ambiguous between these two. Selection between them is constrained by syntactic and prosodic context.

This is the alternative analysis K-G argues against in §5 (paper p.29):

"The apparently metalinguistic character of metalinguistic negation is explained by the presence of covertly quoted material in the scope of the negation rather than by positing anything unusual about the negation operator itself, as suggested by Horn (1989) and Potts (2007)."

K-G's view: ONE negation operator + covert mixed quotation 𝔐 + appropriateness operator 𝔄 derives the same truth conditions and syntactic restrictions WITHOUT positing lexical ambiguity in not.

Three syntactic predictions Horn 1989 / Burton-Roberts 1989 identify #

These are the empirical generalisations that any analysis of metalinguistic negation must derive. K-G (paper p.32) shows that the covert-mixed-quotation analysis derives all three; Horn's ambiguity analysis is committed to them by stipulating that metalinguistic negation is a distinct lexical item with these distributional restrictions baked in.

  1. Morpheme incorporation failure (Horn 1989 p.392; @cite{horn-1985}): morphologically incorporated negation (unhappy) cannot host metalinguistic readings. "She's not happy, she's ecstatic" is fine; "#She's unhappy, she's ecstatic" is anomalous.

  2. NPI licensing failure (Horn 1989): metalinguistic negation does not license NPIs. "John didn't manage to solve some of the problems" has a metalinguistic reading; "#John didn't manage to solve any of the problems" does not.

  3. Double-negation-elimination failure (Burton-Roberts 1989, @cite{burton-roberts-1989}): when both negations are metalinguistic, ¬¬p is NOT equivalent to p. "She's not not happy, she's inconsolable" is fine; "#She's happy, she's inconsolable" is not.

Note on scope #

Stub formalisation. Encodes Horn's two-negation commitment plus the three syntactic predictions as named theorems. Sufficient to host the K-G consilience theorem in KirkGiannini2024.lean: K-G derives the same three predictions WITHOUT lexical ambiguity in not.

Horn's two negations. The lexical item not is ambiguous between these.

  • descriptive : NegationKind

    Descriptive (truth-functional) negation: targets at-issue.

  • metalinguistic : NegationKind

    Metalinguistic negation: targets appropriateness of the utterance.

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

      A negation occurrence is one of the two kinds, plus the propositional target it scopes over.

      Instances For
        def Horn1989.instReprNegOccurrence.repr {P✝ : Type} [Repr P✝] :
        NegOccurrence P✝NatStd.Format
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          @[implicit_reducible]
          instance Horn1989.instReprNegOccurrence {P✝ : Type} [Repr P✝] :
          Repr (NegOccurrence P✝)
          Equations

          Horn 1989 prediction 1: morphological incorporation blocks metalinguistic readings. unhappy-style incorporated negations are necessarily descriptive — they cannot host metalinguistic correction.

          Equations
          Instances For

            Horn 1989 prediction 2: NPIs are not licensed by metalinguistic negation. An NPI in the scope of metalinguistic not is ungrammatical. We encode this as a structural disallowance.

            Instances For
              @[implicit_reducible]
              Equations
              Equations
              Instances For

                A polarity-marked occurrence in the scope of a negation.

                Instances For
                  def Horn1989.instReprNegScopeOccurrence.repr {P✝ : Type} [Repr P✝] :
                  NegScopeOccurrence P✝NatStd.Format
                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For
                    @[implicit_reducible]
                    instance Horn1989.instReprNegScopeOccurrence {P✝ : Type} [Repr P✝] :
                    Repr (NegScopeOccurrence P✝)
                    Equations

                    An occurrence is licit iff NPIs only appear under descriptive negation.

                    Equations
                    Instances For
                      @[reducible, inline]

                      Burton-Roberts 1989 prediction: DN-elimination fails for metalinguistic negations. When both ¬s in ¬¬p are metalinguistic, the result does NOT reduce to p. We encode this by tracking the negation chain and requiring that any pure descriptive double negation reduces, while a chain containing any metalinguistic negation does not.

                      Equations
                      Instances For

                        All negations in the chain are descriptive.

                        Equations
                        Instances For

                          At least one negation in the chain is metalinguistic.

                          Equations
                          Instances For

                            The DN-elimination condition: a chain reduces iff it's all-descriptive and length 2. (Length-2 condition is the prototypical DN case "not not happy"; the substantive predicate is allDescriptive.)

                            Equations
                            Instances For

                              Burton-Roberts 1989's syntactic prediction. A chain containing any metalinguistic negation fails DN-elimination — the surface "not not p" does NOT reduce to p when either negation has metalinguistic force.