Documentation

Linglib.Fragments.Icelandic.Predicates

Icelandic Verbs (Predicates fragment) #

[Woo15]

Consensus lexical data for Icelandic verbs participating in the -st / -na alternations made famous by [Woo15]. Each entry carries only the surface forms and a Boolean for whether an active variant exists — every other piece of information about each verb (the -st classification, the anticausative-marking morpheme, the [Cue03]-style root decomposition, the possessive-dative diagnostic) is paper-specific apparatus and lives in Wood2015, where it can participate in further analysis without polluting the Fragment schema.

This is the same discipline applied to other Fragment lexicons in linglib: textbook-consensus lexical data on this side; competing analyses on the Studies side.

Note on classification: in [Woo15]'s analysis -st (historically sik-sk-st) is not an exponent of Voice. It is a defective [−participant] clitic — a featural subset of the reflexive pronoun — that merges in a specifier/argument position and cliticizes to the verb. It appears across the descriptive categories [Woo15] distinguishes (anticausative, generic middle, figure reflexive, reflexive, inherent, subject-experiencer, reciprocal); the Voice/v exponents proper are -na (Voice{∅}), (the elsewhere Voice exponent), and -ka (v), with -na-marked anticausatives like brotna. The merge-site classification and the -st / -na contrast are formalized in the Wood2015 study file, not here.

A lexical entry for an Icelandic verb participating in the -st / -na alternation. Carries only consensus surface data.

  • activeForm : Option String

    Active / bare form, if one exists. none for inherent -st verbs (nálgast, minnast) and the subject-experiencer leiðast.

  • stForm : String

    The intransitive form: typically suffixed with -st, with -na on brotna and friends, or identical to the active when the alternation is unmarked.

  • gloss : String

    English gloss for human readers.

  • hasActiveVariant : Bool

    Whether an active variant exists (must agree with activeForm.isSome; the redundancy is a sanity check used by the consistency theorem below).

Instances For
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      Equations
      Instances For
        def Icelandic.Predicates.instDecidableEqIcelandicStVerb.decEq (x✝ x✝¹ : IcelandicStVerb) :
        Decidable (x✝ = x✝¹)
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          opna / opnast 'open'.

          Equations
          Instances For

            splundra / splundrast 'shatter'.

            Equations
            Instances For

              brjóta / brotna 'break' — the canonical -na-marked anticausative (cf. opnast / splundrast with -st).

              Equations
              Instances For

                selja / seljast 'sell'.

                Equations
                Instances For

                  lesa / lesast 'read'.

                  Equations
                  Instances For

                    setja / setjast 'sit down' — a posture verb.

                    Equations
                    Instances For

                      klæða / klæðast 'dress'.

                      Equations
                      Instances For

                        nálgast 'approach' — no active variant; -st is lexicalized.

                        Equations
                        Instances For

                          minnast 'remember' — no active variant.

                          Equations
                          Instances For

                            leiðast 'be bored' — subject-experiencer; no active variant. Mér leiðist í skólanum 'I am bored in school'.

                            Equations
                            Instances For

                              kyssa / kyssast 'kiss' — used in reciprocal contexts: Þau kyssast 'They kissed (each other)'.

                              Equations
                              Instances For

                                All -st-marked verb entries (excludes -na-marked verbs like brotna). The Wood2015 study file projects analytical data (stType, marking, root structure) over the same ten verbs in the same order.

                                Equations
                                • One or more equations did not get rendered due to their size.
                                Instances For
                                  theorem Icelandic.Predicates.alternating_have_active :
                                  ((List.filter (fun (x : IcelandicStVerb) => x.hasActiveVariant) allStVerbs).all fun (v : IcelandicStVerb) => v.activeForm.isSome) = true

                                  Sanity check: every verb whose hasActiveVariant is true also has activeForm.isSome. Catches schema drift in either field.