Documentation

Linglib.Studies.AndersonJM2006

Anderson (2006): Modern Grammars of Case [And06b] #

[And06b] "Modern Grammars of Case: A Retrospective" (OUP) develops localist case grammar (LCG), where all semantic relations decompose into combinations of three first-order case features: absolutive (abs), source/ergative (src), and locative (loc).

Anderson's system (Ch. 6, eq. 11) #

The four simple case relations are:

Arguments bear COMBINATIONS of first-order features to define complex roles (§6.2–6.3):

Subject selection (eq. 38') #

Anderson directly states: erg > abs. The argument with first-order source becomes subject. If no argument has source, the absolutive becomes subject. The hierarchy is NOT derived from feature cardinality.

Subject formation (eq. 40): absolutive ⇒ absolutive{erg}. When an absolutive is selected as subject, it acquires the erg feature.

Improvement over the two-feature model #

Our earlier formalization incorrectly used only two features (abs, erg) and collapsed experiencer with agent as {abs, erg}. Anderson's actual system DISTINGUISHES them: agent = {src}, experiencer = {src, loc}. Both have src (so both can be subjects), but they differ in the loc feature. The third feature (loc) is essential to Anderson's theory.

Costs #

The three-feature system collapses some Fragment distinctions:

Three first-order case features [abs, src, loc], the 8 case relations that arise as their feature bundles, the subject-selection hierarchy over those bundles, predicate scenarios (argument-structure tuples of relations), and the morphological-case → relation map. Originally landed as standalone substrate in Features/Case/Basic.lean; inlined here because only this study consumes it.

Anderson's three first-order case features (Ch. 6).

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

      An argument's case specification: a bundle of first-order features (Ch. 6).

      A CaseRelation is a Finset CaseFeature — the powerset of the three primitive features. The 8 possible bundles are exactly Finset.powerset of Finset.univ. Containment (), the empty bundle (), the full bundle (Finset.univ), and meet/join are inherited from Finset's BooleanAlgebra instance.

      Equations
      Instances For

        The full feature set is Finset.univ and equals the 3-feature top.

        @[reducible]

        Convenience accessors for the three features.

        Equations
        Instances For
          @[reducible]
          Equations
          Instances For
            @[reducible]
            Equations
            Instances For

              The subject selection rank (eq. 38'). src (agent) outranks abs (patient) outranks loc (spatial).

              Codomain Fin 3 — three tiers, type-level boundedness.

              Equations
              Instances For

                The src feature alone determines subject rank 2 — regardless of other features. This is why ergative, experiencer (srcLoc), and self-mover (srcAbs) all tie for highest subject rank.

                Without src, the abs feature determines rank 1. This is why absolutive and contactive (absLoc) tie at the second tier.

                Anderson's absSrcLoc is the top of the feature lattice.

                Anderson's neutral (the empty bundle) is the bottom of the feature lattice.

                theorem AndersonJM2006.CaseRelation.card_all :
                Finset.univ.powerset.card = 8

                The 8 possible case relations are exactly (Finset.univ : Finset CaseFeature).powerset. Cardinality follows from Finset.card_powerset.

                A predicate's scenario (Ch. 6): the case relations assigned to its arguments.

                Instances For
                  Equations
                  Instances For
                    Equations
                    Instances For

                      Anderson's CaseCaseRelation map lives under namespace Syntax so it can be invoked via dot-notation on c : Case (mirroring how Case.hierarchyRank and the Caha containment defs project onto the type).

                      Anderson's canonical mapping from case-feature bundles to theta roles.

                      The three-feature system makes finer distinctions than the old two-feature version: experiencer ({src, loc}) is now SEPARATE from agent ({src}).

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

                        Anderson's derivations from Chapter 6 (eq. 39) show how the three-feature system assigns case relations to English verb arguments. For each verb, the subject is the argument with the highest subjectRank.

                        Eq. 39a: "Bill read the book" — erg + abs. Agent (src, rank 2) + patient (abs, rank 1). Agent is subject.

                        Eq. 39b: "Bill fell to the ground" — abs + loc{goal}. Theme (abs, rank 1) + locative goal (loc, rank 0). Theme is subject.

                        theorem AndersonJM2006.flew_derivation :
                        have selfMover := CaseRelation.srcAbs; have goal := CaseRelation.locative; selfMover.subjectRank > goal.subjectRank

                        Eq. 39c: "Bill flew to China" — abs,erg + loc{goal}. Self-mover (abs+src, rank 2) + goal (loc, rank 0). Self-mover is subject.

                        theorem AndersonJM2006.knew_derivation :
                        have experiencer := CaseRelation.srcLoc; have stimulus := CaseRelation.absolutive; experiencer.subjectRank > stimulus.subjectRank

                        Eq. 39h: "Bill knew the answer" — E + abs = erg,loc + abs. Experiencer (src+loc, rank 2) + stimulus (abs, rank 1). Experiencer is subject because it has src.

                        Anderson's key distinction: experiencer ≠ agent in feature content, but BOTH outrank absolutive. Agent = {src}, experiencer = {src, loc}. The loc feature distinguishes them without affecting subject selection.

                        Derive Anderson's Scenario from a Fragment verb entry's derived roles (Verb.subjectRole/objectRole, the canonical theta-grid).

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

                          Anderson's case grammar as a LinkingTheory ([And06b]). The verb type is Scenario, the context is Unit (lexicalist: linking is derived entirely from case-relation rank, no structural input).

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

                            The three-feature system correctly predicts experiencer as subject, which the old two-feature system collapsed into agent.

                            Anderson's prediction is defined iff the verb's derived subject role maps to a src/abs-bearing case relation. Want-class subjects fall outside that coverage: their [Dow91]-honest profile is bare independent existence ((29e), the desire class template), whose role label goal maps to locative {loc} — a case relation canonicalTheta cannot link to subject. For every other verb, prediction definedness tracks role definedness exactly.

                            The coverage gap is non-vacuous: want has a derived subject role (goal, from the desire-class IE-only profile) but no Anderson subject prediction.

                            The three-feature system collapses fewer roles than the old two-feature model. Experiencer is now correctly distinguished from agent. The remaining collapses are:

                            Patient and theme both map to {abs}, but [Dow91] distinguishes them: patient has 3 P-Patient entailments, theme has only 1.

                            The three-feature system correctly separates experiencer from agent. This is the key improvement over the old two-feature formalization.

                            Experiencer subject verbs are now correctly predicted as experiencer, not collapsed into agent (for verbs with entailment profiles).

                            Anderson and Blake are concordant on the core case ordering. Blake: NOM(6) ≥ ACC(6). Anderson: NOM/src+abs outranks ACC/abs (subjectRank 2 > 1). Both are inverse to Caha's containment hierarchy.

                            Does a morphological case carry the spatial locative feature? ABL, LOC both map to {loc} — they share the locative feature because they involve spatial location.

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

                              ABL and LOC both map to Anderson's locative case relation.

                              INST maps to {src} (source of force), not {loc}. Anderson argues that instrumental is the same semantic relation as agent: both are sources of action.

                              ABL and LOC share a case relation AND have an extension path between them. Anderson's explanation: a case marker conditioned on {loc} is polysemous across spatial functions.

                              Accusative and ergative alignment are different morphological labels for the same two case relations: NOM = ERG = src+abs, ACC = ABS = abs. The case relations are identical; alignment is labeling.

                              Anderson and Dowty agree on transitive linking despite completely different primitives (features vs entailment profiles).

                              The three-feature system improves on the old two-feature version for the experiencer case: Anderson distinguishes experiencer from agent (via loc), as does Dowty (different P-Agent entailment count).