Documentation

Linglib.Semantics.Mood.Verbal

Verbal mood as component selection #

Verbal mood — the indicative/subjunctive contrast in the complement clauses of attitude verbs — reduces, on [Por18]'s account (Ch. 2), to which component of the embedding attitude's state the mood operator quantifies over. His unification: the Truth intuition ([Far85], [Por97]) and the Comparison intuition ([GP97]) are both correct because they target different components — universal quantification over the information component underwrites Truth-style selection (boxCs), and quantification over the best-ranked subset underwrites Comparison-style selection (boxLe). A third operator for question-embedding predicates (wonder, ask) selects for clauses settled by the open question (boxAns) — this library's extension; Portner's unification proper is restricted to declarative complementation.

Main declarations #

Main statements #

inductive Mood.VerbalOp :

The three verbal-mood operators; .indicative and .subjunctive are [Por18]'s, .interrogative this library's extension.

  • indicative : VerbalOp

    Universal quantification over the informational component — the Truth intuition.

  • subjunctive : VerbalOp

    Quantification over the preferential component's best-ranked subset — the Comparison intuition.

  • interrogative : VerbalOp

    Answerhood with respect to the inquiry component ([GS84]); selected by question-embedding predicates.

Instances For
    @[implicit_reducible]
    Equations
    @[implicit_reducible]
    Equations
    def Mood.instReprVerbalOp.repr :
    VerbalOpStd.Format
    Equations
    Instances For
      @[implicit_reducible]

      Verbal-mood targets ([Por18], Ch. 2).

      Equations
      • One or more equations did not get rendered due to their size.
      def Mood.VerbalOp.interp {W : Type u_1} (m : VerbalOp) :
      State W(WProp)Prop

      Interpretation of a verbal-mood operator against an embedding state and an embedded proposition: the necessity modal of the operator's target.

      Equations
      Instances For

        Definitional equalities #

        @[simp]
        theorem Mood.interp_indicative {W : Type u_1} (c : State W) (p : WProp) :
        @[simp]
        theorem Mood.interp_subjunctive {W : Type u_1} (c : State W) (p : WProp) :
        @[simp]
        theorem Mood.interp_interrogative {W : Type u_1} (c : State W) (p : WProp) :

        Distinctness witnesses #

        Total information over Bool, ordered so that false — the unique sepProp-world — is the unique optimal world.

        Equations
        Instances For

          sepState with trivial inquiry.

          Equations
          Instances For
            theorem Mood.indicative_ne_subjunctive :
            ∃ (c : State Bool) (p : BoolProp), VerbalOp.subjunctive.interp c p ¬VerbalOp.indicative.interp c p

            The Truth/Comparison split is genuine: the two operators disagree on some state and proposition.

            The interrogative operator is not the indicative one (State.boxAns_not_reducible_to_boxCs).

            theorem Mood.target_injective :
            Function.Injective HasTarget.target

            Verbal-mood targeting is injective: mood selection and component selection are in bijection at this layer. [Por18] states his Indicative and Subjunctive principles one-way ("if a clause is operated on by the informational modal, its form is indicative"), with update-based variants via his (11) fixpoints; the bijection here reflects only this three-element enum.

            Bridge to Selector #

            The verbal-mood operator a predicate class selects, when the class is committed to a single mood cross-linguistically; variable and mood-neutral classes project to none. Selector covers declarative-complement embedders only, so .interrogative is not in its image.

            Equations
            Instances For