Documentation

Linglib.Syntax.Binding.Basic

Binding principles over a command relation #

[BP90] [Cho81] [PS94]

A framework-neutral binding engine. The binding principles (A/B/C) and the coreference-status computation are stated once, parameterized by a CommandRelation — the structural-prominence order they range over. The three syntactic frameworks formalized in linglib supply that relation and inherit the principles unchanged:

[BP90] give the general notion of which c-command, m-command, and the rest are instances; the linglib frameworks' command notions are further instances. Stating the principles over the abstract relation makes the cross-framework convergence a theorem rather than a coincidence: any two CommandRelations that agree on a clause predict the same binding facts.

Main declarations #

Implementation notes #

The binding-class classifier (Word → Option BindingClass) is a language parameter, orthogonal to the framework parameter CommandRelation; it is passed explicitly rather than baked in, so the engine imports no Fragment. A language (English, …) supplies the classifier; a framework supplies the command relation; a study combines them.

inductive Binding.Pos :

A binding position in a simple clause. The verb is not a binding position.

Instances For
    @[implicit_reducible]
    instance Binding.instDecidableEqPos :
    DecidableEq Pos
    Equations
    @[implicit_reducible]
    instance Binding.instReprPos :
    Repr Pos
    Equations
    def Binding.instReprPos.repr :
    PosStd.Format
    Equations
    Instances For

      A simple (mono-clausal, transitive-or-intransitive) clause: the representation binding principles range over. semanticPl records whether the subject denotes a plurality, which can diverge from morphosyntactic number ([Rak19]); it defaults to the syntactic number.

      • subject : Word
      • verb : Word
      • object : Option Word
      • semanticPl : Bool
      Instances For
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          The Word at a position, if present.

          Equations
          Instances For
            def Binding.isNominalCat (cat : UD.UPOS) :
            Bool

            Is this a nominal part-of-speech (proper noun, common noun, or pronoun)? A theory-neutral UPOS check the clause parser uses to recognize arguments.

            Equations
            Instances For

              The canonical, language-neutral binding-class source: a word's Principle A/B/C class read off its own UD morphology (Reflex, PronType) and category — no lexicon and no surface-form lookup. Reflexive morphology → anaphor; reciprocal PronType → reciprocal anaphor; any other pronoun → pronominal; a proper/common-noun category → R-expression; a non-nominal → none. This is the framework- and language-neutral default Features.BindingSource Word, replacing per-language form-string classifiers ([Cho81]'s A/B/C classes as morphology).

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

                Parse a surface word list into a simple clause: [subj, verb, obj] or [subj, verb], requiring nominal subject/object and a verb.

                Equations
                Instances For

                  A command relation ([BP90]): the structural-prominence order binding principles are defined over, together with the locality (same-binding-domain) restriction. The frameworks' c-command, ARG-ST outranking, and d-command are instances. This is the only component a syntactic framework must supply to obtain the binding principles.

                  Instances

                    Principle A (anaphors) #

                    Principle A. A reflexive object is licensed iff it is commanded by the subject within the local domain and agrees with it in φ-features (Word.Agree). Vacuously true when the object is not a reflexive.

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

                      Principle A for reciprocals: licensed iff commanded by the subject in the local domain and the subject denotes a plurality (an LF condition — semantic, not morphosyntactic, plurality; [Rak19]).

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

                        Principle B (pronouns) #

                        Principle B. A pronoun object must be free in its local domain: it must not be both commanded by the subject and in the same domain.

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

                          Principle C (R-expressions) #

                          Principle C. An R-expression object coindexed with a pronominal subject is blocked when the subject commands it.

                          Equations
                          • One or more equations did not get rendered due to their size.
                          Instances For
                            @[implicit_reducible]
                            instance Binding.instDecidableRExpressionFree [CommandRelation] (classify : WordOption Features.BindingClass) (c : SimpleClause) :
                            Decidable (rExpressionFree classify c)
                            Equations
                            • One or more equations did not get rendered due to their size.

                            Top-level acceptability #

                            Is a surface word list grammatical for coreference? Anaphors cannot be subjects (no commander); a pronoun object locally commanded by the subject violates Principle B; reflexive/reciprocal objects must be licensed.

                            Equations
                            • One or more equations did not get rendered due to their size.
                            Instances For
                              @[implicit_reducible]
                              instance Binding.instDecidableGrammaticalForCoreference [CommandRelation] (classify : WordOption Features.BindingClass) (ws : List Word) :
                              Decidable (grammaticalForCoreference classify ws)
                              Equations
                              • One or more equations did not get rendered due to their size.

                              Coreference status of positions i, j under the command relation: Principle A makes a commanded anaphor obligatorily coreferent; Principle B/C block a commanded pronoun/R-expression; otherwise coreference is possible.

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

                                Cross-framework convergence #

                                Stated over the abstract relation, the principles depend on the framework only through CommandRelation. Two frameworks that agree on a clause's command and locality facts therefore make identical binding predictions — by construction, not coincidence.

                                If two command relations agree on the relevant command and locality facts of a clause, they license a reflexive identically. The cross-framework convergence the prose comparisons assert, made a theorem.