Documentation

Linglib.Studies.Zeijlstra2012

[Zei12]: sequence of tense as upward Agree #

[Zei12] analyzes Sequence of Tense (SOT) as syntactic concord, structurally parallel to Negative Concord. Subordinate past morphemes carry uninterpretable [uPAST]; they Agree upward with a c-commanding interpretable [iPAST]. The subordinate past morphology is semantically vacuous — it is Agree spell-out, not semantic past. The account builds on [Cho00]'s Agree, reversing its c-command direction.

Main declarations #

Implementation notes #

Todo #

Tense feature interpretability #

A tense head: a Finset Ordering comparison cell together with an Interpretability status. Following [Zei12], [iPAST] (.interpretable) contributes past semantics; [uPAST] (.uninterpretable) is checked by Agree and is semantically vacuous.

  • tense : Finset Ordering

    The tense value (past/present/future) as a Finset Ordering comparison cell.

  • Whether this tense feature is interpretable or uninterpretable.

Instances For
    def Zeijlstra2012.instDecidableEqTenseHead.decEq (x✝ x✝¹ : TenseHead) :
    Decidable (x✝ = x✝¹)
    Equations
    Instances For

      A tense head is semantically active iff its feature is interpretable.

      Equations
      Instances For

        Upward Agree #

        Zeijlstra's upward Agree: the goal c-commands the probe, reversing standard [Cho00] Agree. The uninterpretable [uF] probe sits low and is valued by a c-commanding interpretable [iF] goal.

        Instances For

          Upward Agree makes the probe semantically vacuous: its feature is uninterpretable, so it does not contribute to LF.

          The goal's tense is semantically active.

          SOT Agree configuration #

          An SOT configuration: one interpretable [iPAST] head over a list of uninterpretable [uPAST] heads ([Zei12], ex. 22–23) — the [iF] > [uF] (> [uF]) upward-Agree schema. See the module notes: the interpretable head is really an abstract operator, and matrix verbal morphology is itself [uPAST].

          Instances For

            In an SOT configuration only the matrix head contributes past semantics; all embedded past morphology is vacuous concord.

            Derivation theorems #

            theorem Zeijlstra2012.zeijlstra_derives_simultaneous {Time : Type u_1} (matrixFrame : _root_.Time.ReichenbachFrame Time) (embeddedE : Time) (embeddedT : TenseHead) (h_u : embeddedT.status = Minimalist.Interpretability.uninterpretable) :
            ¬embeddedT.IsSemanticallyActive (Tense.simultaneousFrame matrixFrame embeddedE).isPresent

            The simultaneous reading: embedded [uPAST] is vacuous, so the embedded clause has no independent past — it is interpreted at the matrix event time, giving simultaneousFrame (R' = P' = matrix E). See the module notes on the fn. 9 non-future refinement.

            theorem Zeijlstra2012.zeijlstra_derives_shifted {Time : Type u_1} [LinearOrder Time] (matrixFrame : _root_.Time.ReichenbachFrame Time) (embeddedR embeddedE : Time) (embeddedT : TenseHead) (h_i : embeddedT.status = Minimalist.Interpretability.interpretable) (h_shifted : embeddedR < matrixFrame.eventTime) :
            embeddedT.IsSemanticallyActive (Tense.shiftedFrame matrixFrame embeddedR embeddedE).isPast

            The back-shifted reading: when embedded T bears an independent [iPAST] (no Agree), it contributes genuine past semantics, giving shiftedFrame (R' < P').

            Upward Agree fixes the directionality: the goal [iPAST] is active and the probe [uPAST] is vacuous.

            Mapping to the Minimalist Agree features #

            Map a TenseHead into the Minimalist GramFeature infrastructure: interpretable ↦ valued, uninterpretable ↦ unvalued. In the SOT domain the ±interpretable and ±valued axes coincide ([Cho95]); they are orthogonal in general (see Minimalist.Features).

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