Documentation

Linglib.Fragments.German.ClauseTypes

German Clause Types #

@cite{gutzmann-2015}

German clause-type taxonomy used by Gutzmann (2015) for the analysis of sentence mood operators (DEONT, EPIS, HKNOW). Five clause types distinguished by verb position (V2 vs verb-last) and complementizer presence (dass vs not), with their associated mood-operator inventories and clause-level mood compositions.

This file is the German fragment counterpart of the language-agnostic operators in Theories.Semantics.Mood.Gutzmann. The theory file defines DEONT, EPIS, the E modifier, and HKNOW; this file specifies which of those operators each German clause type composes.

German Clause Type Inventory (@cite{gutzmann-2015}, Ch 5) #

Clause typeMood operatorsExample
dass-VLDEONT only"Dass du kommst!"
V2-declarativeDEONT(EPIS(p))"Jim wohnt in Berlin."
VL-interrogativeDEONT(EPIS(p))"Wann Peter kommt?"
V2-interrogativeDEONT(EPIS(p)) ⊙ HKNOW"Kommt Peter?"
ImperativeDEONT only"Tritt zurück!"

dass-VL clause mood: DEONT only (@cite{gutzmann-2015}, (5.82)).

No [±wh] visible at LF (dass is semantically empty, so [−wh] is invisible per the visibility condition (5.41)). Therefore no epistemic interpretation is triggered. The root rule introduces DEONT.

"Dass du nicht zu spät kommst!" = The speaker wants [you not arrive late].

Equations
Instances For

    V2-declarative mood: DEONT(EPIS(p)) (@cite{gutzmann-2015}, (5.93)–(5.96)).

    The finite verb moves to C⁰ (V-to-C triggered by [−wh] attached to an overt element at PF). The [−wh] is visible at LF, triggering epistemic interpretation. The root rule adds DEONT, and E modifies it to embed the epistemic predicate.

    "Jim wohnt in Berlin." = The speaker wants the hearer to believe [Jim lives in Berlin].

    Equations
    Instances For

      V2-interrogative mood: DEONT(EPIS(p)) ⊙ HKNOW(p) (@cite{gutzmann-2015}, (5.100)).

      V2-interrogatives have two [±wh] specifications: [+wh] in CP^spec and [−wh] in C⁰ (Brandt et al. 1992). The first triggers epistemic interpretation, the second (in C⁰) triggers an additional epistemic interpretation resolved to hearer knowledge. HKNOW is a separate functional expletive UCI whose u-content is conjoined (⊙) with the deontic/epistemic mood.

      "Kommt Peter?" = The speaker wants to know [whether Peter comes] AND the addressee knows [whether Peter comes].

      Equations
      Instances For

        VL-interrogative mood: DEONT(EPIS(p)) only — no HKNOW (@cite{gutzmann-2015}, p. 213).

        VL-interrogatives (e.g., "Wann Peter nach Hause kommt?") lack the [−wh] in C⁰ that triggers HKNOW. Therefore they are felicitous even when the hearer does not know the answer (the Cuban cigar scenario).

        Equations
        Instances For

          dass-VL clauses have no epistemic component.

          V2-interrogatives differ from VL-interrogatives only in the HKNOW component (hearer knowledge use condition).

          Imperatives and dass-VL clauses share the same mood structure: DEONT only, no epistemic. Both lack [±wh] visible at LF.

          GermanClauseType as ClauseForm-indexed inductive #

          GermanClauseType is a Gutzmann-2015-specific refinement of the framework-agnostic Features.ClauseForm: it distinguishes clauses by both verb position (V2 vs VL) and complementizer presence (dass vs not), where ClauseForm only records the matrix-vs-embedded question / declarative word-order distinction.

          We encode the refinement structurally as an indexed inductive GermanClauseType : ClauseForm → Type. Each constructor specifies the ClauseForm it refines:

          GermanClauseTypeClauseForm
          dassVLdeclarative
          v2Declarativedeclarative
          v2InterrogativematrixQuestion
          vlInterrogativeembeddedQuestion
          imperativedeclarative

          Two consequences fall out of the indexing rather than requiring separate proof:

          1. No bridge function. The "projection to ClauseForm" is the type-level index — (ct : GermanClauseType f) witnesses both the refined value and its ClauseForm projection f simultaneously.
          2. (ct : GermanClauseType .matrixQuestion) is exactly the v2Interrogative case. cases ct on this type produces a single branch, capturing the structural fact that "matrix-question German clause" picks out v2Interrogative without auxiliary filtering.

          German clause types distinguished by verb position and complementizer, indexed by their Features.ClauseForm projection. The verb-position/complementizer information determines mood operator inventory (@cite{gutzmann-2015}, Ch 5).

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

                The mood structure of each German clause type, derived from the theory of [±wh] visibility and the root rule.

                Equations
                Instances For

                  Every matrix clause has a deontic operator (the root rule).

                  Imperatives lack EPIS — the structural basis for selectional restrictions on UC-modifiers like wohl.

                  Structural consequences of the indexing #

                  These theorems exploit the indexed structure: instead of projecting via a forgetful function and filtering, the type-level index does the work.

                  A matrix-question German clause type is exactly v2Interrogative. Pattern matching on GermanClauseType .matrixQuestion produces a single constructor by the indexing.

                  HKNOW iff matrix question — restated structurally as a fact about the index. The HKNOW use condition tracks form-level matrix interrogativity (@cite{gutzmann-2015}, p. 213, Cuban cigar argument).

                  The .declarative fiber is many-to-one — three German clause types inhabit it (dassVL, v2Declarative, imperative), and they are distinguishable only at the moodStructure level. The contrast below type-checks because both terms have type GermanClauseType .declarative.