Documentation

Linglib.Fragments.Finnish.Negation

Finnish Negation: The Negative Auxiliary ei @cite{karlsson-2017} #

@cite{bybee-1985} @cite{miestamo-2005} @cite{haspelmath-2013}

Finnish expresses sentential negation through a conjugated negative auxiliary verb ei. The negative verb inflects for person and number, while the lexical verb appears in a nonfinite connegative form that lacks tense/agreement marking.

Paradigm (present indicative) #

PersonSgPl
1e-ne-mme
2e-te-tte
3e-ie-ivät

Key structural property #

The negative auxiliary bears the inflection that the main verb would otherwise carry. This splits the @cite{bybee-1985} relevance hierarchy: negation (rank 7) hosts agreement (rank 8) and tense, while the main verb retains only the stem and aspect. This is a counter-example to strict stem-outward ordering within a single word — the ordering principle holds across the analytical construction (neg aux + main verb) rather than within a synthetic word.

ei — Finnish's negative auxiliary verb, cited in 3sg form. Genuine auxiliary: inflects for person and number (negParadigm below has the 6 present-tense forms) and bears the agreement and tense markers that the lexical verb would otherwise carry. The lexical verb appears in the connegative form (connegativeRule). The 6 surface forms (en/et/ei/emme/ette/eivät) are accessible via negParadigm.

Equations
Instances For

    The Finnish negation system: a single negative auxiliary with a person/number paradigm. Multiple paradigm-form surface realizations (negParadigm) are not multiple markers — they're inflectional variants of one auxiliary, captured cross-linguistically by the single NegMarkerEntry. The Fragment-side joint consumed by Phenomena/Negation/Studies/Dryer2013.lean.

    Equations
    Instances For

      Person–number features for the Finnish negative auxiliary.

      • person :
      • number : String
      • form : String
      Instances For
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          Equations
          Instances For

            Full present-tense paradigm of the negative auxiliary ei.

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

              The connegative MorphRule: strips tense marking from the main verb, leaving only the bare stem. The negative auxiliary carries tense instead.

              Example: mene-n (I go) → en mene (I don't go)

              • neg aux en carries 1sg agreement
              • main verb mene is the connegative (bare stem)
              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                The negative auxiliary's agreement rule: semantically vacuous, carries person/number agreement that would otherwise be on the main verb.

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

                  Finnish negative construction inflection distribution.

                  The negative auxiliary hosts: negation, tense, agreement. The main verb retains: stem, aspect (via participle choice). Uses the shared InflDistribution from Core.Morphology: onAux = negative auxiliary, onLex = main verb.

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

                    The paradigm has exactly 6 forms (3 persons × 2 numbers).

                    theorem Fragments.Finnish.Negation.singular_short :
                    ((List.filter (fun (x : NegForm) => x.number == "sg") negParadigm).all fun (f : NegForm) => decide (f.form.length 2)) = true

                    All singular forms are monosyllabic (≤ 2 characters).

                    theorem Fragments.Finnish.Negation.shared_stem :
                    (negParadigm.all fun (f : NegForm) => f.form.get { } == 'e') = true

                    All forms share the stem e- (first character is 'e').

                    The connegative rule's semantic effect is Boolean negation.

                    Negation (rank 7) hosts agreement (rank 8) on the negative auxiliary — respecting Bybee's hierarchy within the neg aux word.

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

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