Circumfixal Exponence #
Circumfixal exponence wraps a stem with morphological material on both sides (prefix + suffix). This is a theory-neutral description of the surface pattern — how a circumfix arises (head movement in DM, readjustment rules in other frameworks) is left to theory-specific modules.
Cross-linguistically attested circumfixes include:
- German past participle ge-...-t (ge-mach-t)
- Tigrinya negative ʔay-...-n (ʔay-stem-n)
- Malay ke-...-an (ke-baik-an "goodness")
Connections #
- Core/MorphRule.lean:
AttachmentSide.circumfix— morphological classification - DM/Fission.lean: Distributed Morphology operations (theory-specific derivation)
Circumfixal exponence: a stem is wrapped by a prefix and suffix.
This is a surface-level description of the morphological pattern, neutral between theories of how the circumfix arises (head movement, readjustment, templatic morphology, etc.).
For example, German past participle ge-mach-t:
- prefix_ : String
Morphological material before the stem
- suffix_ : String
Morphological material after the stem
- stem : String
The verbal stem that gets wrapped
- gloss : String
Description of the source of the circumfix
Instances For
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
Equations
- One or more equations did not get rendered due to their size.
- Morphology.Circumfix.instBEqCircumfixExponence.beq x✝¹ x✝ = false
Instances For
A circumfix is discontinuous: its exponents are separated by the stem.
Equations
- _c.isDiscontinuous = true
Instances For
The attachment side of a circumfix is AttachmentSide.circumfix.
Equations
Instances For
Every circumfix has the correct attachment side.
Every circumfix is discontinuous.
The surface form of a circumfix is prefix + stem + suffix.
German past participle ge-...-t.
Equations
- Morphology.Circumfix.germanPastParticiple stem = { prefix_ := "ge-", suffix_ := "-t", stem := stem, gloss := "PTCP" }
Instances For
German past participle surfaces correctly.