Documentation

Linglib.Fragments.Finnish.Infinitives

Finnish Infinitive System [Kar18] #

Finnish has four productive infinitive forms, each built from the verb stem plus a characteristic marker and case suffix:

InfinitiveMarkerCase forms
I (A)-a / -ätranslative only (basic citation form)
II (E)-e-inessive, instructive
III (MA)-ma-inessive, elative, illative, adessive, abessive
IV (MINEN)-minennominative (verbal noun)

The III infinitive is linguistically remarkable: it takes local case suffixes on verbal stems, mirroring the nominal local case system. Four of its five case forms correspond exactly to cells in the 3×2 local case matrix (see Finnish.Case.localCaseMatrix):

The fifth, abessive -matta ('without V-ing'), comes from outside the local case matrix — abessive is a "marginal" case.

This structural parallel — the same case paradigm applying to both nouns and nonfinite verbs — is evidence that Finnish local cases are genuine morphosyntactic features, not frozen adverbial suffixes.

The four Finnish infinitive classes.

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

      A case form available to an infinitive class.

      • infClass : InfClass
      • caseName : String
      • suffix : String
      • gloss : String
      Instances For
        def Finnish.Infinitives.instDecidableEqInfForm.decEq (x✝ x✝¹ : InfForm) :
        Decidable (x✝ = x✝¹)
        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

            I infinitive (A-infinitive): the basic citation form. "lukea" = 'to read'. Only appears in translative.

            Equations
            Instances For

              II infinitive (E-infinitive): -e- + inessive or instructive. "lukiessa" = 'while reading', "lukien" = 'by reading'.

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

                III infinitive (MA-infinitive): -ma- + local case suffixes. The paradigm that mirrors the nominal local case matrix. "lukemassa" = 'reading' (at it), "lukemasta" = 'from reading', "lukemaan" = 'to read' (goal), "lukemalla" = 'by reading', "lukematta" = 'without reading'.

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

                  IV infinitive (MINEN-infinitive): verbal noun, nominative only. "lukeminen" = 'reading' (the act).

                  Equations
                  Instances For

                    Total number of infinitive forms.

                    The III infinitive has the richest paradigm (5 forms).

                    A III-infinitive case form paired with the local case matrix cell it mirrors. none for abessive (outside the local matrix).

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

                        The mapping from III infinitive forms to local case matrix cells. Four of five forms correspond to matrix cells; abessive does not.

                        Equations
                        • One or more equations did not get rendered due to their size.
                        Instances For
                          theorem Finnish.Infinitives.inf3_local_overlap :
                          (List.filter (fun (x : Inf3LocalMapping) => x.localCell.isSome) inf3LocalMappings).length = 4

                          Exactly 4 of 5 III-infinitive forms map to local case matrix cells.

                          theorem Finnish.Infinitives.inf3_unmapped_is_abessive :
                          (List.filter (fun (x : Inf3LocalMapping) => x.localCell.isNone) inf3LocalMappings).length = 1 (List.filter (fun (x : Inf3LocalMapping) => x.localCell.isNone) inf3LocalMappings)[0]!.infForm.caseName = "abessive"

                          The one unmapped form is abessive.

                          The III infinitive's inessive matches the nominal inessive (static + internal cell of the matrix).

                          The III infinitive's elative matches the nominal elative (source + internal cell of the matrix).

                          The III infinitive's illative matches the nominal illative (goal + internal cell of the matrix).

                          The III infinitive's adessive matches the nominal adessive (static + external cell of the matrix).

                          The 4 mapped III-infinitive forms cover 3 of the 6 local case matrix cells (the 3 internal cases + adessive), leaving ablative and allative unused.

                          This asymmetry — all internal cases but only one external case — reflects that the III infinitive is primarily about containment ("in the process of"), departure ("from the process"), and goal ("into doing"), with adessive ("by means of") as the sole external form.