Italian Tense Fragment #
Paradigm entries for Italian tense forms following the TAMEEntry and
TensePerspectiveEntry patterns from Fragments/English/Tense.lean.
Italian Tense System #
Italian distinguishes five core indicative tenses:
| Form | Label | EP | UP | Type |
|---|---|---|---|---|
| passato prossimo | present perfect | downstream | past | periphrastic |
| passato remoto | simple past | downstream | past | synthetic |
| imperfetto | imperfect | downstream | past | synthetic |
| presente | simple present | downstream | present | synthetic |
| futuro semplice | simple future | unconstrained | future | synthetic |
The passato prossimo / passato remoto distinction is significant: both express past time reference, but they differ in morphological type (periphrastic vs synthetic) and, following @cite{lakoff-1970}, in whether they allow false-tense interpretations.
Kratzer Decomposition #
The passato prossimo (ho mangiato) parallels English present perfect: PRESENT tense + PERFECT aspect. The auxiliary avere/essere makes the PERF head morphologically transparent.
Italian passato prossimo (present perfect): ho mangiato 'I have eaten'. @cite{lakoff-1970} EP downstream (T ≤ A), UP past (T < S).
Equations
- Fragments.Italian.Tense.passatoProssimo = { label := "passato prossimo", ep := Semantics.Tense.Evidential.EPCondition.downstream, up := Semantics.Tense.Evidential.UPCondition.past }
Instances For
Italian passato remoto (simple past/preterite): mangiai 'I ate'. EP downstream (T ≤ A), UP past (T < S).
Equations
- Fragments.Italian.Tense.passatoRemoto = { label := "passato remoto", ep := Semantics.Tense.Evidential.EPCondition.downstream, up := Semantics.Tense.Evidential.UPCondition.past }
Instances For
Italian imperfetto (imperfect): mangiavo 'I was eating / I used to eat'. EP downstream (T ≤ A), UP past (T < S).
Equations
- Fragments.Italian.Tense.imperfetto = { label := "imperfetto", ep := Semantics.Tense.Evidential.EPCondition.downstream, up := Semantics.Tense.Evidential.UPCondition.past }
Instances For
Italian presente (simple present): mangio 'I eat'. EP downstream (T ≤ A), UP present (T = S).
Equations
- Fragments.Italian.Tense.presente = { label := "presente", ep := Semantics.Tense.Evidential.EPCondition.downstream, up := Semantics.Tense.Evidential.UPCondition.present }
Instances For
Italian futuro semplice (simple future): mangerò 'I will eat'. EP unconstrained, UP future (S < T).
Equations
- Fragments.Italian.Tense.futuroSemplice = { label := "futuro semplice", ep := Semantics.Tense.Evidential.EPCondition.unconstrained, up := Semantics.Tense.Evidential.UPCondition.future }
Instances For
All Italian tense paradigm entries.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A tense paradigm entry enriched with Lakoff's perspective dimensions.
- gramTense : Core.Tense.GramTense
The grammatical tense this form realizes
- formType : Core.Morphology.Tense.TenseFormType
Synthetic (inflectional) or periphrastic (auxiliary-based)
Instances For
Does this form allow false-tense interpretations?
Derived from formType: only synthetic forms can.
Equations
Instances For
Passato prossimo: past, periphrastic (avere/essere + past participle).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Passato remoto: past, synthetic.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Imperfetto: past, synthetic.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Presente: present, synthetic.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Futuro semplice: future, synthetic.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Synthetic forms allow false tense.
Periphrastic forms block false tense.
Passato prossimo and passato remoto: both past, different formType.
Italian passato prossimo: Kratzer decomposition. Surface "ho V-to" = PRESENT tense + PERFECT aspect. Parallel to English present perfect — the auxiliary avere/essere makes the PERF head morphologically transparent.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Italian passato prossimo can be deictic (from decomposition).
The underlying tense head is PRESENT, not PAST. Pastness comes from the PERF aspect head.
Italian passato prossimo shares the same underlying tense pronoun
as English present perfect: both use kratzerEnglishPast (PRESENT
tense head + indexical mode). The decomposition is PRESENT + PERFECT
in both languages.