Documentation

Linglib.Phenomena.Questions.Studies.RomeroHan2004

Romero & Han (2004): Negative Yes/No Questions and Epistemic Bias #

@cite{romero-han-2004} @cite{ladd-1981}

Core Contribution #

Preposed negation in yes/no questions forces an epistemic implicature via the VERUM operator (FOR-SURE-CG). Ladd's PI/NI ambiguity is scope ambiguity:

The VERUM operator is the conversational-epistemic mechanism:

FOR-SURE-CG_x(p) = ∀w' ∈ Epi_x(w)[∀w'' ∈ Conv_x(w')[p ∈ CG_w'']]

"For all worlds compatible with x's knowledge, for all worlds compatible with x's conversational goals, p is in the Common Ground." Short form: "It is for sure that we should add p to the CG."

Results #

  1. VERUM creates unbalanced partitions: {FOR-SURE-CG(p), ¬FOR-SURE-CG(p)} rather than {p, ¬p}.
  2. Ladd's PI/NI ambiguity is scope ambiguity over VERUM and negation.
  3. Epistemic implicature follows from intent/pronunciation:
    • Asserting ¬FOR-SURE-CG(p) (PI) implicates belief in p
    • Asserting FOR-SURE-CG(¬p) (NI) implicates belief in ¬p
structure RomeroHan2004.Verum.CGWorld (W : Type u_1) :
Type u_1

A world type with Common Ground

  • world : W

    The possible world

  • cg : List (WBool)

    The Common Ground at this world (set of propositions)

Instances For
    @[reducible, inline]

    Epistemic accessibility: worlds compatible with agent's knowledge

    Equations
    Instances For
      @[reducible, inline]

      Conversational accessibility: worlds compatible with agent's conversational goals

      Equations
      Instances For
        structure RomeroHan2004.Verum.VerumFrame (W : Type u_1) :
        Type u_1

        Full modal frame for VERUM semantics

        • worlds : List W

          Set of worlds

        • epiAccessible : EpistemicAccessibility W

          Epistemic accessibility (Epi_x)

        • convAccessible : ConversationalAccessibility W

          Conversational accessibility (Conv_x)

        • commonGround : WList (WBool)

          Common Ground function: for each world, what's in the CG

        Instances For
          def RomeroHan2004.Verum.forSureCG {W : Type u_1} (frame : VerumFrame W) (w : W) (p : WBool) :
          Bool

          FOR-SURE-CG: The VERUM operator.

          ∀w' ∈ Epi_x(w)[∀w'' ∈ Conv_x(w')[p ∈ CG_w'']]

          For all epistemic alternatives w', for all conversational alternatives w'', p is in the Common Ground at w''.

          This captures: "It is for sure that we should add p to the CG."

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For
            def RomeroHan2004.Verum.verum {W : Type u_1} [DecidableEq W] (cgMembership : W(WBool)Bool) (epiWorlds convWorlds : WList W) (w : W) (p : WBool) :
            Bool

            Simplified VERUM for finite models

            Equations
            • RomeroHan2004.Verum.verum cgMembership epiWorlds convWorlds w p = (epiWorlds w).all fun (w' : W) => (convWorlds w').all fun (w'' : W) => cgMembership w'' p
            Instances For

              A polar question partition

              • cell1 : WBool

                The two cells of the partition

              • cell2 : WBool
              • pronounced : WBool

                Which cell is "pronounced" (the surface form asks about)

              Instances For

                Standard balanced polar question: {p, ¬p}

                Equations
                Instances For
                  def RomeroHan2004.Verum.verumQuestion {W : Type u_1} [DecidableEq W] (cgMembership : W(WBool)Bool) (epiWorlds convWorlds : WList W) (p : WBool) (pronounceNeg : Bool) :

                  Unbalanced VERUM question: {FOR-SURE-CG(p), ¬FOR-SURE-CG(p)}

                  When VERUM is present, the partition is about epistemic commitment to CG membership, not about p's truth directly.

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

                    Reading type for negative polar questions

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

                        LF structure for negative polar questions

                        Instances For
                          def RomeroHan2004.Verum.interpretNegQuestion {W : Type u_1} [DecidableEq W] (cgMembership : W(WBool)Bool) (epiWorlds convWorlds : WList W) (lf : NegQuestionLF W) :

                          Interpret a negative question LF as a partition

                          • PI: {¬FOR-SURE-CG(p), FOR-SURE-CG(p)}
                          • NI: {FOR-SURE-CG(¬p), ¬FOR-SURE-CG(¬p)}
                          Equations
                          Instances For

                            Speaker's prior epistemic state

                            • beliefWorlds : List W

                              Worlds compatible with speaker's beliefs

                            • believes : (WBool)Bool

                              Does speaker believe p?

                            Instances For
                              def RomeroHan2004.Verum.epistemicImplicature {W : Type u_1} (reading : NegQuestionReading) (_p : WBool) :
                              String

                              Implicature from pronounced cell

                              The pronounced cell of a VERUM question implicates the speaker's prior belief:

                              • PI pronounces ¬FOR-SURE-CG(p) → implicates belief in p
                              • NI pronounces FOR-SURE-CG(¬p) → implicates belief in ¬p
                              Equations
                              Instances For

                                Polarity item type

                                Instances For
                                  Equations
                                  • One or more equations did not get rendered due to their size.
                                  Instances For
                                    theorem RomeroHan2004.Verum.ppi_implies_pi (item : PolarityItem) (reading : NegQuestionReading) :
                                    isLicensed item reading = truematch item with | PolarityItem.PPI a => reading = NegQuestionReading.PI | PolarityItem.NPI a => reading = NegQuestionReading.NI

                                    Ladd's generalization: PPIs → PI, NPIs → NI

                                    Sources that contribute VERUM to the LF

                                    • preposedNegation : VerumSource

                                      Preposed negation: "Doesn't John..."

                                    • reallyAdverb : VerumSource

                                      The adverb "really": "Does John really..."

                                    • auxiliaryFocus : VerumSource

                                      Focus on auxiliary: "DOES John..."

                                    • negationFocus : VerumSource

                                      Focus on negation: "Does John NOT..."

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

                                        A negative question datum records epistemic bias.

                                        • sentence : String

                                          The sentence

                                        • negationPosition : String

                                          Negation position

                                        • epistemicBias : Option String

                                          Epistemic bias (positive, negative, or none)

                                        • notes : String

                                          Notes

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

                                            Preposed negation forces positive bias.

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

                                              Non-preposed negation allows neutral reading.

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

                                                Adverb "really" triggers positive bias.

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

                                                  Preposed negation necessarily triggers VERUM (bridge to Verum apparatus).

                                                  @cite{ladd-1981}: the same negative question form is ambiguous between positive-implicature (PI) and negative-implicature (NI) readings, disambiguated by polarity items.

                                                  A Ladd ambiguity datum: same form, opposite implicatures.

                                                  • question : String

                                                    The question template

                                                  • piVariant : String

                                                    Positive-implicature variant (with PPIs like "too")

                                                  • niVariant : String

                                                    Negative-implicature variant (with NPIs like "either")

                                                  • piReading : String

                                                    PI interpretation

                                                  • niReading : String

                                                    NI interpretation

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

                                                      Classic Ladd example: too vs either.

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

                                                        Some vs any.

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

                                                          Already vs yet.

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

                                                            PPIs diagnose PI readings; NPIs diagnose NI readings. Bridge to the polarity-item licensing apparatus.

                                                            Cross-linguistic negative question data.

                                                            • language : String

                                                              Language

                                                            • sentence : String

                                                              Sentence

                                                            • gloss : String

                                                              Gloss

                                                            • translation : String

                                                              Translation

                                                            • biasStrategy : String

                                                              How the language marks bias

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

                                                                German: clitic position determines PI vs NI.

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

                                                                  Spanish: tampoco/también for NI/PI.

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

                                                                    Korean: morphological marking.

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

                                                                      Bulgarian: separate negation and question particles.

                                                                      Equations
                                                                      • RomeroHan2004.bulgarianNegQ = { language := "Bulgarian", sentence := "Ne dojde li Ivan?", gloss := "Not came Q Ivan?", translation := "Didn't Ivan come?", biasStrategy := "particle_order" }
                                                                      Instances For

                                                                        Modern Greek: dhen vs mi negation.

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

                                                                          Generalization 1: preposed negation forces positive epistemic implicature.

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

                                                                            Generalization 2: Ladd's p/¬p ambiguity.

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

                                                                              Example: "Doesn't John drink?" (PI reading)

                                                                              LF: [Q [not [VERUM [John drinks]]]] Partition: {¬FOR-SURE-CG(drinks(j)), FOR-SURE-CG(drinks(j))} Pronounced: ¬FOR-SURE-CG(drinks(j)) Implicature: Speaker believes John drinks

                                                                              Equations
                                                                              Instances For

                                                                                Example: "Doesn't John drink?" (NI reading, with "either")

                                                                                LF: [Q [VERUM [not [John drinks]]]] Partition: {FOR-SURE-CG(¬drinks(j)), ¬FOR-SURE-CG(¬drinks(j))} Pronounced: FOR-SURE-CG(¬drinks(j)) Implicature: Speaker believes John doesn't drink

                                                                                Equations
                                                                                Instances For