Documentation

Linglib.Core.Case.Syncretism

Case Syncretism @cite{blake-1994} #

@cite{baerman-2005} @cite{caha-2009}

Syncretism is the systematic neutralization of case distinctions: two or more cases share a single morphological exponent in some paradigm cells. @cite{blake-1994} documents syncretism patterns in Latin, Greek, and other IE languages. He observes that syncretisms cluster into groups (NOM+ACC vs. DAT+ABL) that are "significant on other grounds" (p. 22).

The adjacency constraint — that syncretic cases must be adjacent on the case hierarchy — is a generalization from the Nanosyntax tradition, not an explicit claim by Blake. Blake's data is consistent with it, and his ERG/INST syncretism (Australian languages) is the canonical exception, which he explains via historical derivation of ERG from INST (pp. 174–175).

Examples #

Formalization #

We define syncretism as a relation between two cases within a given inventory. hierarchyAdjacent checks strict adjacency (ranks differ by ≤ 1). inventoryAdjacent checks relaxed adjacency (no intervening case in the actual inventory).

A syncretism pattern: two cases share a morphological exponent.

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

      Are two cases adjacent on the hierarchy (same rank or ranks differ by 1)?

      This is the strict form of the adjacency constraint. In practice, some syncretisms span larger distances (e.g., ERG/INST in Australian languages), but the generalization is that adjacency is the norm.

      Equations
      Instances For
        def Core.inventoryAdjacent (inv : List Case) (c1 c2 : Case) :

        Relaxed adjacency: no case in the inventory falls strictly between the two syncretic cases on the hierarchy.

        This captures the idea that syncretism is "locally adjacent" within the language's actual inventory, even if non-adjacent on the full hierarchy. E.g., DAT/ACC might be adjacent in a system that lacks GEN.

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

          NOM/ACC syncretism (neuter nouns in Latin, Greek, Russian, etc.). Same rank — trivially adjacent.

          Equations
          Instances For

            COM/INST syncretism (WALS Ch. 52: many languages use one marker).

            Equations
            Instances For

              NOM/ACC syncretism satisfies strict adjacency (same tier).

              COM/INST syncretism satisfies strict adjacency (ranks 1, 2).

              DAT/LOC syncretism satisfies strict adjacency (ranks 4, 3).

              GEN/DAT syncretism satisfies strict adjacency (ranks 5, 4).

              ERG/INST syncretism does NOT satisfy strict adjacency (ranks 6, 2) — this is Blake's known exception, explained by historical derivation.

              But ERG/INST IS inventory-adjacent in a system with only {ERG, ABS, INST} (no GEN, DAT, LOC between them).

              Same-tier cases (NOM/ACC, ERG/ABS, ABL/INST) are always strictly adjacent. These are the most common syncretism targets cross-linguistically.

              theorem Core.neuter_syncretism_contiguous :
              { nom := 0, acc := 0, gen := 1, dat := 1 }.isContiguous = true

              NOM/ACC syncretism (neuter paradigms): NOM=ACC share form 0, GEN and DAT have form 1. AABB pattern — contiguous.

              theorem Core.nom_gen_without_acc_violates_aba :
              { nom := 0, acc := 1, gen := 0, dat := 1 }.violatesABA = true

              NOM/GEN syncretism without ACC syncretism would be an ABA pattern — predicted NOT to occur by @cite{caha-2009}.

              theorem Core.acc_gen_syncretism_contiguous :
              { nom := 0, acc := 1, gen := 1, dat := 2 }.isContiguous = true

              ACC/GEN syncretism with distinct NOM and DAT: ABBC — contiguous.

              theorem Core.gen_dat_syncretism_contiguous :
              { nom := 0, acc := 1, gen := 2, dat := 2 }.isContiguous = true

              GEN/DAT syncretism: NOM and ACC distinct from GEN=DAT. AABC — contiguous.

              theorem Core.nom_dat_syncretism_violates_aba :
              { nom := 0, acc := 1, gen := 1, dat := 0 }.violatesABA = true

              NOM/DAT syncretism (skipping ACC and GEN): ABBA — violates *ABA. The containment hierarchy predicts this cannot occur: DAT contains ACC, so any form shared by NOM and DAT must also be shared by ACC.

              ERG/INST syncretism (@cite{blake-1994}, pp. 174–175) is NOT adjacent on Blake's hierarchy (ranks 6 vs 2), but Anderson's feature decomposition explains it: both ERG and INST share the {src} feature. ERG = abs+src (by subject formation, eq. 40); INST = src (source of force). The shared src feature makes syncretism natural despite hierarchy non-adjacency.

              NOM/ACC syncretism (neuter nouns) is explained by Anderson: both are absolutive-containing relations. NOM = abs{erg} by subject formation (eq. 40); ACC = abs{goal}. They share the abs feature.

              ABL/LOC syncretism is explained by Anderson: both map to {loc}.