Case Containment and Syncretism #
@cite{caha-2009} @cite{mcfadden-2018} @cite{bobaljik-2012} @cite{blake-1994}
Containment #
@cite{caha-2009} proposes that the morphosyntactic representation of each case on the hierarchy literally contains the representations of all cases below it:
[[[[[ NOM ] ACC ] GEN ] DAT ] P ]
This means ACC's representation includes NOM's; GEN's includes both ACC's and NOM's; etc. A Vocabulary Insertion rule conditioned on feature F therefore matches every case whose representation contains F. A rule conditioned on ACC matches ACC, GEN, DAT, and P — the set of all nonnominative cases — explaining the widespread NOM vs. oblique split in stem allomorphy (@cite{mcfadden-2018}).
The *ABA Constraint #
@cite{bobaljik-2012} and @cite{caha-2009} observe that case-conditioned suppletion obeys a contiguity restriction: if two cases X and Z (with X ⊂ Y ⊂ Z on the hierarchy) share a suppletive form A, then the case Y between them must also have form A. The pattern A–B–A (with B ≠ A) is systematically unattested. This is the *ABA constraint.
The constraint falls out from containment: if a VI rule inserts form B in the context of feature F, and Y's representation contains F, then so does Z's (since Z ⊃ Y ⊃ X). There is no way for Z to "skip" B and revert to A.
Syncretism #
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.
Connection to Blake #
Core.Case.Hierarchy formalizes Blake's typological hierarchy — an
implicational tendency about which cases languages tend to have.
Caha's containment hierarchy is a different object: a syntactic
claim about the internal structure of case representations. The two
are complementary, not competing.
Caha's containment rank (@cite{caha-2009}). Cases higher on the containment hierarchy have representations that include all lower cases.
[[[[[ NOM ] ACC ] GEN ] DAT ] P ]
The P(ostpositional) layer includes LOC and other spatial cases whose representations contain the full case spine.
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).
Equations
- Theories.Morphology.CaseContainment.containmentRank Core.Case.nom = some 0
- Theories.Morphology.CaseContainment.containmentRank Core.Case.acc = some 1
- Theories.Morphology.CaseContainment.containmentRank Core.Case.gen = some 2
- Theories.Morphology.CaseContainment.containmentRank Core.Case.dat = some 3
- Theories.Morphology.CaseContainment.containmentRank Core.Case.loc = some 4
- Theories.Morphology.CaseContainment.containmentRank x✝ = none
Instances For
Does case inner have a representation contained within case outer?
True when inner.containmentRank ≤ outer.containmentRank.
Equations
- One or more equations did not get rendered due to their size.
Instances For
NOM is contained in every case on the hierarchy.
ACC is contained in GEN, DAT, and LOC but not NOM.
Every case contains itself.
Containment is transitive.
The set of nonnominative cases on the containment hierarchy: those whose representation contains ACC.
@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
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Theories.Morphology.CaseContainment.instBEqAllomorphyPattern.beq x✝¹ x✝ = false
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Does a pattern contain an ABA subsequence? An ABA violation occurs when two non-adjacent cases on the containment hierarchy share a form that the intervening case does not.
Equations
Instances For
Is a pattern contiguous? Each form class occupies a contiguous span on the containment hierarchy. Equivalent to ¬violatesABA.
Equations
Instances For
Equations
- Theories.Morphology.CaseContainment.abbPattern = { nom := 0, acc := 1, gen := 1, dat := 1 }
Instances For
Equations
- Theories.Morphology.CaseContainment.aabPattern = { nom := 0, acc := 0, gen := 0, dat := 1 }
Instances For
Equations
- Theories.Morphology.CaseContainment.aabbPattern = { nom := 0, acc := 0, gen := 1, dat := 1 }
Instances For
Equations
- Theories.Morphology.CaseContainment.ababPattern = { nom := 0, acc := 1, gen := 0, dat := 1 }
Instances For
Equations
- Theories.Morphology.CaseContainment.abaPattern = { nom := 0, acc := 1, gen := 0, dat := 0 }
Instances For
Equations
- Theories.Morphology.CaseContainment.babPattern = { nom := 1, acc := 0, gen := 1, dat := 0 }
Instances For
Equations
- Theories.Morphology.CaseContainment.uniformPattern = { nom := 0, acc := 0, gen := 0, dat := 0 }
Instances For
Containment rank preserves Blake's typological ordering on the core cases (NOM, ACC, GEN, DAT): the orderings are inverses. Blake ranks by "how likely a language is to have it" (NOM most common → highest), while containment ranks by "how much structure it contains" (NOM least complex → lowest).
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)?
Equations
- Theories.Morphology.CaseContainment.hierarchyAdjacent c1 c2 = (c1.hierarchyRank == c2.hierarchyRank || c1.hierarchyRank + 1 == c2.hierarchyRank || c2.hierarchyRank + 1 == c1.hierarchyRank)
Instances For
Relaxed adjacency: no case in the inventory falls strictly between the two syncretic cases on the hierarchy.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
Instances For
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}.
Same-tier cases are always strictly adjacent.
ABL/LOC syncretism: both map to {loc}.