Proportional analogy #
Word-and-paradigm morphology relates the forms of one lexeme to those of another by
proportional analogy, cat : cats :: dog : dogs ([blevins-2016]): the operation taking the
form at one cell to the form at another is the same for every lexeme. Which operations count is a
parameter, affixation on strings or translation on vectors, so a lexeme-indexed family of
paradigms p : L → Cell → F is analogical under a class of operations when every pair of
cells is related by one operation of the class shared across lexemes (IsAnalogical). Analogy
under any class makes each cell's form identify the lexeme's whole paradigm, Ackerman and
Malouf's vocabular clarity (ParadigmSystem.isVocabularClear_of_isAnalogical in
Complexity.lean). For forms in an additive group and translations as the operations, the cell
contrast is a difference and the family is analogically regular (IsAnalogicallyRegular):
every contrast is lexeme-independent, equivalently the family is a lexeme part plus a cell part
(isAnalogicallyRegular_iff_exists_add), and the property is preserved by additive maps of the
form space (IsAnalogicallyRegular.map). This is the case a discriminative lexicon realises
exactly (Studies/HeitmeierChuangBaayen2026).
Main declarations #
Morphology.IsAnalogical ops p— every pair of cells is related by one operation ofops, the same for every lexeme.Morphology.IsAnalogicallyRegular p— analogy under the translations of an additive group;isAnalogicallyRegular_iffis its difference form.Morphology.isAnalogicallyRegular_iff_exists_add— regular iff a lexeme part plus a cell part.
References #
- [J. P. Blevins, Word and Paradigm Morphology (2016)][blevins-2016]
A lexeme-indexed family of paradigms is analogical under a class of operations on forms when every pair of cells is related by one operation of the class, the same for every lexeme.
Equations
- Morphology.IsAnalogical ops p = ∀ (c c' : Cell), ∃ (g : F → F), g ∈ ops ∧ ∀ (l : L), p l c' = g (p l c)
Instances For
Analogy under translations: the form contrast between any two cells is the same for every lexeme.
Equations
- Morphology.IsAnalogicallyRegular p = Morphology.IsAnalogical (Set.range fun (v x : F) => x + v) p
Instances For
The difference form of analogical regularity.
A lexeme part plus a cell part is analogically regular.
Analogical regularity is preserved by additive maps of the form space.
Analogical regularity is additivity: a regular family is a lexeme part plus a cell part.