Documentation

Linglib.Fragments.English.Negation

English Negation Fragment #

[Mie05] [Has13b] [DH13a]

English expresses standard negation with the particle not (contracted n't). WALS classifies English as both symmetric and asymmetric (SymAsy):

Negative indefinites (Ch 115) #

WALS classifies English as mixed:

not — English's standard negation particle. The contracted form n't attaches as a clitic to auxiliaries (isn't, don't, won't); see negContracted for the citation form of that allomorph. With lexical verbs, do-support is required: He does not eat, not *He not eats.

Equations
Instances For

    The contracted form n't. Phonologically a clitic on the auxiliary; syntactically the same negation marker as not. Listed for the completeness of the citation forms; downstream consumers should treat not as the canonical entry.

    Equations
    Instances For

      The English negation system: a single preverbal particle. The Fragment-side joint consumed by Studies/Dryer2013Negation.lean.

      Equations
      Instances For

        An English negation example.

        • affirmative : String
        • negative : String
        • glossAff : String
        • glossNeg : String
        • doSupport : Bool

          Does this construction require do-support?

        • symmetric : Bool

          Is this construction symmetric (neg = aff + neg marker, no other change)?

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

              Modal can: symmetric (no do-support).

              Equations
              • English.Negation.modal = { affirmative := "he can swim", negative := "he cannot swim", glossAff := "3SG can swim", glossNeg := "3SG can.NEG swim", doSupport := false, symmetric := true }
              Instances For

                Copula be: symmetric (no do-support).

                Equations
                • English.Negation.copula = { affirmative := "she is tall", negative := "she is not tall", glossAff := "3SG be tall", glossNeg := "3SG be NEG tall", doSupport := false, symmetric := true }
                Instances For

                  Auxiliary have: symmetric (no do-support).

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

                    Lexical verb, present: asymmetric (do-support required).

                    Equations
                    • English.Negation.lexicalPresent = { affirmative := "he eats", negative := "he does not eat", glossAff := "3SG eat.3SG", glossNeg := "3SG do.3SG NEG eat", doSupport := true, symmetric := false }
                    Instances For

                      Lexical verb, past: asymmetric (do-support required).

                      Equations
                      • English.Negation.lexicalPast = { affirmative := "he ate", negative := "he did not eat", glossAff := "3SG eat.PST", glossNeg := "3SG do.PST NEG eat", doSupport := true, symmetric := false }
                      Instances For

                        Verification #

                        theorem English.Negation.symasy_distribution :
                        (List.filter (fun (x : NegExample) => x.symmetric) allExamples).length = 3 (List.filter (fun (e : NegExample) => !e.symmetric) allExamples).length = 2

                        3 symmetric + 2 asymmetric = SymAsy.

                        Asymmetric constructions all involve do-support.

                        theorem English.Negation.symmetric_no_dosupport :
                        ((List.filter (fun (x : NegExample) => x.symmetric) allExamples).all fun (e : NegExample) => !e.doSupport) = true

                        Symmetric constructions do not involve do-support.

                        English negation profile (WALS Ch 112-115 + Greco/JinKoenig fields).

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