Person #
@cite{cysouw-2009} @cite{siewierska-2004}
Two components of the person API:
§ 1–4: Person Features (@cite{cysouw-2009}, @cite{siewierska-2004}). Framework-neutral decomposition of person into binary features:
- [±participant]: whether the referent includes a speech-act participant (speaker or addressee). 1st and 2nd person are [+participant]; 3rd person is [−participant].
- [±author]: whether the referent includes the speaker. 1st person is [+author]; 2nd and 3rd are [−author].
These features form a containment hierarchy: [+author] → [+participant]. An author (speaker) is necessarily a participant.
This decomposition is shared across theoretical frameworks:
- Minimalism: @cite{preminger-2014}, @cite{bejar-rezac-2009}
- Distributed Morphology: @cite{munoz-perez-2026} (Fission)
- Typology: @cite{cysouw-2009}, @cite{siewierska-2004}
The Minimalist-specific extension [±proximate]
(@cite{pancheva-zubizarreta-2018}) is added in
Theories/Syntax/Minimalism/PersonGeometry.lean.
§ 5–9: Person Categories (@cite{cysouw-2009}). The 8 referential person categories from Cysouw's paradigmatic framework. Three singular categories (individual speech act roles) and five group categories (attested combinations of participants).
The full paradigmatic structure machinery (morpheme classes, homophony types,
language data) remains in Phenomena/Agreement/PersonMarkingTypology.lean.
Binary person features: [±participant, ±author].
These two features suffice for the three-way person distinction:
- 1st person: [+participant, +author]
- 2nd person: [+participant, −author]
- 3rd person: [−participant, −author]
The fourth combination [−participant, +author] is ill-formed: an author (speaker) is necessarily a speech-act participant.
- hasParticipant : Bool
[+participant]: referent includes a speech-act participant (1P or 2P).
- hasAuthor : Bool
[+author]: referent includes the speaker (1P only for singulars).
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Features.Person.instReprFeatures = { reprPrec := Features.Person.instReprFeatures.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Well-formedness: [+author] → [+participant]. An author (speaker) is necessarily a participant.
Equations
- pf.wellFormed = (!pf.hasAuthor || pf.hasParticipant)
Instances For
1st person features: [+participant, +author].
Equations
- Features.Person.first = { hasParticipant := true, hasAuthor := true }
Instances For
2nd person features: [+participant, −author].
Equations
- Features.Person.second = { hasParticipant := true, hasAuthor := false }
Instances For
3rd person features: [−participant, −author].
Equations
- Features.Person.third = { hasParticipant := false, hasAuthor := false }
Instances For
Decompose PersonLevel into binary person features.
Equations
Instances For
Convert UD.Person to PersonLevel. The UD .zero (impersonal)
case has no PersonLevel analogue; everything else is direct.
Equations
- Features.Prominence.PersonLevel.ofUDPerson UD.Person.first = some Features.Prominence.PersonLevel.first
- Features.Prominence.PersonLevel.ofUDPerson UD.Person.second = some Features.Prominence.PersonLevel.second
- Features.Prominence.PersonLevel.ofUDPerson UD.Person.third = some Features.Prominence.PersonLevel.third
- Features.Prominence.PersonLevel.ofUDPerson UD.Person.zero = none
Instances For
The ill-formed combination [−participant, +author] is the only combination that violates well-formedness.
There are exactly 3 well-formed feature combinations (= 3 persons).
All person levels yield well-formed features.
PersonLevel.isSAP = Features.hasParticipant.
Person features are a PhiFeatures instance:
outer = hasParticipant, inner = hasAuthor.
All shared properties (no_four_way, specLevel, wellFormed,
injective) are inherited by construction.
Equations
- One or more equations did not get rendered due to their size.
The three canonical person values map to the three PrivativePair cells.
No 4-way singular person distinction (inherited from PhiFeatures).
The 8 referential person categories (@cite{cysouw-2009}, Fig 10.1).
Three singular categories (individual speech act roles) and five group categories (attested combinations of participants).
- s1 : Category
- s2 : Category
- s3 : Category
- minIncl : Category
- augIncl : Category
- excl : Category
- secondGrp : Category
- thirdGrp : Category
Instances For
Equations
- Features.Person.instDecidableEqCategory x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Features.Person.instReprCategory = { reprPrec := Features.Person.instReprCategory.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
All 8 categories in canonical order (singular, then group).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Is this a singular (individual) category?
Equations
- c.IsSingular = (c = Features.Person.Category.s1 ∨ c = Features.Person.Category.s2 ∨ c = Features.Person.Category.s3)
Instances For
Is this a group (non-singular) category?
Equations
- One or more equations did not get rendered due to their size.
Instances For
Is this part of the first person complex (contains speaker as part of a group)?
Equations
Instances For
Is this an inclusive category (contains both speaker and addressee)?
Equations
Instances For
Does this category include the speaker?
Equations
Instances For
Does this category include the addressee?
Equations
Instances For
Map singular Category to UD.Person.
Equations
Instances For
Map UD.Person to singular Category.
Equations
- Features.Person.Category.fromUDPerson UD.Person.first = some Features.Person.Category.s1
- Features.Person.Category.fromUDPerson UD.Person.second = some Features.Person.Category.s2
- Features.Person.Category.fromUDPerson UD.Person.third = some Features.Person.Category.s3
- Features.Person.Category.fromUDPerson UD.Person.zero = none
Instances For
Round-trip: UD.Person → Category → UD.Person is identity.
Map Category to traditional person × number pair.
Equations
- Features.Person.Category.s1.toUDPersonNumber = some (UD.Person.first, UD.Number.Sing)
- Features.Person.Category.s2.toUDPersonNumber = some (UD.Person.second, UD.Number.Sing)
- Features.Person.Category.s3.toUDPersonNumber = some (UD.Person.third, UD.Number.Sing)
- Features.Person.Category.minIncl.toUDPersonNumber = some (UD.Person.first, UD.Number.Dual)
- Features.Person.Category.augIncl.toUDPersonNumber = some (UD.Person.first, UD.Number.Plur)
- Features.Person.Category.excl.toUDPersonNumber = some (UD.Person.first, UD.Number.Plur)
- Features.Person.Category.secondGrp.toUDPersonNumber = some (UD.Person.second, UD.Number.Plur)
- Features.Person.Category.thirdGrp.toUDPersonNumber = some (UD.Person.third, UD.Number.Plur)
Instances For
UD conflates inclusive and exclusive under first person plural.
Decompose any Category into binary person features.
hasAuthor=includesSpeaker: the referent contains the speaker.hasParticipant=includesSpeaker ∨ includesAddressee: the referent contains at least one speech-act participant.
Features underdetermine group categories: excl, minIncl, and augIncl
all map to ⟨true, true⟩. The full Category type is needed for
number and inclusivity distinctions.
Equations
- Features.Person.Category.s1.toFeatures = { hasParticipant := true, hasAuthor := true }
- Features.Person.Category.s2.toFeatures = { hasParticipant := true, hasAuthor := false }
- Features.Person.Category.s3.toFeatures = { hasParticipant := false, hasAuthor := false }
- Features.Person.Category.minIncl.toFeatures = { hasParticipant := true, hasAuthor := true }
- Features.Person.Category.augIncl.toFeatures = { hasParticipant := true, hasAuthor := true }
- Features.Person.Category.excl.toFeatures = { hasParticipant := true, hasAuthor := true }
- Features.Person.Category.secondGrp.toFeatures = { hasParticipant := true, hasAuthor := false }
- Features.Person.Category.thirdGrp.toFeatures = { hasParticipant := false, hasAuthor := false }
Instances For
hasAuthor ↔ IncludesSpeaker for all categories.
hasParticipant ↔ IncludesSpeaker ∨ IncludesAddressee for all categories.
All 8 categories yield well-formed features.
Map singular Category to PersonLevel (the canonical three-way
person distinction used by PersonGeometry, DifferentialIndexing, etc.).
Group categories map to none — they encode number distinctions that
PersonLevel does not capture.
Equations
Instances For
Map PersonLevel to singular Category.
Equations
- Features.Person.Category.fromPersonLevel Features.Prominence.PersonLevel.first = Features.Person.Category.s1
- Features.Person.Category.fromPersonLevel Features.Prominence.PersonLevel.second = Features.Person.Category.s2
- Features.Person.Category.fromPersonLevel Features.Prominence.PersonLevel.third = Features.Person.Category.s3
Instances For
Round-trip: PersonLevel → Category → PersonLevel is identity.
includesSpeaker on Category = hasParticipant ∧ hasAuthor on
PersonLevel for singular categories: speaker (s1) = [+participant,
+author], addressee (s2) = [+participant, −author], other (s3) =
[−participant, −author]. This unifies the Category decomposition
in Spanish/PersonFeatures.lean with PersonGeometry.decomposePerson.
SAP (speech-act participant) = IncludesSpeaker ∨ IncludesAddressee
for singular categories. This matches PersonLevel.isSAP.
Singular categories: Category.toFeatures agrees with PersonLevel.toFeatures via the PersonLevel bridge.
Epistemic authority marking on verb agreement. @cite{bickel-nichols-2001}
Some languages (Akhvakh, Kathmandu Newari, Tibetan) mark whether the speaker has direct epistemic authority over the event. The morphological distinction cross-cuts person but correlates with it:
- conjunct: speaker has authority (1st person declarative, 2nd person interrogative)
- disjunct: speaker lacks authority (2nd/3rd declarative, 1st/3rd interrogative)
- conjunct : EpistemicAuthority
- disjunct : EpistemicAuthority
Instances For
Equations
- Features.Person.instDecidableEqEpistemicAuthority x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.