Documentation

Linglib.Phenomena.Case.Studies.Baker2015

Baker (2015) — Case: Its Principles and Its Parameters #

@cite{baker-2015} @cite{marantz-1991} @cite{baker-vinokurova-2010}

@cite{baker-2015}'s monograph takes the dependent case algorithm originally proposed by @cite{marantz-1991} and refined by @cite{baker-vinokurova-2010} for Sakha and develops it as a cross- linguistic theory of morphological case, sweeping accusative, ergative, and split-ergative systems under one assignment mechanism. The algorithm:

  1. Lexical case assigned by selecting heads (highest priority)
  2. Dependent case assigned to one of two distinct caseless NPs in the same domain — ACC to the lower NP in accusative alignment, ERG to the higher NP in ergative alignment
  3. Unmarked case assigned to remaining caseless NPs — NOM in accusative, ABS in ergative
  4. Default case as last resort (not modeled here)

This study file runs Theories/Syntax/Case/Dependent.lean's assignCases over representative languages from each of Baker's typological columns and proves the output matches the surface case patterns documented in the Fragment inventories.

Structure #

The ABS/NOM Mismatch in Split-Ergative Languages #

The dependent case algorithm assigns ABS (.abs) as the unmarked case in ergative alignment. Hindi and Georgian, however, realize this function morphologically as NOM (no overt marker), not as a distinct ABS form — their inventories contain ERG (the dependent case) but not ABS. @cite{baker-2015} treats this as the canonical abstract-vs-morphological case distinction inherited from @cite{marantz-1991}: many split-ergative languages have a syncretic unmarked case serving both nominative (accusative frames) and absolutive (ergative frames) functions.

@cite{baker-vinokurova-2010}'s Sakha analysis is the empirical foundation of one of Baker's columns; that paper's full derivations live in Phenomena/Case/Studies/BakerVinokurova2010.lean and are not duplicated here. Marantz's original abstract-vs-morphological case distinction and its Georgian application live in Phenomena/Case/Studies/Marantz1991.lean.

Hindi and Georgian are split-ergative: accusative alignment in some tense/aspect contexts, ergative alignment in others. We prove: (1) Full accusative structural coverage (NOM, ACC ∈ inventory) (2) ERG ∈ inventory (the dependent case in ergative frames) (3) ABS ∉ inventory — these languages realize the absolutive function morphologically as NOM, so the algorithm's ABS output maps to a case that is in the inventory under a different label.

ABS is not in Hindi's inventory: the absolutive function (unmarked S/P in perfective) is morphologically NOM.

But NOM IS in the inventory, documenting the ABS → NOM syncretism.

ABS is not in Georgian's inventory: the absolutive function is morphologically NOM in both aorist (ergative) and present (accusative) frames.

German Derivations #

"Der Mann sieht die Frau" (The man sees the woman)

"Der Mann schläft" (The man sleeps)

Equations
Instances For

    Turkish Derivations #

    "Adam kadını gördü" (The man saw the woman)

    "Adam uyudu" (The man slept)

    Equations
    Instances For

      Basque Derivations (Ergative) #

      "Gizonak mutila ikusi du" (The man-ERG boy-ABS see AUX)

      "Mutila etorri da" (The boy-ABS come AUX)

      Equations
      Instances For

        Hindi Split-Ergative Derivations #

        Hindi perfective transitive: "Raam-ne roTii khaayii" (Ram-ERG bread-NOM ate) — ergative alignment

        Hindi imperfective transitive: "Raam roTii khaataa hai" (Ram-NOM bread-ACC eats AUX) — accusative alignment

        The same structural configuration (agent + patient) yields different case frames depending on the tense/aspect conditioning of the split.

        Equations
        Instances For

          In the perfective (ergative alignment), ERG is in the inventory but ABS is not — it is realized as NOM. The agent case (ERG) is correctly predicted; the patient case (ABS → NOM) requires the morphological identity documented in § 1.

          Georgian Split-Ergative Derivations #

          Georgian aorist transitive: "K'ac-ma bavšv-i naxa" (Man-ERG child-NOM saw) — ergative alignment

          Georgian present transitive: "K'ac-i bavšv-s xedavs" (Man-NOM child-DAT sees) — accusative-like, with lexical DAT on object

          In the present series, the patient receives lexical DAT from the verb, not structural ACC from dependent case.

          Equations
          Instances For
            Equations
            Instances For

              In the present series, lexical DAT on the patient bleeds dependent ACC: the agent gets NOM (no case competitor) and the patient gets DAT (lexical from V). Both are in Georgian's inventory.

              @cite{coon-2013}'s Chol monograph licenses ERG as inherent case from transitive v. Marantz/Baker dependent case derives the same surface case pattern from a structural-configurational rule (lower NP gets ERG-as-dependent in the higher-NP-as-caseless configuration). The two accounts agree on the surface case table for Chol perfective monotransitive clauses but disagree on the licensing mechanism: Coon's ERG is licensed lexically by v⁰; Baker's ERG is licensed configurationally by the presence of a c-commanding caseless NP.

              The agreement at the table level is provable here: both Baker's
              `Alignment.ergative.assignCase` (the Phase-4 typological ground truth) and
              the Chol fragment's `ergCase` (which derives from the same function via
              `Mayan.ergCaseExtErg`) produce identical case for A/S/P. The disagreement
              is invisible at this level — it shows up only when one asks *why* a given
              case appears, not *which* case appears.
              
              See `Phenomena/Case/Studies/Woolford1997.lean` for the inherent-ergative
              defense against the dependent derivation; see
              `Phenomena/Ergativity/Studies/CoonMateoPedroPreminger2014.lean` for the
              Chol-specific extraction-asymmetry argument. 
              

              Configurational ↔ functional equivalence (the load-bearing bridge) #

              The real cross-framework claim isn't that the Chol fragment matches the Phase-4 typological function — that holds tautologically by construction (Phase 3 derives the Mayan substrate from the Phase-4 functions). The non-trivial claim is that assignCases (Marantz/Baker's configurational algorithm) and Alignment.ergative.assignCase (the typological-functional ground truth) compute the same case for each argument role, even though they do so by entirely different mechanisms:

              If the two ever diverged on the surface table, one of the layers would be empirically wrong. The equivalence theorems below verify they don't, through decide over the actual computation.

              Bijection from monotransitive ArgumentRole to NP labels in Baker's list-based domain representation. The agent c-commands the patient (Marantz/Baker convention: list-position-first = highest), so A maps to the first NP and P to the second.

              Equations
              Instances For

                Bijection for the intransitive case: a single NP labeled "subject" is the sole argument S.

                Equations
                Instances For

                  Configurational ↔ functional equivalence on the ergative monotransitive table. Marantz/Baker's assignCases .ergative over a 2-NP domain produces the same case for "agent"/"patient" as the typological Alignment.ergative.assignCase produces for .A/.P. The proof goes through decide over the actual list-pattern-match computation in assignCases — NOT through definitional equality, since the two functions have completely different bodies. If dependentErgative's c-command rule ever diverged from the typological table, this would fail.

                  Same equivalence for the intransitive case. assignCases .ergative on a single NP returns ABS via the unmarked-case fallback; Alignment.ergative.assignCase .S returns ABS via direct lookup. They agree.

                  Same equivalence for accusative alignment. Marantz/Baker's accusative dispatch produces the same per-role case as Alignment.nominativeAccusative.assignCase. The Mayan fragment doesn't use this branch (Mayan doesn't have nominative-accusative monotransitive clauses), but the equivalence is symmetric — Baker's algorithm and the typological function agree on accusative as well as ergative.

                  The equivalence at the surface case level (theorems above) does NOT extend to the licensing source level. Marantz/Baker's algorithm labels Chol's perfective ergative case as .dependent (configurational — assigned by the c-command rule). @cite{coon-2013}'s inherent-from-v account would label it as .lexical (assigned by selecting head v⁰). The two accounts disagree on what licenses the case, even though they agree on which case appears.

                  This theorem makes the disagreement formal: the dependent algorithm assigns source .dependent to the agent in a Chol-like ergative transitive — a label distinct from .lexical, the source Coon's inherent-from-v account would predict if formalized as a function of the same shape.

                  The Chol fragment's case table (Phase 3) inherits the equivalence automatically: since Chol.ArgPosition.agent.ergCase is definitionally equal to Alignment.ergative.assignCase .A (via the Phase-3 substrate chain), the equivalence theorem above immediately yields getCaseOf "agent" (assignCases .ergative transitiveMonoNPs) = some Fragments.Mayan.Chol.ArgPosition.agent.ergCase. We state this one Chol-specific corollary explicitly so downstream Mayan consumers can cite it directly.

                  Dependent case is INSUFFICIENT for extended ergative. The Chol non-perfective S/A → GEN, P → ABS pattern is a fourth typological arrangement that Baker's algorithm cannot derive without auxiliary nominalization machinery. @cite{coon-2013} supplies that machinery via embedded nominalization; @cite{imanishi-2020} via parameterized inherent vs structural Case. Either way, Baker's algorithm alone is not a complete theory of ergative-class case assignment.