Documentation

Linglib.Phenomena.Modality.Studies.AnandHacquard2013

Anand & Hacquard (2013): Epistemics and Attitudes #

@cite{anand-hacquard-2013}

Semantics & Pragmatics 6, Article 8: 1–59.

Summary #

This paper investigates the distribution of epistemic modals (might, must) in the complements of attitude verbs across French, Italian, and Spanish. The central finding:

  1. Epistemics are fully acceptable under attitudes of acceptance (doxastics, argumentatives, semifactives) but degraded under desideratives and directives.

  2. Emotive doxastics (hope, fear) and dubitatives (doubt) show a mixed pattern: they license epistemic possibility (might) but not epistemic necessity (must).

Proposal #

Two proposals are combined:

About epistemics (@cite{yalcin-2007}, @cite{hacquard-2006}): Epistemics quantify over an information state parameter S, obtained by anaphora to the embedding attitude.

About attitudes (@cite{bolinger-1968}, @cite{villalta-2008}):

Connection to BToM #

The hybrid structure of emotive doxastics maps directly onto BToM inference (@cite{baker-jara-ettinger-saxe-tenenbaum-2017}):

This bridges @cite{anand-hacquard-2013}'s attitude semantics with @cite{houlihan-kleiman-weiner-hewitt-tenenbaum-saxe-2023}'s emotion appraisal architecture: emotive doxastics ARE prospective emotions computed from BToM marginals.

Cross-Romance Survey Data #

Seven-point acceptability ratings (1 = unacceptable, 7 = completely acceptable) for epistemic modals under attitude verbs, pooled across French (n=31), Italian (n=11), and Spanish (n=21).

Table 4: Pooled Descriptive Statistics (mean (sd) / median) #

des/directemo doxdubitativesemifactiveacceptMean
might3.5/35.1/66.1/76.1/76.4/75.4 (1.8)/6
must1.9/12.7/23.1/25.6/66.0/73.9 (1.7)/4
probable2.4/34.2/54.8/65.6/76.2/75.0 (1.9)/5

The critical contrasts:

We use AttitudeClass from Representationality.lean directly (7 classes) rather than defining a study-local enum. The survey collapses some classes (doxastics ≈ argumentatives, desideratives ≈ directives), but the theory predicts the same licensing for collapsed classes — which we verify.

Acceptability judgment: acceptable (median ≥ 5) or degraded.

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

      Observed acceptability from the survey data, indexed by the full AttitudeClass from Representationality.lean. Argumentatives pattern with doxastics; directives pattern with desideratives.

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

        Predicted licensing derived from AttitudeClass.licensesEpistemic (Representationality.lean). No stipulation — the prediction follows from the representationality classification.

        Equations
        Instances For

          The representationality theory correctly predicts all 14 cells (7 attitude classes × 2 epistemic forces).

          Epistemic Modals as Information-State Quantifiers #

          Following @cite{yalcin-2007} and @cite{veltman-1996}, epistemic modals quantify over an information state parameter S:

          ⟦might φ⟧^{c,w,S,g} = 1 iff ∃w' ∈ S: ⟦φ⟧^{c,w',S,g} = 1
          ⟦must φ⟧^{c,w,S,g} = 1 iff ∀w' ∈ S: ⟦φ⟧^{c,w',S,g} = 1
          

          Attitude verbs update S with their quantificational domain:

          ⟦att φ⟧^{c,w,S,g} = λx. ∀w' ∈ S': ⟦φ⟧^{c,w',S',g} = 1
          where S' = quantificational domain provided by att
          

          For representational attitudes: S' = DOX(x,w) (non-trivial) For non-representational attitudes: S' = ∅ (trivial → tautology/contradiction)

          @[reducible, inline]
          abbrev AnandHacquard2013.InfoState (W : Type u_2) :
          Type u_2

          Information state: a set of worlds (represented as a list).

          Equations
          Instances For
            def AnandHacquard2013.mightS {W : Type u_1} (S : InfoState W) (φ : WProp) :

            Epistemic possibility over information state S: ⟦might φ⟧_S = ∃w' ∈ S: φ(w')

            Equations
            Instances For
              @[implicit_reducible]
              instance AnandHacquard2013.instDecidableMightSOfDecidablePred {W : Type u_1} {S : InfoState W} {φ : WProp} [DecidablePred φ] :
              Decidable (mightS S φ)
              Equations
              def AnandHacquard2013.mustS {W : Type u_1} (S : InfoState W) (φ : WProp) :

              Epistemic necessity over information state S: ⟦must φ⟧_S = ∀w' ∈ S: φ(w')

              Equations
              Instances For
                @[implicit_reducible]
                instance AnandHacquard2013.instDecidableMustSOfDecidablePred {W : Type u_1} {S : InfoState W} {φ : WProp} [DecidablePred φ] :
                Decidable (mustS S φ)
                Equations

                Non-triviality presupposition (@cite{geurts-2005}): epistemics presuppose their modal base is non-trivial.

                Equations
                Instances For
                  @[implicit_reducible]
                  instance AnandHacquard2013.instDecidableNonTrivial {W : Type u_1} {S : InfoState W} :
                  Decidable (nonTrivial S)
                  Equations
                  theorem AnandHacquard2013.might_defined_iff_nontrivial {W : Type u_1} [DecidableEq W] (S : InfoState W) (φ : WProp) [DecidablePred φ] (_h : nonTrivial S) :
                  mightS S φ ¬mightS S φ

                  Epistemic possibility is defined (non-trivial) whenever S ≠ ∅.

                  theorem AnandHacquard2013.might_empty {W : Type u_1} [DecidableEq W] (φ : WProp) :
                  ¬mightS [] φ

                  With empty S, might is trivially false — yielding infelicity.

                  theorem AnandHacquard2013.must_empty {W : Type u_1} [DecidableEq W] (φ : WProp) :
                  mustS [] φ

                  With empty S, must is trivially true — yielding infelicity.

                  def AnandHacquard2013.representationalS {W : Type u_1} {E : Type u_2} (R : Semantics.Attitudes.Doxastic.AccessRel W E) [(a : E) → (w w' : W) → Decidable (R a w w')] (agent : E) (w : W) (worlds : List W) :

                  Representational attitude embedding: S' = DOX(x,w). The doxastic alternatives form the information state that embedded epistemics quantify over.

                  Equations
                  Instances For

                    Non-representational attitude embedding: S' = ∅. Comparative semantics provides no information state.

                    Equations
                    Instances For
                      theorem AnandHacquard2013.representational_nontrivial {W : Type u_1} [DecidableEq W] {E : Type u_2} (R : Semantics.Attitudes.Doxastic.AccessRel W E) [(a : E) → (w w' : W) → Decidable (R a w w')] (agent : E) (w : W) (worlds : List W) (h : w'worlds, R agent w w') :
                      nonTrivial (representationalS R agent w worlds)

                      Representational attitudes yield non-trivial information states (when there is at least one accessible world).

                      Non-representational attitudes yield trivial information states.

                      theorem AnandHacquard2013.believe_must {W : Type u_1} [DecidableEq W] {E : Type u_2} (R : Semantics.Attitudes.Doxastic.AccessRel W E) [(a : E) → (w w' : W) → Decidable (R a w w')] (agent : E) (w : W) (worlds : List W) (p : WProp) [DecidablePred p] :
                      mustS (representationalS R agent w worlds) p Semantics.Attitudes.Doxastic.boxAt R agent w worlds p

                      Under a representational attitude, embedded must p holds iff all doxastic alternatives satisfy p — a non-trivial claim.

                      theorem AnandHacquard2013.want_must_trivial {W : Type u_1} [DecidableEq W] (p : WProp) :

                      Under a non-representational attitude, must p is trivially true.

                      theorem AnandHacquard2013.want_might_trivial {W : Type u_1} [DecidableEq W] (p : WProp) :

                      Under a non-representational attitude, might p is trivially false.

                      Concrete Demonstration #

                      We instantiate the abstract theory with a finite model demonstrating the must/might asymmetry under emotive doxastics.

                      World model: 3 worlds {w₁, w₂, w₃}

                      John's beliefs (DOX): {w₁, w₂} — uncertain whether it's raining. John's preference: raining worlds preferred to non-raining.

                      Predictions:

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

                          John's doxastic accessibility: worlds w₁ and w₂ are doxastically accessible (he's uncertain), w₃ is not.

                          Equations
                          Instances For

                            John's DOX is non-trivial (he has beliefs).

                            "might be raining" is true in John's DOX — there's a raining world.

                            "must be raining" is false in John's DOX — there's a non-raining world.

                            Uncertainty: both raining and non-raining worlds in DOX.

                            The BToM–Emotive Doxastic Bridge #

                            @cite{houlihan-kleiman-weiner-hewitt-tenenbaum-saxe-2023}'s emotion model computes retrospective appraisals from BToM marginals. We show that @cite{anand-hacquard-2013}'s emotive doxastic semantics gives the formal content of prospective emotions computed from the same marginals.

                            The mapping:

                            A&H componentBToM computation
                            Doxastic assertionbeliefMarginal: Pr(b | a) > 0 for b ⊨ φ
                            Uncertainty condition0 < Σ_b Pr(b|a)·⟦φ⟧_b < 1
                            Preference assertiondesireMarginal: Σ_d Pr(d|a)·U(φ,d) > Σ_d Pr(d|a)·U(¬φ,d)

                            This unification means:

                            theorem AnandHacquard2013.hope_from_uncertainty_and_preference (cred u_true u_false : ) (h_pos : 0 < cred) (h_lt_one : cred < 1) (h_pref : u_false < u_true) :
                            { beliefCredence := cred, utilityIfTrue := u_true, utilityIfFalse := u_false }.isHope = true

                            Hope holds from uncertainty + positive preference over resolutions.

                            theorem AnandHacquard2013.fear_from_uncertainty_and_dispreference (cred u_true u_false : ) (h_pos : 0 < cred) (h_lt_one : cred < 1) (h_pref : u_true < u_false) :
                            { beliefCredence := cred, utilityIfTrue := u_true, utilityIfFalse := u_false }.isFear = true

                            Fear holds from uncertainty + negative preference over resolutions.

                            theorem AnandHacquard2013.necessity_contradicts_uncertainty (cred : ) (h_high : cred 1) (h_lt : cred < 1) :
                            False

                            The uncertainty condition in the emotive doxastic semantics is the same as requiring non-extreme credence in the BToM framework: Pr(φ) > 0 ∧ Pr(φ) < 1 ↔ ∃w' ∈ DOX: φ(w') ∧ ∃w' ∈ DOX: ¬φ(w').

                            This is the formal content of why necessity epistemics are blocked: Pr(φ) ≥ θ_must (≈ 1) contradicts Pr(φ) < 1.