Documentation

Linglib.Theories.Semantics.Attitudes.Confidence

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:

Logic of Confidence (CSW §4.6) #

The ordering validates:

It does NOT validate:

structure Semantics.Attitudes.Confidence.ConfidenceState (E : Type u_1) (W : Type u_2) :
Type (max u_1 u_2)

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 : WProp

    The proposition the holder is confident about

Instances For
    structure Semantics.Attitudes.Confidence.ConfidenceOrdering (E : Type u_1) (W : Type u_2) :
    Type (max u_1 u_2)

    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)).

    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
              theorem Semantics.Attitudes.Confidence.certain_entails_confident {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) (confPt maxPt : ConfidenceState E W) (h : co.le confPt maxPt) :

              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.

              theorem Semantics.Attitudes.Confidence.confident_not_entails_certain {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) (confPt maxPt : ConfidenceState E W) (h_strict : co.le confPt maxPt ¬co.le maxPt confPt) :

              The entailment is asymmetric when the contrast points differ: confidence does NOT entail certainty (CSW (65b)).

              theorem Semantics.Attitudes.Confidence.comparative_transitive {E : Type u_1} {W : Type u_2} (_co : ConfidenceOrdering E W) {D : Type u_3} [LinearOrder D] (μ : ConfidenceState E WD) (s_p s_q s_r : ConfidenceState E W) (h_pq : μ s_q < μ s_p) (h_qr : μ s_r < μ s_q) :
              μ s_r < μ s_p

              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.

              theorem Semantics.Attitudes.Confidence.comparative_antisymmetric {E : Type u_1} {W : Type u_2} (_co : ConfidenceOrdering E W) {D : Type u_3} [LinearOrder D] (μ : ConfidenceState E WD) (s_p s_q : ConfidenceState E W) (h₁ : μ s_q μ s_p) (h₂ : μ s_p μ s_q) :
              μ s_p = μ s_q

              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.

              theorem Semantics.Attitudes.Confidence.confidence_upward_monotone {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) (entry : Lexical.Adjective.StatesBased.StatesBasedEntry (ConfidenceState E W)) (s_p s_q : ConfidenceState E W) (h_conf : entry.inPositiveRegion s_p) (h_more : co.le s_p s_q) :

              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.

              theorem Semantics.Attitudes.Confidence.conjunction_fallacy_compatible :
              ∃ (contrastPt : ) (high : ) (low : ), contrastPt high ¬contrastPt low

              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.