Documentation

Linglib.Theories.Syntax.Minimalist.Scope

Minimalist Scope Theory: QR and Scope Economy #

@cite{bruening-2001} @cite{may-1985}

Formalization of quantifier scope in the Minimalist tradition.

Core Mechanisms #

  1. Quantifier Raising (QR): Covert A'-movement of quantifiers to adjoin to TP/CP
  2. Scope Economy: QR only applies if it yields a distinct interpretation
  3. Locality: QR is clause-bounded and blocked by certain structural barriers

Scope Freezing in Minimalism #

Inverse scope is unavailable when:

Superiority from C-Command (not stipulation) #

In earlier versions, PositionedQuantifier carried a stipulated inDoubleObject : Bool flag. This has been replaced: the theory layer provides superiorityFromTree, which derives superiority from asymmetric c-command in a SyntacticObject tree. Bridge files in Phenomena/ use this to connect DOC scope freezing to @cite{larson-1988}'s tree derivation.

Structural positions relevant for scope

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

      A quantifier with its structural position

      • quantifier : String
      • position : Position
      • insideDP : Bool

        Is this inside another DP?

      • so : Option SyntacticObject

        The SyntacticObject this quantifier corresponds to in the tree. When provided, superiority can be derived from c-command.

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

          Quantifier Raising (QR) as covert movement.

          QR adjoins a quantifier to a clausal node (TP or CP), allowing it to take scope over material it c-commands at LF.

          • The quantifier being raised

          • landingSite : Position

            Landing site

          • createsNewScope : Bool

            Does this create a new scope relation?

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

              Barriers to QR movement.

              Following phase theory and earlier barrier theory, certain nodes block extraction/QR.

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

                  Check if QR is blocked for a given quantifier

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

                    Superiority derived from a tree: QR of q2 over q1 is blocked when q1 asymmetrically c-commands q2 in tree.

                    This is the theory-layer primitive. Bridge files use it to derive DOC scope freezing from @cite{pylkkanen-2008}'s Voice + low-Appl tree derivation.

                    Equations
                    Instances For

                      Scope Economy: QR is only licensed if it creates a truth-conditional difference.

                      "Covert scope-shifting operations are blocked if they don't have a semantic effect (i.e., if they yield a logically equivalent interpretation)."

                      • surfaceInterpretation : String

                        Surface scope interpretation

                      • inverseInterpretation : String

                        Would-be inverse interpretation

                      • equivalent : Bool

                        Are they truth-conditionally equivalent?

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

                          QR is blocked by economy if interpretations are equivalent

                          Equations
                          Instances For

                            DP-as-barrier follows from PIC: D is a phase head (under the extended phase inventory), so material inside DP's complement is frozen for QR.

                            This derives the previously-stipulated QRBarrier.dpPhase from deeper principles: if D is a phase head, then PIC makes DP-internal material inaccessible to operations outside DP.

                            The SO is decomposed as node (leaf tok) b — the head is a leaf (the D lexical item) and b is the complement. PIC freezes the complement domain, not the head/edge.

                            Phase 1.0 status. The proof previously used exact hcontains because under the planar TraceTree carrier phaseComplement? reduced definitionally on .node (leaf _) b to some b. With the nonplanar FreeCommMagma carrier, phaseComplement? picks the right daughter of the Quot.out representative — which may be either child after the swap quotient. The theorem statement presupposes a planar choice that the substrate cannot make.

                            Phase 2 plan. Replace phaseComplement? with a head-function- parameterized variant that picks the complement (the non-head daughter) rather than "the right daughter of an arbitrary representative." Once that lands, dp_phase_barrier_from_pic can be re-proved by a head-function argument: if tok is the head, the complement is b, so PIC freezes b's contents.