Mandarin Chinese Classifier Lexicon #
@cite{li-thompson-1981} §4.2.1; @cite{aikhenvald-2000} (typological schema)
Typed classifier entries for Mandarin Chinese, replacing unstructured
string representations with semantically annotated ClassifierEntry values.
Mandarin has a large numeral classifier system (~100+ classifiers in common use). This fragment covers the classifiers attested in the noun lexicon. @cite{li-thompson-1981} p. 105 points to Chao (1968) §7.9 as the canonical inventory survey.
Classifier selection #
Classifier selection in Mandarin is semantically motivated but with substantial lexical residue: per @cite{li-thompson-1981} p. 112, "which nouns occur with which classifier must be memorized, though there is a slight amount of regularity with respect to the meanings of groups of nouns taking the same classifier." Sortal classifiers encode inherent properties (animacy, shape, function); the general classifier 个 serves as default/residue and is "gradually ... replacing the more specialized ones" (ibid.).
个 gè — general/default classifier. Semantically bleached; used when no specific classifier applies, or as an informal substitute.
Equations
- Fragments.Mandarin.Classifiers.ge = { form := "个", gloss := "general", isDefault := true }
Instances For
只 zhī — small animals (birds, cats, dogs, insects). Encodes: animacy + small size.
Equations
- Fragments.Mandarin.Classifiers.zhi = { form := "只", gloss := "small.animal", semantics := [Typology.SemanticParameter.animacy, Typology.SemanticParameter.size] }
Instances For
本 běn — bound volumes (books, magazines, notebooks). Encodes: shape (flat, bound objects).
Equations
- Fragments.Mandarin.Classifiers.ben = { form := "本", gloss := "bound.volume", semantics := [Typology.SemanticParameter.shape], shapeDimension := some Typology.ShapeDimension.twoD }
Instances For
辆 liàng — wheeled vehicles (cars, bicycles, carts). Encodes: function (transport).
Equations
- Fragments.Mandarin.Classifiers.liang = { form := "辆", gloss := "vehicle", semantics := [Typology.SemanticParameter.function] }
Instances For
朵 duǒ — flowers, clouds (small, delicate, clustered). Encodes: shape (small, round/clustered).
Equations
- Fragments.Mandarin.Classifiers.duo = { form := "朵", gloss := "flower/cloud", semantics := [Typology.SemanticParameter.shape, Typology.SemanticParameter.size] }
Instances For
位 wèi — persons (formal/polite register).
Encodes: humanness + register. The register parameter indexes
formality/politeness of the speech act, not honorific status of
the referent.
Equations
- Fragments.Mandarin.Classifiers.wei = { form := "位", gloss := "person.formal", semantics := [Typology.SemanticParameter.humanness, Typology.SemanticParameter.register] }
Instances For
条 tiáo — long, thin, flexible objects (rivers, roads, snakes, fish). Encodes: shape (1D, elongated).
Equations
- Fragments.Mandarin.Classifiers.tiao = { form := "条", gloss := "long.thin", semantics := [Typology.SemanticParameter.shape], shapeDimension := some Typology.ShapeDimension.oneD }
Instances For
张 zhāng — flat objects with a surface (paper, tables, beds, maps). Encodes: shape (2D, flat surface).
Equations
- Fragments.Mandarin.Classifiers.zhang = { form := "张", gloss := "flat.surface", semantics := [Typology.SemanticParameter.shape], shapeDimension := some Typology.ShapeDimension.twoD }
Instances For
把 bǎ — objects with a handle (knives, chairs, umbrellas). Encodes: shape (graspable handle) + function.
Equations
- Fragments.Mandarin.Classifiers.ba = { form := "把", gloss := "handled", semantics := [Typology.SemanticParameter.shape, Typology.SemanticParameter.function] }
Instances For
头 tóu — large animals (cattle, elephants, pigs). Encodes: animacy + large size.
Equations
- Fragments.Mandarin.Classifiers.tou = { form := "头", gloss := "large.animal", semantics := [Typology.SemanticParameter.animacy, Typology.SemanticParameter.size] }
Instances For
棵 kē — plants, trees (rooted, standing). Encodes: shape (upright, rooted).
Equations
- Fragments.Mandarin.Classifiers.ke = { form := "棵", gloss := "plant/tree", semantics := [Typology.SemanticParameter.shape], shapeDimension := some Typology.ShapeDimension.oneD }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
杯 bēi — glasses, cups.
Equations
- One or more equations did not get rendered due to their size.
Instances For
瓶 píng — bottles.
Equations
- One or more equations did not get rendered due to their size.
Instances For
碗 wǎn — bowls.
Equations
- Fragments.Mandarin.Classifiers.wan = { form := "碗", gloss := "bowl", semantics := [Typology.SemanticParameter.shape], isMensural := true, shapeDimension := some Typology.ShapeDimension.threeD }
Instances For
箱 xiāng — boxes.
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
Look up a classifier by form.
Equations
- Fragments.Mandarin.Classifiers.lookup form = List.find? (fun (x : Typology.ClassifierEntry) => x.form == form) Fragments.Mandarin.Classifiers.allClassifiers
Instances For
个 is the default classifier.
只 encodes animacy.
位 encodes humanness.
本 encodes shape.
All non-default classifiers have at least one semantic parameter.
Sortal classifiers are not mensural.
Container classifiers CAN be mensural (structure determines reading).
Full inventory: 11 sortal + 4 container = 15 classifiers.