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 by a ConfidenceOrdering, which extends Preorder (ConfidenceState E W) with a holder field.

Key features:

Logic of Confidence (CSW §4.6) #

The ordering validates:

It does NOT validate:

§1. Confidence States #

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); the theme is the propositional THEME.

  • holder : E

    The attitude bearer

  • theme : WProp

    The proposition the holder is confident about

Instances For

    §2. Holder-Relativized Confidence Ordering #

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

    A holder-relativized confidence ordering (CSW §4.1).

    Extends mathlib's Preorder with a holder field and a consistency constraint that all states in the ordering belong to that holder. The preorder is at least reflexive and transitive; CSW §4.6 are explicitly agnostic about connectedness (totality), which is why Preorder (not LinearOrder or PartialOrder) is the right base — it permits CSW's discussion of (58) where some propositions are incomparable.

    Each holder has their own ordering: orderings vary from holder to holder but NOT from theme to theme (CSW p.19).

    Instances For

      §3. Confident and Certain as StatesBasedEntry #

      confident and certain share a ConfidenceOrdering but pick out different positive regions via different contrastPoints. CSW Figures 2 and 3: same background ordering, different cut-offs.

      The lexical entries are POS-free (CSW §3.3): the positive form is contrastPoint ≤ s directly on the preorder, with no covert pos morpheme. This is the central architectural commitment of CSW.

      Build a StatesBasedEntry for a gradable attitude adjective on a confidence ordering. The contrastPt determines where the positive region begins. The boundedness flag classifies the scale shape.

      Equations
      Instances For
        @[reducible, inline]

        confident: positive region begins at a moderate contrast point in the upper portion of the confidence ordering (CSW Figure 2).

        Equations
        Instances For
          @[reducible, inline]

          certain: positive region IS the set of maximal states (CSW §5.2, Figure 3, eq. (69) "fully/100% confident = certain"). The maximality of maxPt is asserted as a separate hypothesis at use sites (certain_entails_confident) rather than baked into the constructor, matching CSW p.19's "for ordinary individuals" hedge.

          Note: structurally identical to confidentEntry — the difference between certain and confident is the value of the contrast point relative to the ordering, not the entry's shape.

          Equations
          Instances For
            @[reducible, inline]

            doubts: a negative-polarity entry on the same confidence ordering as confident/certain. The "positive region" of doubts (the set of states the predicate holds of) is the lower portion of the confidence ordering — states the holder has low confidence in relative to doubtPt.

            Structurally identical to confidentEntry/certainEntry — the difference is which region predicate consumers invoke. confident and certain use inPositiveRegion; doubts uses inLowerRegion.

            CSW §5.2 (63c) places "Ann doubts that the dress is blue" in this lower region; the inconsistency with (63a)/(63b) is then confident_excludes_doubts below.

            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_top : ∀ (s : ConfidenceState E W), s maxPt) :

              certain entails confident (CSW (65)/(66)).

              Given that maxPt is the top of the ordering (CSW's "ordinary holder" assumption), the certainty contrast point dominates any confidence contrast point, so by asymEntails_positive_region every state in the certainty region is also in the confidence region.

              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 : ¬maxPt confPt) :

              The entailment is asymmetric (CSW (65b)/(66b)): confidence does NOT entail certainty whenever the ordering admits a state strictly above the confidence contrast point that is not in the certainty region.

              Concretely: if maxPt is the certainty contrast point and confPt is strictly below it (¬co.le maxPt confPt), then there is no asymEntails confidentEntry certainEntry because the contrast points don't match in the right direction.

              §4. Logic of Confidence Reports (CSW §4.6) #

              theorem Semantics.Attitudes.Confidence.comparative_transitive {E : Type u_1} {W : Type u_2} {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)/(57)): "more confident of p than q" ∧ "more confident of q than r" → "more confident of p than r".

              This is lt_trans on the linearly-ordered measure type. The ConfidenceOrdering doesn't enter the proof, but the named lemma documents that this is the prediction CSW make for confidence comparatives. CSW (57) is contradictory because asserting the negation of (54)'s consequent contradicts this generic fact.

              theorem Semantics.Attitudes.Confidence.comparative_antisymmetric {E : Type u_1} {W : Type u_2} {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".

              theorem Semantics.Attitudes.Confidence.confidence_upward_monotone {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) (entry : Gradability.StatesBased.StatesBasedEntry (ConfidenceState E W)) (s_p s_q : ConfidenceState E W) (h_conf : entry.inPositiveRegion s_p) (h_more : 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 and s_q is ranked at least as high as s_p in the confidence ordering, then s_q is also in the positive region — by transitivity through the contrast point.

              theorem Semantics.Attitudes.Confidence.confident_excludes_doubts {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) (confPt doubtPt : ConfidenceState E W) (h_strict : ¬confPt doubtPt) (s : ConfidenceState E W) :
              ¬((confidentEntry co confPt).inPositiveRegion s (doubtsEntry co doubtPt).inLowerRegion s)

              CSW (63a)/(63c): confident and doubts are mutually exclusive.

              No confidence state is simultaneously in the confidence region (above the confidence contrast point) and the doubt region (below the doubt contrast point), provided the doubt contrast point is strictly below the confidence contrast point. This is the substantive content of CSW's claim that "Ann doubts that the dress is blue" is inconsistent with "Ann is confident / has confidence that the dress is blue".

              Combined with certain_entails_confident, this gives CSW's full inferential triangle: certain(p) → confident(p), confident(p) ⊥ doubts(p), so certain(p) ⊥ doubts(p).

              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: ℕ as a toy ordering with contrast point 1 — the state ranked 2 is in the positive region (1 ≤ 2) while the state ranked 0 is not (¬ 1 ≤ 0). Applied to confidence: assign rank 2 to the (p ∧ q)-state and rank 0 to the p-state. The ordering is subjective and not constrained by logical entailment.

              CSW §4.6 use this to argue against any probability-functional account: probability functions force Pr(p ∧ q) ≤ Pr(p). The cross-framework refutation is EpistemicThreshold.confidence_not_probabilistic, which witnesses that no probabilistic credence agrees with this.

              §5. Bridge to Neo-Davidsonian Event Semantics #

              CSW (44) and (47) are the compositional logical forms for positive and comparative confidence reports respectively. The substrate exposes both via confidenceLogicalForm (presupposition-flattened) and comparativeConfidenceLogicalForm (under unique-state simplification — CSW fn. 25 explicitly reject this, but it is convenient as a working form; full (47) requires a max-quantified than-clause that Wellwood2015.adjectival_max_reduces already provides at study-file level).

              Truth-conditional content of CSW (44) (presupposition flattened).

              CSW (44) restricts the existential to states in Dom(⟨D^ho(s)_conf, ≿⟩); the substrate version drops the domain restriction and lets membership in ConfidenceState E W stand in for it. For the substrate's truth-conditional purposes this is sufficient; for presupposition bookkeeping a separate domain-restricted variant would be needed.

              Equations
              Instances For
                def Semantics.Attitudes.Confidence.comparativeConfidenceLogicalForm {E : Type u_1} {W : Type u_2} (co : ConfidenceOrdering E W) {D : Type u_3} [LinearOrder D] (μ : ConfidenceState E WD) (holder : E) (p q : WProp) :

                Schematic comparative content under the unique-state simplification.

                The actual CSW (47) abstracts a max(λd. ...) over the than-clause; this version requires only that some q-themed state has a strictly smaller measure than the p-themed state. CSW fn. 25 explicitly reject the unique-state assumption ("This is not the picture we adopt"), but the simplification is useful for theorem statements that don't need the full max-quantification. The maximality version lives at the study-file level via Wellwood2015.adjectival_max_reduces.

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For