Spanish Clitic Paradigm #
@cite{munoz-perez-2026}
The full Spanish clitic paradigm, with syncretism data critical for Muñoz @cite{munoz-perez-2026}. The key observation: 1SG and 2SG are syncretic across accusative, dative, and reflexive, while 3SG/PL are not. This syncretism drives the availability of stylistic applicatives.
Paradigm (Muñoz @cite{munoz-perez-2026}, ex. 59) #
| ACC | DAT | REFL | |
|---|---|---|---|
| 1SG | me | me | me |
| 2SG | te | te | te |
| 3SG | lo/la | le/se | se |
| 1PL | nos | nos | nos |
| 2/3PL | los/las | les/se | se |
The three-way case distinction for Spanish clitics.
- accusative : CliticCase
- dative : CliticCase
- reflexive : CliticCase
Instances For
Equations
- Fragments.Spanish.Clitics.instBEqCliticCase.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
A single clitic form in the paradigm.
- form : String
- person : Person
- number : Number
- case_ : CliticCase
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.
- Fragments.Spanish.Clitics.instBEqCliticEntry.beq x✝¹ x✝ = false
Instances For
Equations
- Fragments.Spanish.Clitics.me_acc = { form := "me", person := UD.Person.first, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.me_dat = { form := "me", person := UD.Person.first, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.dative }
Instances For
Equations
- Fragments.Spanish.Clitics.me_refl = { form := "me", person := UD.Person.first, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.reflexive }
Instances For
Equations
- Fragments.Spanish.Clitics.te_acc = { form := "te", person := UD.Person.second, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.te_dat = { form := "te", person := UD.Person.second, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.dative }
Instances For
Equations
- Fragments.Spanish.Clitics.te_refl = { form := "te", person := UD.Person.second, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.reflexive }
Instances For
Equations
- Fragments.Spanish.Clitics.lo = { form := "lo", person := UD.Person.third, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.la = { form := "la", person := UD.Person.third, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.le_dat = { form := "le", person := UD.Person.third, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.dative }
Instances For
Equations
- Fragments.Spanish.Clitics.se_refl = { form := "se", person := UD.Person.third, number := UD.Number.Sing, case_ := Fragments.Spanish.Clitics.CliticCase.reflexive }
Instances For
Equations
- Fragments.Spanish.Clitics.nos_acc = { form := "nos", person := UD.Person.first, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.nos_dat = { form := "nos", person := UD.Person.first, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.dative }
Instances For
Equations
- Fragments.Spanish.Clitics.nos_refl = { form := "nos", person := UD.Person.first, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.reflexive }
Instances For
Equations
- Fragments.Spanish.Clitics.los = { form := "los", person := UD.Person.third, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.las = { form := "las", person := UD.Person.third, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.accusative }
Instances For
Equations
- Fragments.Spanish.Clitics.les_dat = { form := "les", person := UD.Person.third, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.dative }
Instances For
Equations
- Fragments.Spanish.Clitics.se_refl_pl = { form := "se", person := UD.Person.third, number := UD.Number.Plur, case_ := Fragments.Spanish.Clitics.CliticCase.reflexive }
Instances For
The full clitic paradigm as a flat list.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Look up the form for a given person, number, and case in the paradigm.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Are two clitic cases syncretic for a given person/number combination? DERIVED from the paradigm data: syncretism holds iff the looked-up forms are identical (and both exist).
Equations
- One or more equations did not get rendered due to their size.
Instances For
The set of person/number combinations where DAT and REFL are syncretic. This is the key condition for SE-optionality.
Equations
Instances For
1SG: dative and reflexive are syncretic (both "me").
2SG: dative and reflexive are syncretic (both "te").
3SG: dative and reflexive are NOT syncretic ("le" ≠ "se").
1PL: dative and reflexive are syncretic (both "nos").
3PL: dative and reflexive are NOT syncretic ("les" ≠ "se").