Documentation

Linglib.Fragments.English.Negation

English Negation Fragment #

@cite{miestamo-2005} @cite{haspelmath-2013} @cite{dryer-haspelmath-2013}

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

      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
            • One or more equations did not get rendered due to their size.
            Instances For

              Copula be: symmetric (no do-support).

              Equations
              • One or more equations did not get rendered due to their size.
              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
                  • One or more equations did not get rendered due to their size.
                  Instances For

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

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

                        Verification #

                        theorem Fragments.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 Fragments.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