Nominal Phrase Structure (Distributed Morphology) #
@cite{adamson-2024} @cite{myler-2016} @cite{kramer-2015}
Structural positions within the extended nominal projection, the Gender Locality Hypothesis (GLH), and the possession-type distinction.
These types encode general claims about nominal structure that are independent of any particular language:
- The nominal spine: √ROOT < n < (Num) < (Poss) < D
- The GLH: gender features on n must be valued within nP
- Inalienable vs alienable possession: nP-internal vs PossP-external
The GLH was proposed by @cite{adamson-2024}; the inalienable/alienable structural distinction follows @cite{myler-2016} (following @cite{alexiadou-2003}, @cite{barker-1995}).
Structural positions within and around the nominal phrase.
@cite{adamson-2024} distinguishes positions by their locality to n, the locus of gender features:
[DP D [NumP Num [PossP DP_alienable Poss [nP DP_inalienable [n √ROOT n]]]]]
Only positions within nP are local enough to condition gender.
- root : NominalPosition
- nHead : NominalPosition
- specN : NominalPosition
- poss : NominalPosition
- specPoss : NominalPosition
- num : NominalPosition
- d : NominalPosition
Instances For
Equations
- Morphology.DM.instBEqNominalPosition.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Is this position within nP?
nP-internal positions: root, n head, Spec,nP (inalienable possessor). Everything else (Poss, Spec,PossP, Num, D) is outside nP.
Equations
- Morphology.DM.NominalPosition.root.isWithinNP = true
- Morphology.DM.NominalPosition.nHead.isWithinNP = true
- Morphology.DM.NominalPosition.specN.isWithinNP = true
- Morphology.DM.NominalPosition.poss.isWithinNP = false
- Morphology.DM.NominalPosition.specPoss.isWithinNP = false
- Morphology.DM.NominalPosition.num.isWithinNP = false
- Morphology.DM.NominalPosition.d.isWithinNP = false
Instances For
Gender Locality Hypothesis (GLH):
"Gender features on n must be valued only within nP." (@cite{adamson-2024} (15))
A position can influence gender assignment iff it is nP-internal. Elements introduced at Poss, Num, D, or higher cannot condition gender.
Equations
Instances For
Two types of possession, distinguished by structural position (@cite{adamson-2024}, following @cite{myler-2016}).
- Inalienable (iPossession): possessor introduced in Spec,nP.
The n head bears a selectional feature {D} (
CatHead.selectsD). Semantically introduces a body-part-of / part-whole relation. - Alienable (aPossession): possessor introduced in Spec,PossP, mediated by a Poss head. Requires additional morphological marking in many languages (e.g., Teop te).
- inalienable : PossessionType
- alienable : PossessionType
Instances For
Equations
- Morphology.DM.instBEqPossessionType.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Can this possession type affect gender assignment? Derived from the GLH and the possessor's structural position.
Equations
Instances For
Number features can appear in two positions (@cite{adamson-2024} §5.1):
- Low number (on n): derivational, can interact with gender. Evidence: Standard Italian -a plurals (masc.sg → fem.pl), Tunisian Arabic collectives (Dali & Mathieu 2021).
- High number (on Num): inflectional, cannot interact with gender.
- onN : NumberPosition
- onNum : NumberPosition
Instances For
Equations
- Morphology.DM.instBEqNumberPosition.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Functional heads outside nP whose features cannot affect gender assignment under the GLH (@cite{adamson-2024} §5.2).
- case : ExternalFeature
- definiteness : ExternalFeature
- tense : ExternalFeature
- aspect : ExternalFeature
- voice : ExternalFeature
Instances For
Equations
- Morphology.DM.instBEqExternalFeature.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Map external features to their nearest NominalPosition (lower bound). Clausal features are outside DP entirely; D is the highest nominal position, itself already outside nP.
Equations
- Morphology.DM.ExternalFeature.case.toNominalPosition = Morphology.DM.NominalPosition.d
- Morphology.DM.ExternalFeature.definiteness.toNominalPosition = Morphology.DM.NominalPosition.d
- Morphology.DM.ExternalFeature.tense.toNominalPosition = Morphology.DM.NominalPosition.d
- Morphology.DM.ExternalFeature.aspect.toNominalPosition = Morphology.DM.NominalPosition.d
- Morphology.DM.ExternalFeature.voice.toNominalPosition = Morphology.DM.NominalPosition.d
Instances For
Two mechanisms by which iPossession can affect gender (@cite{adamson-2024} §§2.3, 3–4):
- Possessee gender: the noun's gender is determined by WHETHER it has an iPossessor. The n head that introduces an iPossessor bears particular gender features. (Teop, Jarawara)
- Inherited gender: the noun's gender is determined by the GENDER OF the iPossessor. An unvalued gender probe on n is valued via Probe-Goal agreement with the iPossessor DP. (Yanyuwa, Coastal Marind)
- possesseeGender : PossessionGenderMechanism
- inheritedGender : PossessionGenderMechanism
Instances For
Equations
- Morphology.DM.instBEqPossessionGenderMechanism.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Both mechanisms involve an iPossessor in Spec,nP.
Equations
Instances For
Both mechanisms are consistent with the GLH: in both possessee gender (Teop, Jarawara) and inherited gender (Yanyuwa, Coastal Marind), the gender-affecting element is nP-internal.