Sentence Mood as Use-Conditional Meaning #
@cite{gutzmann-2015}
Sentence mood operators (deontic, epistemic, hearer knowledge) analyzed as use-conditional items within the L_TU framework.
Key Thesis #
@cite{gutzmann-2015} argues that Truckenbrodt (2006b)'s sentence mood operators — epistemic and deontic — should NOT be treated as presuppositions integrated into truth conditions. Instead, they are use-conditional: they constrain the context of utterance without affecting truth conditions.
Evidence:
- Epistemic interpretation does not pass standard presupposition tests (negation test, disjunction test)
- Integrative treatment yields wrong truth conditions: "Snow is white" would be true iff the speaker wants the hearer to believe snow is white
- Integrative treatment breaks valid inferences (e.g., "Peter wrote three books" ⊨ "Peter wrote at least one book" fails under embedding)
Three Sentence Mood Operators #
- DEONT: deontic attitude (root rule — present in every matrix clause)
Type: functional expletive UCI
⟨⟨s,t⟩, u⟩ - EPIS: epistemic attitude (triggered by [±wh] visible at LF) Reformulated as a uc-modifier E on DEONT
- HKNOW: hearer knowledge (triggered by [−wh] in C⁰ for V2-interrogatives)
Type: functional expletive UCI
⟨⟨s,t⟩, u⟩
Scope #
This file provides the language-agnostic operators. Per-language
clause-type taxonomies and their mood compositions live in
Fragments/<Language>/ClauseTypes.lean (e.g.,
Fragments.German.ClauseTypes for the German V2/VL/dass-VL/imperative
inventory analyzed in @cite{gutzmann-2015}, Ch 5).
A context of utterance for sentence mood evaluation.
Captures the context parameters that sentence mood operators quantify
over: c_S (speaker), c_A (addressee), c_W (world of the context).
Simplification: @cite{gutzmann-2015} defines DEONT via existential
quantification over a set D of contextually suitable deontic predicates
(wants, wishes, orders, ...). The full definition is:
⟦DEONT⟧ = λp.{c : ∃ d ∈ D, d suitable for p in c ∧ d(c_S, p, c_W)}.
We simplify this to a fixed speakerWants function, which suffices for
the core derivation theorems but does not capture the context-dependent
selection among different deontic attitudes.
- world : W
The world of the utterance context
- speakerWants : Bool → Bool
Whether the speaker wants p to hold (given p's truth value at world)
- addresseeKnows : Bool → Bool
Whether the addressee knows whether p (given p's truth value at world)
Instances For
Deontic sentence mood operator (@cite{gutzmann-2015}, (5.85)).
⟦DEONT⟧ = λp. {c : there is a d ∈ D such that d is suitable for p in c and d holds for p in c_W}
Simplified: the speaker wants p to hold in the utterance world.
Introduced by the root rule (5.43): every matrix clause gets a deontic interpretation, expressing a volition on the part of the speaker.
Equations
- Semantics.Mood.Gutzmann.deont p c = c.speakerWants (p c.world)
Instances For
Epistemic sentence mood operator (@cite{gutzmann-2015}, (5.90)).
⟦EPIS⟧ = λp. {w : EPIS(p)(w) in w} = λp. {w : there is an e ∈ E suitable for p in w and e holds for p in w}
Simplified: at the world level, epistemic embedding preserves truth. The epistemic contribution is in the use-conditional dimension, mediated by the E modifier.
Equations
Instances For
The E operator: epistemic modifier on UCIs (@cite{gutzmann-2015}, (5.91)).
E = λDλp. D(EPIS(p))
This is a use-conditional modifier of type
⟨⟨⟨s,t⟩,u⟩, ⟨⟨s,t⟩,u⟩⟩. It takes a UCI (like DEONT) that maps
propositions to use-conditional propositions, and pre-composes it
with EPIS. The result is that DEONT applies to the epistemically
embedded proposition rather than the raw propositional content.
Equations
- Semantics.Mood.Gutzmann.episModifier d p c = d (Semantics.Mood.Gutzmann.epis p) c
Instances For
Hearer knowledge operator (@cite{gutzmann-2015}, (5.99)).
⟦HKNOW⟧ = λp. {c : c_A knows whether p in c_W}
A functional expletive UCI that adds a "free-floating" use condition: the addressee knows the answer to the question. Present only in V2-interrogatives (triggered by [−wh] in C⁰), absent from VL-interrogatives — accounting for the Cuban cigar scenario.
Equations
- Semantics.Mood.Gutzmann.hknow p c = c.addresseeKnows (p c.world)
Instances For
Which sentence mood operators are present in a clause type (@cite{gutzmann-2015}, Table 5.1).
Language-agnostic predicate over a (possibly language-specific) clause
type, recording which of DEONT, EPIS, and HKNOW the clause composes.
Used by per-language clause-type fragments to declare their mood
inventories (e.g., Fragments.German.ClauseTypes.GermanClauseType.moodStructure).
- hasDeontic : Bool
- hasEpistemic : Bool
- hasHearerKnowledge : Bool
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Epistemic embedding preserves truth at the world level. The epistemic contribution is purely use-conditional, not truth-conditional.