Confidence and Certainty as Gradable Attitudes #
@cite{cariani-santorio-wellwood-2024}
Gradable attitude adjectives like confident, certain, sure, and
doubtful denote properties of confidence states. Unlike accessibility-based
attitudes (Doxastic.lean: believe, know) and preference-based attitudes
(Preferential.lean: hope, fear), these are gradable properties of states
with propositional themes — a third kind of attitude semantics.
Core Structure #
A confidence state has a holder (the attitude bearer) and a theme (the proposition the holder is confident about). Confidence states for a given holder are ordered: the ordering represents how confident the holder is in different propositions.
Key features:
- Per-holder ordering: Ann's confidence ordering differs from Bob's (CSW §4.1)
- Not per-theme: the ordering ranks states across themes, not within one theme
- Not probabilistic: the ordering need not respect conjunction (conjunction fallacy compatible, CSW (52))
- Bounded above:
certainpicks out the maximal elements (CSW §5.2)
Logic of Confidence (CSW §4.6) #
The ordering validates:
- Transitivity of comparative confidence (CSW (54))
- Antisymmetry of equative confidence (CSW (55))
- Upward monotonicity: confident(p) ∧ more_confident(q, p) → confident(q) (CSW (53))
It does NOT validate:
- Probabilistic conjunction: confident(p ∧ q) → confident(p)
- Connectedness (CSW are agnostic, §4.6 discussion of (58))
A confidence state: a state with a holder and a propositional theme.
CSW §4.1: "there are three states of confidence such that Mary is the holder of all three. These states have as themes, respectively, the propositions that it's snowing, that Regina is in Saskatchewan, and that Brazil will win the World Cup."
Every ordinary person is the holder of a large number of confidence
states. The holder field is the Neodavidsonian HOLDER role
(ThematicRoles.lean:91); the theme is the propositional THEME.
- holder : E
The attitude bearer
- theme : W → Prop
The proposition the holder is confident about
Instances For
A holder-relativized confidence ordering (CSW §4.1).
The ordering ranks confidence states by how confident the holder is in each theme. Orderings vary from holder to holder but NOT from theme to theme: propositions are the objects of confidence states, not parameters in fixing their ranking.
The ordering is at least a preorder (reflexive, transitive). CSW are agnostic about connectedness (totality): it is possible that some propositions are simply not comparable by the lights of a subject's confidence states (CSW §4.6, discussion of (58)).
- holder : E
The attitude bearer whose ordering this is
- le : ConfidenceState E W → ConfidenceState E W → Prop
Weak ordering:
le s₁ s₂means holder is at least as confident in the theme ofs₂as in the theme ofs₁ - le_refl (s : ConfidenceState E W) : self.le s s
Reflexivity
- le_trans (a b c : ConfidenceState E W) : self.le a b → self.le b c → self.le a c
Transitivity
- holder_consistent (s₁ s₂ : ConfidenceState E W) : self.le s₁ s₂ → s₁.holder = self.holder ∧ s₂.holder = self.holder
All states in this ordering belong to this holder
Instances For
A confidence ordering induces a preorder on confidence states.
Equations
- co.toPreorder = { le := co.le, le_refl := ⋯, le_trans := ⋯, lt_iff_le_not_ge := ⋯ }
Instances For
Build a StatesBasedEntry for a gradable attitude adjective
on a confidence ordering. The contrastPt determines where the
positive region begins.
Equations
Instances For
confident: positive region begins at a moderate contrast point.
CSW Figure 2: the positive region for confident covers the upper
portion of the confidence ordering.
Equations
Instances For
certain: positive region begins at the maximum — certain picks out
the maximal elements of the confidence ordering (CSW §5.2, Figure 3).
certain and confident share the same background ordering but
certain has a higher contrast point.
Equations
Instances For
certain entails confident: every state in the certainty region
is also in the confidence region (CSW (65)).
This follows from asymEntails when the certainty contrast point
is at least as high as the confidence contrast point.
The entailment is asymmetric when the contrast points differ: confidence does NOT entail certainty (CSW (65b)).
Comparative confidence is transitive (CSW (54)): "more confident of p than q" ∧ "more confident of q than r" → "more confident of p than r".
Follows from transitivity of the preorder + monotonicity of admissible measures.
Comparative confidence is antisymmetric (CSW (55)): "at least as confident of p as q" ∧ "at least as confident of q as p" → "equally confident of p and q".
Follows from antisymmetry of ≤ on the degree type.
Upward monotonicity of the positive form (CSW (53)): "σ is confident that p" ∧ "σ is more confident of q than of p" → "σ is confident that q".
If s_p is in the positive region (contrastPt ≤ s_p in the preorder) and s_q is ranked at least as high as s_p, then s_q is also in the positive region.
Confidence orderings need not respect logical conjunction: it is consistent to be confident that (p ∧ q) without being confident that p (CSW (52), @cite{tversky-kahneman-1983}).
Witness: ℕ with contrast point 1 — the state ranked 2 is in the positive region (2 ≥ 1) while the state ranked 0 is not (0 < 1). Applied to confidence: assign rank 2 to the (p ∧ q)-state and rank 0 to the p-state. The ordering is subjective, not constrained by logical entailment or probability.