Greek Negation Fragment #
@cite{tsiakmakis-2025}
Greek distinguishes two sentential negation markers that are in complementary distribution by mood:
dhen (δεν): indicative negator (NEG₁). Standard sentential negation reversing truth conditions: ⟦dhen⟧ = λp.¬p.
min (μην): subjunctive/modal negator (NEG₂). Appears in non-veridical environments (imperatives, subjunctive complements, fear-predicate complements). As canonical negation, ⟦min⟧ = λp.∀w' ∈ Best_g(w) : ¬p(w'). As expletive negation, the negation component is absent: ⟦min_expletive⟧ = λp.∀w' ∈ Best_g(w) : p(w').
The two markers are the overt morphological reflex of the NEG₁/NEG₂ distinction that @cite{tsiakmakis-2025} argues is cross-linguistically valid.
A Greek sentential negation marker.
- form : String
Surface form (romanization)
- greek : String
Greek orthography
- isIndicative : Bool
Indicative (dhen) or subjunctive/modal (min)
- isStandardNegation : Bool
Does the marker function as standard truth-reversing negation?
- licensesNCIs : Bool
Can the marker license NCIs like tipota 'nothing'?
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.Greek.Negation.instBEqNegMarkerEntry.beq x✝¹ x✝ = false
Instances For
dhen (δεν): indicative sentential negation. Negates the verbal predicate of an indicative sentence. Licenses NCIs (tipota, kanenas).
Equations
Instances For
min (μην): subjunctive/modal negation. Appears in non-veridical environments: imperatives, subjunctive complements, fear-predicate complements, conditionals, biased questions. Does NOT license NCIs when expletive.
Equations
Instances For
Semantics of dhen: standard truth-functional negation. ⟦dhen⟧ = λp.¬p
Equations
- Fragments.Greek.Negation.dhenSem p w = !p w
Instances For
Semantics of negative min: modal negation over Best worlds. ⟦min⟧^g(w) = λp. ∀w' ∈ Best_g(w) : ¬p(w') Used in imperatives (Min pas! 'Don't go!') and with canonical dhen (Fovame min dhen efaye 'I fear he maybe didn't eat').
Equations
- Fragments.Greek.Negation.minNegSem f g p w = Semantics.Modality.Kratzer.necessity f g (fun (w' : Semantics.Attitudes.Intensional.World) => !p w') w
Instances For
Semantics of expletive min: modal without negation. ⟦min_expletive⟧^g(w) = λp. ∀w' ∈ Best_g(w) : p(w') Used in fear complements (Fovame min efaye 'I fear he maybe ate'), conditionals (Min ksexaso kati 'If I forget something'), and biased questions (Min efaye? 'Did he maybe eat?').
Equations
- Fragments.Greek.Negation.minExplSem f g p w = Semantics.Modality.Kratzer.necessity f g p w
Instances For
Greek has exactly two sentential negation markers.
Equations
Instances For
The two markers differ in mood selection.
Only dhen is standard truth-reversing negation.
Only dhen licenses NCIs.