Illocutionary Force: F in F(p) #
@cite{searle-1969} @cite{searle-1979} @cite{searle-1983} @cite{lakoff-1970} @cite{francik-clark-1985}
The pragmatic-act side of the Searlean parallel: direction of fit, the
five-class taxonomy, and preparatory conditions. The Intentional-state
counterpart S(r) — psychological mode, sincerity conditions, causal
self-referentiality, and IntentionalState — lives in
Core/Discourse/Intentionality.lean. Discourse commitments live in
Core/Discourse/Commitment.lean.
The mood-category material that used to live here was split out for mathlib-style cleanliness:
Core/Discourse/Roles.lean—DiscourseRole,resolveRoleCore/Mood/IllocutionaryMood.lean—IllocutionaryMood,moodAuthority
This file extends IllocutionaryMood with searleClass/directionOfFit,
which depend on the act taxonomy below.
Organization #
- § 1. Direction of Fit: Searle's key classification principle
- § 2. Illocutionary Taxonomy: the five classes derived from direction of fit
- § 3. Preparatory Conditions: Searle's felicity conditions on directives
- § 4. Verification
Direction of fit: how responsibility for matching is distributed between the Intentional state (or speech act) and the world.
@cite{searle-1983}'s key classification principle. The metaphor: if a shopper's list doesn't match what's in the cart, the list is at fault (mind-to-world). If a builder's blueprint doesn't match the building, the building is at fault (world-to-mind).
- mindToWorld : DirectionOfFit
Mind-to-world: the state must match independently existing reality. Beliefs, perceptions, assertions. If wrong, the state is at fault.
- worldToMind : DirectionOfFit
World-to-mind: the world must be changed to match the state. Desires, intentions, orders, promises. If unfulfilled, the world is at fault.
- null : DirectionOfFit
Null direction: the state presupposes the truth of its content but imposes no fit responsibility. Expressives (apologies, congratulations).
- double : DirectionOfFit
Double direction: both mind-to-world and world-to-mind simultaneously. Declarations bring about a state of affairs by representing it as obtaining.
Instances For
Equations
- Core.Discourse.instDecidableEqDirectionOfFit x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
@cite{searle-1979}'s five basic categories of illocutionary acts, derived from the mind's representational capacities. These are exhaustive and mutually exclusive. Restated in @cite{searle-1983} Ch. 6: "the taxonomy is fundamentally a reflection of the various ways in which representations can have directions of fit."
- assertive : SearleClass
We tell people how things are (assertions, statements, descriptions).
- directive : SearleClass
We try to get people to do things (orders, commands, requests).
- commissive : SearleClass
We commit ourselves to doing things (promises, vows, pledges).
- declaration : SearleClass
We bring about changes by representing them as obtaining (verdicts, appointments).
- expressive : SearleClass
We express feelings about presupposed states of affairs (apologies, congratulations).
Instances For
Equations
- Core.Discourse.instDecidableEqSearleClass x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Core.Discourse.instReprSearleClass = { reprPrec := Core.Discourse.instReprSearleClass.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Direction of fit for each illocutionary class. The five classes are derived from the possible directions of fit.
Equations
- Core.Discourse.SearleClass.assertive.directionOfFit = Core.Discourse.DirectionOfFit.mindToWorld
- Core.Discourse.SearleClass.directive.directionOfFit = Core.Discourse.DirectionOfFit.worldToMind
- Core.Discourse.SearleClass.commissive.directionOfFit = Core.Discourse.DirectionOfFit.worldToMind
- Core.Discourse.SearleClass.declaration.directionOfFit = Core.Discourse.DirectionOfFit.double
- Core.Discourse.SearleClass.expressive.directionOfFit = Core.Discourse.DirectionOfFit.null
Instances For
Map IllocutionaryMood to Searle class. Not injective: both directives
(imperative) and commissives (promissive) share world-to-mind fit.
Defined in the Core.Mood.IllocutionaryMood namespace so it is
available via dot notation, even though the SearleClass taxonomy
lives in Core.Discourse.
Equations
- Core.Mood.IllocutionaryMood.declarative.searleClass = Core.Discourse.SearleClass.assertive
- Core.Mood.IllocutionaryMood.interrogative.searleClass = Core.Discourse.SearleClass.directive
- Core.Mood.IllocutionaryMood.imperative.searleClass = Core.Discourse.SearleClass.directive
- Core.Mood.IllocutionaryMood.promissive.searleClass = Core.Discourse.SearleClass.commissive
- Core.Mood.IllocutionaryMood.exclamative.searleClass = Core.Discourse.SearleClass.expressive
Instances For
Direction of fit for an illocutionary mood, derived via Searle class.
Equations
Instances For
Preparatory conditions for directive speech acts.
@cite{searle-1969}: for a request to be felicitous, the hearer must satisfy certain preconditions — ability to comply and willingness to comply. @cite{francik-clark-1985} show that speakers design indirect requests to target the specific preparatory condition most at risk, refining "ability" into a subsumption hierarchy:
ability
├── knowledge
│ ├── memory ("Do you remember?")
│ └── perception ("Did you see/hear/notice?")
└── permission ("Are you allowed?")
willingness ("Would you mind?")
More specific conditions correspond to more specific (less direct) request forms.
- ability : PreparatoryCondition
Hearer is able to perform the requested act (general).
- knowledge : PreparatoryCondition
Hearer knows the relevant information. Subtype of ability.
- memory : PreparatoryCondition
Hearer remembers the information. Subtype of knowledge.
- perception : PreparatoryCondition
Hearer has perceived the relevant source. Subtype of knowledge.
- permission : PreparatoryCondition
Hearer is permitted to perform the act. Subtype of ability.
- willingness : PreparatoryCondition
Hearer is willing to perform the act. Independent of ability.
Instances For
Equations
- Core.Discourse.instDecidableEqPreparatoryCondition x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Subsumption: c₁.subsumes c₂ iff satisfying c₂ entails satisfying c₁.
Memory and perception are subtypes of knowledge; knowledge and permission are subtypes of ability. Willingness is independent.
Equations
- Core.Discourse.PreparatoryCondition.ability.subsumes Core.Discourse.PreparatoryCondition.ability = true
- Core.Discourse.PreparatoryCondition.knowledge.subsumes Core.Discourse.PreparatoryCondition.knowledge = true
- Core.Discourse.PreparatoryCondition.memory.subsumes Core.Discourse.PreparatoryCondition.memory = true
- Core.Discourse.PreparatoryCondition.perception.subsumes Core.Discourse.PreparatoryCondition.perception = true
- Core.Discourse.PreparatoryCondition.permission.subsumes Core.Discourse.PreparatoryCondition.permission = true
- Core.Discourse.PreparatoryCondition.willingness.subsumes Core.Discourse.PreparatoryCondition.willingness = true
- Core.Discourse.PreparatoryCondition.ability.subsumes Core.Discourse.PreparatoryCondition.knowledge = true
- Core.Discourse.PreparatoryCondition.ability.subsumes Core.Discourse.PreparatoryCondition.memory = true
- Core.Discourse.PreparatoryCondition.ability.subsumes Core.Discourse.PreparatoryCondition.perception = true
- Core.Discourse.PreparatoryCondition.ability.subsumes Core.Discourse.PreparatoryCondition.permission = true
- Core.Discourse.PreparatoryCondition.knowledge.subsumes Core.Discourse.PreparatoryCondition.memory = true
- Core.Discourse.PreparatoryCondition.knowledge.subsumes Core.Discourse.PreparatoryCondition.perception = true
- x✝¹.subsumes x✝ = false
Instances For
The specificity chain: memory/perception → knowledge → ability.
Willingness is independent of ability: neither subsumes the other.
Directives are the speech act class that has preparatory conditions on the hearer's ability and willingness.