Spanish Noun Gender #
@cite{butt-benjamin-2019} @cite{kramer-2015} @cite{kramer-2020} @cite{harris-1991}
Spanish has two genders, masculine and feminine (@cite{butt-benjamin-2019} §1.1). Per @cite{butt-benjamin-2019} §1.2, Group A: nouns referring to humans + a few well-known animals get natural gender; per §1.3, Group B (lifeless things, plants, other animals) get arbitrary gender. Per §1.2.11, a small set of common-gender nouns (e.g. persona, víctima, ángel) take fixed gender regardless of referent.
Theory-neutral data layer #
The Fragment carries two empirical fields per entry:
attestedGender : SurfaceGender— the agreement-trigger fact (verified against @cite{butt-benjamin-2019} §1.2-1.3).isNaturalGender : Bool— whether the gender is semantically motivated by the referent's biological sex. False for inanimates, for non-natural-gender animals (cf. §1.3.1), and for the §1.2.11 fixed-gender common-gender exceptions (persona, ángel).
These two fields suffice to project every entry's structural analysis
under @cite{kramer-2015} Ch. 6's Set-1 DM categorizer (the projection
lives in Phenomena/Gender/Studies/Kramer2020.lean); they also support
@cite{harris-1991}'s lexical-rule analysis directly (Harris's [FEMALE]
and [HUMAN] features map onto attestedGender and the natural-gender
inference).
Per-entry verification #
Entries explicitly named in @cite{kramer-2015}: hombre, mujer, niño, niña, mesa, cama, persona, libro, soldado, estudiante, artista. Other entries (rey/reina/gato/gata, silla/casa/puerta/ventana, zapato/coche/árbol/cielo/vaso, ángel) are extrapolations from Kramer's framework, anchored on the textbook-consensus genders documented in @cite{butt-benjamin-2019}.
A Spanish noun. No commitment to any specific theoretical framework
— Kramer's DM categorizing head, Harris's lexical rule, etc. are
projections that live in Studies/.
- form : String
- gloss : String
- attestedGender : Features.SurfaceGender
Empirical agreement-trigger fact (@cite{butt-benjamin-2019}).
- isNaturalGender : Bool
True iff the gender is semantically motivated by the referent's biological sex. False for inanimates, for non-natural-gender animals, and for the @cite{butt-benjamin-2019} §1.2.11 common-gender fixed-assignment exceptions (persona feminine for any sex; ángel masculine for any sex).
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Surface gender alias for ergonomic consumer access.
Equations
- n.gender = n.attestedGender
Instances For
Equations
- Fragments.Spanish.Gender.hombre = { form := "hombre", gloss := "man", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.mujer = { form := "mujer", gloss := "woman", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.niño = { form := "niño", gloss := "boy", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.niña = { form := "niña", gloss := "girl", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.rey = { form := "rey", gloss := "king", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.reina = { form := "reina", gloss := "queen", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.gato = { form := "gato", gloss := "cat.M", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.gata = { form := "gata", gloss := "cat.F", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := true }
Instances For
Equations
- Fragments.Spanish.Gender.mesa = { form := "mesa", gloss := "table", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.silla = { form := "silla", gloss := "chair", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.casa = { form := "casa", gloss := "house", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.puerta = { form := "puerta", gloss := "door", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.ventana = { form := "ventana", gloss := "window", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.cama = { form := "cama", gloss := "bed", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
persona 'person': common-gender noun (@cite{butt-benjamin-2019}
§1.2.11) — feminine regardless of referent's sex. The famous
@cite{kramer-2015} §6.2 exception: human-denoting noun with
structurally arbitrary feminine gender. isNaturalGender = false
captures that the gender does NOT come from biological sex (even
though referent is human).
Equations
- Fragments.Spanish.Gender.persona = { form := "persona", gloss := "person", attestedGender := Features.SurfaceGender.feminine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.libro = { form := "libro", gloss := "book", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.zapato = { form := "zapato", gloss := "shoe", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.coche = { form := "coche", gloss := "car", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.árbol = { form := "árbol", gloss := "tree", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.cielo = { form := "cielo", gloss := "sky", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Equations
- Fragments.Spanish.Gender.vaso = { form := "vaso", gloss := "glass", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
ángel 'angel': common-gender noun (@cite{butt-benjamin-2019}
§1.2.11) — masculine for any sex. Companion to persona: the
masculine fixed-gender exception. isNaturalGender = false.
Equations
- Fragments.Spanish.Gender.ángel = { form := "ángel", gloss := "angel", attestedGender := Features.SurfaceGender.masculine, isNaturalGender := false }
Instances For
Same-root nominals: a single root that surfaces as either masculine
or feminine depending on the referent's sex. Empirically polymorphic
in gender (one form, two genders), distinct from the atomic
SpanishNoun schema. The DM analysis (combination with i[+FEM] vs
i[−FEM]) lives in Studies/Kramer2020.lean.
- form : String
- gloss : String
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Fragments.Spanish.Gender.soldado = { form := "soldado", gloss := "soldier" }
Instances For
Equations
- Fragments.Spanish.Gender.estudiante = { form := "estudiante", gloss := "student" }
Instances For
Equations
- Fragments.Spanish.Gender.artista = { form := "artista", gloss := "artist" }
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.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Spanish gender typology: 2-gender canonical sex-based.
Equations
- One or more equations did not get rendered due to their size.