Case Grammaticalization #
@cite{heine-2009}
The case-marker grammaticalization cline (lexical > adposition > case
affix > loss) and the extension paths from Heine (2009) Table 29.6.
Three extension targets in Table 29.6 are not representable as Case
values and are omitted: purposive (from allative, benefactive),
manner (from comitative, instrumental), agent (from locative;
collapses with ergative in our system).
Extension is the relation Case.Extends : Case → Case → Prop (Heine's
Table 29.6 row pattern). Multi-step extension is just
Relation.TransGen Case.Extends from mathlib — there is no separate
two-step or n-step predicate to maintain.
Source category of a case marker on the grammaticalization cline (@cite{heine-2009} §29.1 eq. (1), §29.2).
noun, verb (> adverb) > adposition > case affix > loss
Parallel to Diachronic.Grammaticalization.GramStage (for verbal
elements), but specific to case-marker development.
- lexical : CaseGramStage
Lexical noun or verb source (§29.2.1–29.2.2).
- adposition : CaseGramStage
Free adposition: preposition or postposition (§29.2.3).
- caseAffix : CaseGramStage
Bound case affix: suffix or prefix (§29.2.3 endpoint).
- lost : CaseGramStage
Case marker lost: erosion endpoint or merger.
Instances For
Equations
- Core.instDecidableEqCaseGramStage x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Core.instReprCaseGramStage = { reprPrec := Core.instReprCaseGramStage.repr }
Equations
- One or more equations did not get rendered due to their size.
- Core.instReprCaseGramStage.repr Core.CaseGramStage.lexical prec✝ = Repr.addAppParen (Std.Format.nest (if prec✝ ≥ 1024 then 1 else 2) (Std.Format.text "Core.CaseGramStage.lexical")).group prec✝
- Core.instReprCaseGramStage.repr Core.CaseGramStage.lost prec✝ = Repr.addAppParen (Std.Format.nest (if prec✝ ≥ 1024 then 1 else 2) (Std.Format.text "Core.CaseGramStage.lost")).group prec✝
Instances For
Boundedness increases monotonically along the case cline.
Equations
Instances For
Equations
Direct extension between case functions (@cite{heine-2009} Table 29.6).
Case.Extends c₁ c₂ holds iff a single row of Heine's table licenses
extending a c₁-marker to c₂ uses. Direction is concrete/peripheral
→ abstract/core: the source function is less grammaticalized than the
target.
See also Typology.Possession.PossessionSource for
@cite{heine-2009} Table 29.5 (possessive case sources, adapted from
@cite{heine-1997}).
Equations
- Core.Case.Extends UD.Case.Abl UD.Case.Cau = True
- Core.Case.Extends UD.Case.Abl UD.Case.Gen = True
- Core.Case.Extends UD.Case.Abl UD.Case.Par = True
- Core.Case.Extends UD.Case.Abl UD.Case.Ins = True
- Core.Case.Extends UD.Case.All UD.Case.Ben = True
- Core.Case.Extends UD.Case.All UD.Case.Dat = True
- Core.Case.Extends UD.Case.All UD.Case.Acc = True
- Core.Case.Extends UD.Case.Com UD.Case.Ins = True
- Core.Case.Extends UD.Case.Com UD.Case.Erg = True
- Core.Case.Extends UD.Case.Com UD.Case.Gen = True
- Core.Case.Extends UD.Case.Dat UD.Case.Acc = True
- Core.Case.Extends UD.Case.Ins UD.Case.Erg = True
- Core.Case.Extends UD.Case.Loc UD.Case.Com = True
- Core.Case.Extends UD.Case.Loc UD.Case.Erg = True
- Core.Case.Extends UD.Case.Loc UD.Case.Ins = True
- x✝¹.Extends x✝ = False
Instances For
Direct-extension targets of c, as a Finset derived from
Case.Extends. Useful for membership queries by decide.
Equations
- c.extensionTargets = Finset.filter c.Extends Finset.univ
Instances For
Case.Extends itself is the public Table 29.6 spec — concrete
extension facts (Case.Extends .abl .inst, ¬ Case.Extends .nom .acc,
etc.) are immediate by decide against the def and need not be
re-stated as a thicket of named theorems. The chain theorems below
bundle multiple table rows into the named Heine (2009) eq. (2)
chains.
Chain (2a): allative > benefactive > purposive. Only the first step is representable as Case → Case.
Chain (2b): allative > dative > accusative/O. Both steps are direct extensions.
Chain (2c): locative > comitative > instrumental > manner. The first two steps are representable as Case → Case.
Multi-step extension reachability — the transitive closure of
Case.Extends. Composing chain rows of Table 29.6 produces an
extension path of any finite length.
Equations
- Core.Case.ExtensionReachable = Relation.TransGen Core.Case.Extends
Instances For
Case.ExtensionReachable is decidable via the
Core.Relation.ReflTransGen substrate's TransGen Fintype headline.
The step function is Case.extensionTargets.
Equations
- One or more equations did not get rendered due to their size.
Accusative is reachable from allative via dative (chain 2b).
Instrumental is reachable from locative via comitative (chain 2c).