Documentation

Linglib.Theories.Syntax.Minimalism.Core.PersonGeometry

Person Feature Geometry @cite{preminger-2014} #

@cite{bejar-rezac-2009} @cite{pancheva-zubizarreta-2018}

@cite{preminger-2014} decomposes phi-features into a hierarchical geometry where person sub-features are organized in a containment hierarchy:

[φ] → [PERSON] → [participant] → [author]
[φ] → [NUMBER] → [plural]

This decomposition drives relativized probing: a probe seeking [participant] skips DPs that lack it (3rd person), targeting only 1st/2nd person DPs. A separate probe seeking [plural] skips DPs that lack it (singulars), targeting only plurals.

The two-probe system derives the omnivorous agreement hierarchy in Kaqchikel Agent Focus:

[+participant] (π⁰) > [+plural] (#⁰) > default (3SG)

π⁰ outranks #⁰ because person probing takes priority over number probing. If π⁰ succeeds, its target determines the marker; if it fails, #⁰ provides the result; if both fail, the default surfaces.

Extended Geometry: [±proximate] #

@cite{pancheva-zubizarreta-2018} extend the hierarchy with a [±proximate] feature for the Person Case Constraint:

[+author] ⊂ [+participant] ⊂ [+proximate]

1P and 2P are inherently [+proximate]. 3P arguments are [-proximate] by default but can be contextually marked [+proximate] (when co-occurring with another 3P). The [±proximate] distinction also captures the 3P proximate/obviative split in direct/inverse alignment systems (@cite{pancheva-zubizarreta-2018}, §2.1 (11)).

Relationship to Core PersonFeatures #

DecomposedPerson extends Core.Person.Features (the framework-neutral [±participant, ±author] decomposition) with the Minimalism-specific [±proximate] feature. The two-feature core is shared across all theoretical frameworks; [±proximate] is specific to @cite{pancheva-zubizarreta-2018}'s P-Constraint.

Person Type #

decomposePerson takes Core.Prominence.PersonLevel (.first | .second |.third) — the canonical person type shared across the library — rather than a raw Nat. This eliminates meaningless person values and grounds the decomposition in the same type used by DifferentialIndexing, Prominence.PersonLevel.isSAP, etc.

Person features decomposed according to @cite{preminger-2014}'s geometry, extended with [±proximate] from @cite{pancheva-zubizarreta-2018}.

Extends Core.Person.Features (the framework-neutral [±participant, ±author] core) with the Minimalism-specific [±proximate] feature:

  • [proximate] marks potential point-of-view centers. 1P/2P are inherently [+proximate]; 3P can be contextually [+proximate].
  • [participant] distinguishes 1st/2nd from 3rd person.
  • [author] distinguishes 1st from 2nd person.

The geometry imposes a containment hierarchy: [+author] → [+participant] → [+proximate]

Note: The paper treats these as privative features: 3rd person simply LACKS [participant], rather than bearing [−participant]. We encode this as Bool for computational convenience; the well-formedness constraint wellFormed ensures the privative entailments are maintained.

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

          Geometry well-formedness: [author] → [participant] → [proximate]. Each feature entails the next in the containment hierarchy.

          Equations
          Instances For

            Decompose a person value into sub-features.

            • 1st person: [+proximate, +participant, +author]
            • 2nd person: [+proximate, +participant, −author]
            • 3rd person: [−proximate, −participant, −author]

            3rd person is [-proximate] by default; contextual [+proximate] marking is handled by the P-Constraint evaluation.

            Equations
            Instances For

              What a phi-probe seeks.

              In the AF construction, two probes operate:

              • π⁰ seeks [participant]: targets 1st/2nd person DPs
              • #⁰ seeks [plural]: targets plural DPs

              π⁰ structurally outranks #⁰ (person probing > number probing).

              • participant : ProbeTarget

                π⁰: person probe, seeks [participant].

              • plural : ProbeTarget

                #⁰: number probe, seeks [plural].

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

                  Is a DP visible to this probe? Relativized probing: probes skip DPs that lack the feature they seek.

                  A DP with person value person and number isPlural is visible to the probe iff it bears the probe's target feature.

                  Equations
                  Instances For

                    Omnivorous probe resolution rank for a DP.

                    Determines which DP an omnivorous probe targets when multiple DPs are in its domain. Higher rank = more likely to be targeted.

                    • Rank 2: visible to π⁰ ([+participant]) — highest priority
                    • Rank 1: visible to #⁰ but not π⁰ ([+plural, −participant])
                    • Rank 0: invisible to both probes (3SG default)

                    This rank is derived from the probing mechanism, not stipulated: π⁰ outranks #⁰, and each probe targets any DP bearing the sought feature. The rank captures the combined effect.

                    Equations
                    Instances For

                      All person values yield well-formed decompositions.

                      decomposePerson is consistent with the framework-neutral PersonLevel.toFeatures: the [±participant, ±author] core of the Minimalist decomposition agrees with Core Person.Features.

                      3rd plural gets rank 1 (visible to #⁰ only).

                      3rd singular gets rank 0 (invisible to both probes = default).

                      Rank is monotone in the probe hierarchy: any DP visible to π⁰ (rank 2) outranks any DP visible only to #⁰ (rank 1), which outranks any DP invisible to both (rank 0).