A presupposition: a condition that must be satisfied for an expression to have a defined truth value.
Following @cite{heim-1983}, presuppositions are definedness conditions on the input context.
Instances For
Existential presupposition: the restrictor of a quantifier is non-empty.
For "every book that Maria reads", this presupposes: ∃x. book(x) ∧ reads(maria, x)
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.existentialPresup restrictor w = ∃ (x : E), restrictor x w
Instances For
Strong quantifier: quantifiers that carry existential presupposition.
- "every", "each", "both" presuppose non-empty domain
- "some", "a" do not (they assert existence)
- strong : QuantifierStrength
- weak : QuantifierStrength
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Strong quantifiers presuppose non-empty restrictor.
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.hasExistentialPresup Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.QuantifierStrength.strong = true
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.hasExistentialPresup Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.QuantifierStrength.weak = false
Instances For
Indicative restrictor: evaluates the restrictor at the actual world.
"Every book that Maria reads.IND..." → Presupposes books exist that Maria reads in the actual world
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.indicativeRestrictor restrictor s x = restrictor x s
Instances For
SF restrictor: quantifies over historical alternatives.
"Every book that Maria reads.SF..." → Quantifies over situations where Maria might read books → No presupposition that she actually reads any
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.sfRestrictor history restrictor s₀ x = ∃ s₁ ∈ Semantics.Tense.BranchingTime.historicalBase history s₀, restrictor x s₁
Instances For
A context satisfies a presupposition if the presupposition holds throughout the context.
Following Heim's context change semantics: presuppositions are requirements on the input context.
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.satisfiesPresup c p = ∀ gw ∈ c, p gw.2
Instances For
A presupposition is locally satisfied if it holds at the evaluation world.
Instances For
A presupposition is weakened to a conditional presupposition.
Weak(P) = "if there are relevant entities, then P"
This is what SF achieves: instead of presupposing existence, it makes the assertion conditional on existence.
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.weakenedPresup p condition w = (condition w → p w)
Instances For
Indicative preserves existential presupposition.
With indicative mood in the restrictor, the strong quantifier's existential presupposition projects.
"Cada livro que Maria ler.IND será interessante" → Presupposes ∃x. book(x) ∧ reads(maria, x)
SF weakens existential presupposition.
With SF in the restrictor, existence is only presupposed conditionally on the relevant situation obtaining.
"Cada livro que Maria ler.SF será interessante" → No categorical presupposition; existence conditional on future
Quantifying over historical alternatives means we don't presuppose existence in any particular world.
SF makes strong quantifiers felicitous in uncertain contexts.
When the speaker is uncertain whether the restrictor will be satisfied, SF is felicitous but indicative is not.
Relative clause with indicative.
"todo livro [que Maria ler.IND]" "every book [that Maria reads.IND]"
Structure: ∀x[book(x) ∧ reads(m,x,s₀)] →... Presupposes existence of books Maria reads at s₀.
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.relClauseIND noun relClause s x = (noun x s ∧ relClause x s)
Instances For
Relative clause with SF.
"todo livro [que Maria ler.SF]" "every book [that Maria reads.SF]"
Structure: ∀s₁∈hist(s₀): ∀x[book(x,s₁) ∧ reads(m,x,s₁)] →... No categorical existence presupposition.
Equations
- Semantics.Dynamic.IntensionalCDRT.PresuppositionWeakening.relClauseSF history noun relClause s₀ x = ∃ s₁ ∈ Semantics.Tense.BranchingTime.historicalBase history s₀, noun x s₁ ∧ relClause x s₁
Instances For
SF in relative clause weakens strong quantifier presupposition.
This is the formal version of the contrast in (17)-(18).
Modal displacement: SF introduces quantification over situations, which "displaces" the existential presupposition.
Without SF: ∃x.P(x) presupposed, ∀x.P(x) → Q(x) asserted With SF: ∀s∈hist. [∃x.P(x,s) presupposed within s, ∀x.P(x,s)→Q(x,s) asserted]
The presupposition is now local to each situation, not global.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Modal displacement captures SF semantics.
The universal quantifier with SF is equivalent to modal displacement: quantifying over situations, with local existence conditions.
Accommodation vs modal displacement.
Presupposition accommodation: Adding the presupposition to the context. Modal displacement: Quantifying over situations where presupposition holds.
SF uses modal displacement, not accommodation.
- accommodation : PresuppositionStrategy
- localAccommodation : PresuppositionStrategy
- modalDisplacement : PresuppositionStrategy
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Instances For
SF employs modal displacement strategy.
Equations
Instances For
Modal displacement is weaker than global accommodation.
With modal displacement, we only require existence in some accessible situations, not in all of them.