Documentation

Linglib.Studies.Qin2025

Qin (2025): Canonical and Non-Canonical Roots: The Diversity of Roots in Mandarin Chinese #

This file formalizes [qin-2025]'s canonical typology of roots. The base definition, a morphologically unanalyzable form that serves as a morphological core of word formation, is the substrate's Morphology.Morph.IsCoreIn, and the paper's -fer shows that the judgment is formal rather than semantic: -fer is a core of the primary word refer though it has no meaning of its own (fer_core). Four criteria (Table 1), boundness, positional flexibility, phonological richness, and meaning lexicality, span a space of sixteen cells anchored by the canonical root that meets all four, and Fig. 1's one way of being canonical against fifteen of being non-canonical is the binomial count of the tiers (tier_card). The case study classifies 122 Mandarin morphemes (Appendix A): the forms carry the appendix's codes on the four criteria, its five groups are the number of criteria a form fails (forms_group), and the property of the distribution the paper singles out holds of every form, that a phonologically deficient morpheme, toneless in a tone language, is maximally non-canonical (deficient_maximal). The tiers run from the canonical 厂 chǎng of Table 3 through 不 , 霸 , and 性 xìng to the toneless 边 -bian and 个 -ge (mandarin_tiers).

Implementation notes #

The appendix is a CLDF FormTable whose custom columns are the paper's codes: F or B for boundness, FLEX, SL, or SR for position, 1 or TL for phonology, and L or NL for meaning. A row reads the codes as a Boolean judgment on each criterion, the canonical value being true; the two fixed positions SL and SR both count as fixed. The counts of Tables 2 and 4 are the distribution of the forms and are not restated.

TODO #

The paper says that six of the unattested cells of the space require phonological deficiency; the appendix leaves seven such cells unattested, since only the maximally non-canonical cell contains a toneless morpheme, and the cell of free, fixed, toned, lexical morphemes is unattested as well.

References #

The base definition and -fer (§3.1) #

The bound prefix of refer.

Equations
Instances For

    -fer, a bound root with no identifiable meaning.

    Equations
    Instances For

      The bound prefix of confer.

      Equations
      Instances For

        The mini-fragment refer and confer, both free forms and both primary, since neither re-, con-, nor -fer is free.

        Equations
        Instances For

          -fer is a morphological core: it occurs in the primary word refer.

          The four criteria and the theoretical space (§3.2, §3.3) #

          structure Qin2025.Row :

          A morpheme's judgment on the four criteria of Table 1: free, positionally flexible, phonologically rich, and lexical in meaning.

          • c1 : Bool

            C1: free rather than bound.

          • c2 : Bool

            C2: positionally flexible rather than fixed.

          • c3 : Bool

            C3: phonologically rich rather than deficient.

          • c4 : Bool

            C4: lexical rather than less lexical in meaning.

          Instances For
            def Qin2025.instDecidableEqRow.decEq (x✝ x✝¹ : Row) :
            Decidable (x✝ = x✝¹)
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For
              def Qin2025.instReprRow.repr :
              RowStd.Format
              Equations
              • One or more equations did not get rendered due to their size.
              Instances For
                @[instance_reducible]
                instance Qin2025.instReprRow :
                Repr Row
                Equations
                @[instance_reducible]
                instance Qin2025.instFintypeRow :
                Fintype Row
                Equations

                The number of criteria a row fails, its distance from the canonical root.

                Equations
                • r.violations = (((if r.c1 = true then 0 else 1) + if r.c2 = true then 0 else 1) + if r.c3 = true then 0 else 1) + if r.c4 = true then 0 else 1
                Instances For

                  A canonical root satisfies all four criteria.

                  Equations
                  Instances For
                    theorem Qin2025.space_card :
                    Fintype.card Row = 16

                    The theoretical space of roots has sixteen cells (Fig. 1).

                    theorem Qin2025.tier_card (k : Fin 5) :
                    {r : Row | r.violations = k}.card = Nat.choose 4 k

                    Fig. 1's tiers: 4.choose k ways to fail exactly k criteria, so fifteen ways of being non-canonical against one of being canonical.

                    The Mandarin case study (§4, Appendix A) #

                    A form's judgments, read from the appendix's codes.

                    Equations
                    • One or more equations did not get rendered due to their size.
                    Instances For
                      def Qin2025.violations? (f : Data.Forms.Form) :
                      Option

                      The number of criteria a form fails.

                      Equations
                      Instances For
                        def Qin2025.group? :
                        StringOption

                        The appendix's group of a form: canonical roots, then non-canonical roots by the number of criteria violated.

                        Equations
                        Instances For
                          theorem Qin2025.forms_group (f : Data.Forms.Form) :
                          f Forms.all(f.column? "Group").bind group? = violations? f (violations? f).isSome = true

                          Every form is classified on all four criteria, and its group is the number it fails.

                          theorem Qin2025.deficient_maximal (f : Data.Forms.Form) :
                          f Forms.allrowinterpret f, row.c3 = falserow.violations = 4

                          A phonologically deficient morpheme is maximally non-canonical: only the bottom cell of the space holds a toneless morpheme.

                          The five tiers: canonical 厂 chǎng (Table 3), 不 deviating on meaning alone, bound and fixed 霸 , schematic 性 xìng, and the toneless 边 -bian and 个 -ge meeting no criterion.