Directive Modality: Strong and Weak Necessity #
@cite{kratzer-2012} @cite{von-fintel-iatridou-2008}
@cite{von-fintel-iatridou-2008} argue that natural languages systematically distinguish strong necessity ("must", "have to") from weak necessity ("ought", "should"). The difference is not in modal force — both are universal quantifiers over best worlds — but in the ordering source.
Core Analysis #
Strong and weak necessity share the same modal base (circumstantial) but differ in ordering:
- Strong necessity (must φ): necessity under ordering g
- Weak necessity (ought φ): necessity under refined ordering g ∪ g'
The secondary ordering g' adds criteria beyond the primary norms, creating a more discriminating ranking. More criteria → smaller "best" set → the universal quantification is over a subset, making it a weaker (easier to satisfy) claim.
Key Result #
strong_entails_weak: strong necessity entails weak necessity. If all g-best
worlds have φ, then all (g∪g')-best worlds have φ, because the refined best
set is a subset of the original.
weak_not_entails_strong: the converse fails. A concrete counterexample shows
that refining the ordering can eliminate a world where φ fails, making weak
necessity hold while strong necessity does not.
Connection to Kratzer Framework #
Strong necessity IS Kratzer's standard necessity from Kratzer.lean.
Weak necessity adds a secondary ordering source via combineOrdering.
The DeonticStrength structure pairs primary and secondary norms,
bridging to DeonticFlavor.
Combined ordering sources #
Combine two ordering sources by concatenation. The combined source g₁ ∪ g₂ yields the union of ideals from both.
Equations
- Semantics.Modality.Directive.combineOrdering g₁ g₂ w = g₁ w ++ g₂ w
Instances For
The primary ordering is contained in the combined one.
Combining with empty ordering preserves the original.
Strong and weak necessity #
Strong necessity ("must φ"): standard Kratzer necessity.
Equations
Instances For
Weak necessity ("ought φ"): Kratzer necessity under refined ordering g ∪ g'.
Equations
Instances For
Ordering extension lemma #
Best worlds monotonicity #
Refining the ordering can only shrink the set of best worlds.
Main entailment #
Strong entails weak: if "must φ" holds, then "ought φ" holds.
The converse fails #
Weak necessity does NOT entail strong necessity.
Counterexample: W = Bool. g is the trivial ordering (all worlds tied);
g' identifies true. Under g, both true and false are best; under
g∪g', only true is best. With p = (· = true), weakNecessity holds
(only true ∈ best), but strongNecessity fails (false ∈ best, p false).
Deontic application #
- primary : Kratzer.DeonticFlavor W
- secondaryNorms : Core.Logic.Intensional.OrderingSource W
Instances For
Equations
- d.must p w = Semantics.Modality.Directive.strongNecessity d.primary.circumstances d.primary.norms p w
Instances For
Equations
- d.ought p w = Semantics.Modality.Directive.weakNecessity d.primary.circumstances d.primary.norms d.secondaryNorms p w