Documentation

Linglib.Core.Case.Order

Caha Containment Order on Case #

@cite{caha-2009} @cite{mcfadden-2018}

The canonical order on Core.Case: state-of-the-art syntax (configurational case + nanosyntactic spellout) assumes Caha's containment as the default. Each case on the hierarchy literally contains the representations of all cases below it:

[[[[[ NOM ] ACC ] GEN ] DAT ] LOC ]

Cases without a containmentRank (ERG, ABS, INST, COM, …) are silent — incomparable with on-hierarchy cases under , except for reflexivity. That silence is the theoretical content: Caha's hierarchy is silent on those cases, and the PartialOrder structure preserves the silence.

Other orders (Blake's typological frequency in Core/Case/Hierarchy.lean, per-language syncretism graphs) live as named defs used locally via letI rather than as competing instances on Case.

def Core.Case.containmentRank :
CaseOption

Caha's containment rank (@cite{caha-2009}). Cases higher on the containment hierarchy have representations that include all lower cases.

[[[[[ NOM ] ACC ] GEN ] DAT ] LOC ]

Returns none for cases not on the containment hierarchy (e.g., ERG/ABS in ergative systems, or minor cases whose containment structure is less well established).

Encoding caveat. @cite{caha-2009} (10b), p. 10 gives the Universal Case sequence NOM-ACC-GEN-DAT-INST-COM (no LOC); the Russian-specific sequence (16) p. 12 inserts PREP between GEN and DAT. The encoding below — NOM=0, ACC=1, GEN=2, DAT=3, LOC=4, INST=none — matches neither verbatim; it is closer to Blake's typological hierarchy (@cite{blake-1994} §5.8, which Caha himself argues on p. 31 should coincide with his sequence). For Slavic 6-case inventories the encoding choice is verdict-equivalent; inventories with INST or COM without LOC may diverge. For paradigm-shape work that needs Caha's actual Slavic ordering, see cahaSlavicRank below.

Equations
Instances For
    def Core.Case.cahaSlavicRank :
    CaseOption (Fin 6)

    Caha's Slavic-specific Case sequence (@cite{caha-2009} (16) p. 12 for Russian; (7) p. 238 confirms the same for Serbian): NOM – ACC – GEN – PREP/LOC – DAT – INS. Differs from containmentRank in placing LOC between GEN and DAT (not at top) and INST at the top (not off-hierarchy). Use this rank for paradigm-shape contiguity claims referencing Caha's Slavic data; use containmentRank for inventory downward-closure verdicts (where the choice is Slavic-equivalent).

    Returns Fin 6 rather than Option Nat: all six cases are on-hierarchy in Caha's Slavic encoding; there are no off-hierarchy cases for the Slavic noun system. The Option is preserved for consistency with containmentRank's API and to flag non-Slavic cases as not-in-the-Slavic-sequence.

    Equations
    Instances For

      cahaSlavicRank and containmentRank agree on the four core cases (NOM=0, ACC=1, GEN=2 in both) and disagree on LOC/DAT/INST. The disagreement is deliberate: containmentRank is verdict-equivalent on Slavic inventories for downward-closure (RespectsCahaContainment), while cahaSlavicRank is needed for paradigm-shape contiguity claims that respect Caha's actual Slavic sequence.

      def Core.Case.cahaLT (c₁ c₂ : Case) :

      Strict containment on Caha-rank Cases: both must have a rank, and the first's must be strictly smaller. False whenever either side is off-hierarchy.

      Equations
      Instances For
        @[implicit_reducible]
        instance Core.Case.instDecidableCahaLT :
        DecidableRel cahaLT
        Equations
        • One or more equations did not get rendered due to their size.
        def Core.Case.cahaLE (c₁ c₂ : Case) :

        The Caha containment order. c₁ ≤ c₂ iff either they are equal, or cahaLT c₁ c₂. Off-hierarchy cases are reflexively themselves and incomparable with everything else.

        Equations
        Instances For
          @[implicit_reducible]
          Equations
          @[implicit_reducible]
          instance Core.Case.instLE :
          LE Case
          Equations
          @[implicit_reducible]
          instance Core.Case.instDecidableLe (c₁ c₂ : Case) :
          Decidable (c₁ c₂)
          Equations
          theorem Core.Case.cahaLT_trans {a b c : Case} :
          a.cahaLT bb.cahaLT ca.cahaLT c
          theorem Core.Case.cahaLE_trans (a b c : Case) :
          a bb ca c
          theorem Core.Case.cahaLE_antisymm (a b : Case) :
          a bb aa = b
          @[implicit_reducible]
          instance Core.Case.instPreorder :
          Preorder Case
          Equations
          • One or more equations did not get rendered due to their size.
          @[implicit_reducible]
          instance Core.Case.instPartialOrder :
          PartialOrder Case
          Equations

          A case is nonnominative iff its representation contains ACC's, i.e. (.acc : Case) ≤ c in the Caha order. @cite{mcfadden-2018} argues this is the key natural class for stem allomorphy: a VI rule conditioned on [ACC] captures the NOM-vs-oblique split found cross-linguistically.

          Equations
          Instances For

            A case is oblique iff its representation contains GEN's, i.e. (.gen : Case) ≤ c in the Caha order. Per @cite{caha-2009}'s Unmarked-Dependent vs Oblique split, NOM/ACC are unmarked-dependent and GEN/DAT/LOC/INS/COM/etc. are oblique. Ergative-aligned ABS/ERG are off-hierarchy in containmentRank and so satisfy ¬ IsOblique (consistent with their parallel-to-NOM/ACC structural status).

            Equations
            Instances For

              The four core McFadden-hierarchy cases stratify cleanly between non-oblique (NOM, ACC) and oblique (GEN, DAT).

              Ergative-aligned ABS/ERG are not oblique under the Caha hierarchy (off-hierarchy → incomparable with GEN). This makes the predicate usable for SMSE 2019-style ergative paradigms (Wardaman, Khinalugh).

              Off-hierarchy cases (ERG) are incomparable with on-hierarchy cases.