Documentation

Linglib.Fragments.Turkish.TAM

Turkish Tense-Aspect-Modality System #

[GK05]

The TAM system is the core of the Turkish verbal paradigm ([GK05] Ch 21, Appendix 2). There are five basic TAM categories and three modal categories, occupying a single paradigmatic slot.

Key properties #

  1. Evidential -mIş is a TAM marker, not a separate evidential morpheme. It fills the same paradigmatic slot as -DI (past definite) and cannot co-occur with it.

  2. Aorist negation is asymmetric: affirmative -(I)r becomes negative -mAz rather than the expected *-mA-(I)r. All other categories use regular -mA- negation (see also Turkish.Negation).

  3. Compound tenses are formed by adding a copular suffix (-DI, -mIş, -(y)sA) to the basic form: geliyordu (progressive + past copula).

Suffix notation #

Capital letters indicate vowel harmony alternation (see Turkish.VowelHarmony):

The eight TAM categories of Turkish.

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

      TAM suffix entry with positive and negative forms.

      • category : TAMCategory
      • affSuffix : String
      • negSuffix : String
      • isNegSymmetric : Bool

        Is negation symmetric (neg = stem + -mA- + TAM)?

      Instances For
        def Turkish.TAM.instReprTAMEntry.repr :
        TAMEntryStd.Format
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          Equations
          Instances For
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              Copular suffixes that combine with basic TAM for compound tenses.

              Instances For
                @[implicit_reducible]
                Equations
                Equations
                • One or more equations did not get rendered due to their size.
                Instances For
                  theorem Turkish.TAM.one_asymmetric :
                  (List.filter (fun (x : TAMEntry) => !x.isNegSymmetric) entries).length = 1

                  Exactly one TAM category has asymmetric negation.

                  theorem Turkish.TAM.asymmetric_is_aorist :
                  ((List.filter (fun (x : TAMEntry) => !x.isNegSymmetric) entries).head!.category == TAMCategory.aorist) = true

                  The asymmetric category is the aorist.

                  theorem Turkish.TAM.non_aorist_symmetric :
                  ((List.filter (fun (e : TAMEntry) => e.category != TAMCategory.aorist) entries).all fun (x : TAMEntry) => x.isNegSymmetric) = true

                  All non-aorist categories use regular -mA- negation.

                  theorem Turkish.TAM.tam_negation_aorist_agreement :
                  ((List.filter (fun (x : TAMEntry) => !x.isNegSymmetric) entries).head!.category == TAMCategory.aorist) = true (List.filter (fun (e : Negation.NegParadigmEntry) => !e.symmetric) Negation.gelParadigm).head!.formLabel = "aorist"

                  Cross-file bridge: TAM and Negation agree that the aorist is asymmetric. TAM: asymmetric_is_aorist, Negation: aorist_asymmetric.