Documentation

Linglib.Fragments.Italian.Pronouns

Italian Pronoun and Clitic Fragment #

Personal pronouns (strong forms) and clitic paradigm for Italian.

Strong Pronouns #

@cite{munoz-perez-2026}

Italian has a T/V distinction in 2nd person:

Clitic Paradigm #

Italian object clitics show the same syncretism pattern as Spanish: 1sg/2sg are syncretic across accusative, dative, and reflexive cases, while 3sg/3pl are not.

PersonACCDATREFL
1sgmimimi
2sgtititi
3sglo/lagli/lesi
1plcicici
2plvivivi
3plli/lelorosi

io — 1sg.

Equations
Instances For

    tu — 2sg familiar (T form).

    Equations
    Instances For

      Lei — polite 2sg (V form). Formally 3rd person: triggers 3sg verbal agreement, patterns with 3sg.f clitics, binds 3rd person reflexive si. Interpretably 2nd person: triggers PCC effects, Fancy Constraint effects, 2PL resolved agreement in coordination. @cite{adamson-zompi-2025}

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

        lui — 3sg masculine.

        Equations
        Instances For

          lei — 3sg feminine.

          Equations
          Instances For

            noi — 1pl.

            Equations
            Instances For

              voi — 2pl (familiar; also used as general 2pl in modern Italian).

              Equations
              Instances For

                Loro — 2pl formal (archaic, largely replaced by voi).

                Equations
                Instances For

                  loro — 3pl.

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

                      The three-way case distinction for Italian clitics.

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

                          A single clitic form in the paradigm.

                          Instances For
                            Equations
                            • One or more equations did not get rendered due to their size.
                            Instances For
                              Equations
                              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
                                  def Fragments.Italian.Pronouns.lookupForm (p : Person) (n : Number) (c : CliticCase) :
                                  Option String

                                  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.

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

                                      1sg: dative and reflexive are syncretic (both "mi").

                                      2sg: dative and reflexive are syncretic (both "ti").

                                      3sg: dative and reflexive are NOT syncretic ("gli" ≠ "si").

                                      1pl: dative and reflexive are syncretic (both "ci").

                                      2pl: dative and reflexive are syncretic (both "vi").

                                      3pl: dative and reflexive are NOT syncretic ("loro" ≠ "si").

                                      1sg forms are identical across all three cases.

                                      2sg forms are identical across all three cases.

                                      3sg dative ≠ 3sg reflexive (gli ≠ si).

                                      Lei has 3rd person agreement features but 2nd person interpretable features. @cite{adamson-zompi-2025}

                                      theorem Fragments.Italian.Pronouns.has_all_persons :
                                      (allPronouns.any fun (x : Typology.PronounEntry) => x.person == some UD.Person.first) = true (allPronouns.any fun (x : Typology.PronounEntry) => x.person == some UD.Person.second) = true (allPronouns.any fun (x : Typology.PronounEntry) => x.person == some UD.Person.third) = true

                                      All three persons are attested.

                                      theorem Fragments.Italian.Pronouns.has_both_numbers :
                                      (allPronouns.any fun (x : Typology.PronounEntry) => x.number == some Number.sg) = true (allPronouns.any fun (x : Typology.PronounEntry) => x.number == some Number.pl) = true

                                      Both singular and plural are attested.