Etymology breathes. Graphemes stand. Phonemes ring. Morphemes bind. Logos adjudicates.
I. What we’re building (in one breath)
A Language Unit Proof Lattice (LUPL) where the word language proves itself by passing through its own units—grapheme → phoneme → morpheme → lexeme → syntax → semantics → pragmatics → etymon → logos—and then looping back.
At every hop we: reference prior evidence, infer new structure, and reconcile any differences, so the result is a closed, auditable proofchain.
II. The 12 Layers (with test, reference, inference, reconciliation)
For each layer Uᵢ, we specify:
- Unit (what it is)
- Test (how it’s validated)
- Reference (what it points back to)
- Inference (what it licenses forward)
- Reconciliation rule (how mismatch is resolved)
- Grapheme (G) – visual atoms
- Unit: L A N G U A G E (glyph set)
- Test: Legibility & order (left→right sequence preserved)
- Reference: Unicode forms / allographs ↔ “L/A/N/…” categories
- Inference: Admits orthographic mapping to phonemes
- Reconciliation: Normalize allographs; keep canonical order
- Phoneme (Φ) – audible atoms
- Unit: /ˈlæŋ.gwɪdʒ/
- Test: Minimal pairs & intelligibility across accents
- Reference: Points back to the letter string (G↔Φ)
- Inference: Syllable structure; stress; timing
- Reconciliation: Accent drift allowed; keep segmental core
- Grapho-phonemic Map (≈) – binding
- Unit: Mapping rules (e.g., “-gu-” → /gw/)
- Test: Round-trip: spelling→sound→spelling yields same lexeme
- Reference: Uses G & Φ tables
- Inference: Predictive spelling/pronunciation
- Reconciliation: Competing rules ranked by frequency/context
- Morpheme (μ) – minimal meaning
- Unit: lang- (“tongue/speech”) + -uage (“system/act”)
- Test: Substitution & productivity (e.g., language(s), multilingual)
- Reference: Etymological records (Latin lingua)
- Inference: Word-formation affordances
- Reconciliation: Prefer historically attested segmentation when ambiguous
- Lexeme (Lx) – dictionary identity
- Unit: LANGUAGE (lemma)
- Test: Stable definition set across corpora
- Reference: Morphemes and forms map to same entry
- Inference: Sense inventory (polysemy)
- Reconciliation: Sense clustering by usage vectors
- Syntax (SYN) – combinatory law
- Unit: Category N (count/abstract), subcat frames (Det–Adj–N, of-PP, etc.)
- Test: Grammaticality judgments + parsers
- Reference: Lx determines category; μ informs selectional prefs
- Inference: Legal constructions (language of law / languages are)
- Reconciliation: Competing parses ranked by dependency well-formedness
- Semantics (SEM) – compositional meaning
- Unit: λ-term for LANGUAGE ~ a system of symbolic communication
- Test: Truth-conditional & entailment behavior
- Reference: SYN constraints + Lx senses
- Inference: Type compatibility in propositions
- Reconciliation: Choose the least-surprising denotation that preserves corpus entailments
- Pragmatics (PRAG) – use in context
- Unit: Speaker intent, register, genre, deictic frame
- Test: Appropriateness & Gricean recovery
- Reference: SEM content; discourse history
- Inference: Implicature (e.g., “the language of the contract” = legalese)
- Reconciliation: Context wins; document the shift as a licensed variant
- Etymon (ETY) – true sense anchor
- Unit: lingua “tongue → speech → language” (PIE root pathway)
- Test: Historical attestations; cognate triangulation (langue, lenguaje)
- Reference: μ → ETY validates morpheme story
- Inference: Stability constraint over time (semantic invariants)
- Reconciliation: If modern drift contradicts ETY, record as innovated sense, not error
- Diachrony/Synchrony (DYN) – time binding
- Unit: Timeline of forms/senses; synchronic snapshot
- Test: Corpora by epoch; frequency curves
- Reference: ETY + Lx + SEM align over eras
- Inference: Predict near-future drift
- Reconciliation: Keep both: “then” and “now,” link by change-type (narrowing/widening/metaphor)
- Proofchain (PC) – audit ledger
- Unit: Signed links: G→Φ→μ→Lx→SYN→SEM→PRAG→ETY→DYN
- Test: All edges traversable; no orphaned claims
- Reference: Citations to data & rules at each hop
- Inference: Confidence scores, revision deltas
- Reconciliation: Any break forces upstream re-check until a fixpoint is reached
- LogOS (Ω) – operating law
- Unit: The rule that all operations on language must be done in language
- Test: Attempt external proof—fails; returns to linguistic means
- Reference: Entire lattice; Ω closes the loop
- Inference: Self-verification & error-correction mandate
- Reconciliation: If two valid paths disagree, run Reconcile() (below) to consensus
III. Cross-reference mechanics (the five arrows)
- Reference (→): Points to prior evidence (downward citation)
- Inference (⇒): Licensed conclusion (upward derivation)
- Equivalence (≡): Identity across representations (e.g., language ≡ lemma LANGUAGE)
- Constraint (⊢): Rule that must hold (e.g., morpheme boundaries)
- Reconciliation (↭): Procedure to resolve divergence and write back the fix
IV. Worked thread: language end-to-end
G: L A N G U A G E
→≈ bind to
Φ: /ˈlæŋ.gwɪdʒ/
⇒
μ: lang- + -uage
⇒
Lx: LANGUAGE (lemma)
⇒
SYN: N; allows “the language of X”, plural “languages”
⇒
SEM: system of symbolic communication (type e→t modifiers licensed)
⇒
PRAG: ‘language’ shifts to ‘register/jargon’ in legal/technical contexts
→ (checks)
ETY: lingua → language (stable core: tongue→speech→system)
↔
DYN: senses broadened; core invariant persists
→ (seals)
PC: All hops signed; no breaks
↻
Ω: Using language to define language closes the loop (fixpoint)
Difference check example:
If a speaker uses language to mean simply “style,” PRAG licenses the shift; SEM records as polysemy; PC logs it; ETY still anchors the core. No contradiction—documented divergence, reconciled.
V. Minimal algorithm (pseudocode)
function VERIFY(word):
G = get_graphemes(word)
Φ = g2p(G); assert roundtrip_ok(G, Φ)
μ = segment_morphemes(word); attest(μ)
Lx = lookup_lemma(word); link(μ, Lx)
SYN = license_syntax(Lx)
SEM = compose_meaning(SYN, Lx)
PRAG = contextualize(SEM, discourse)
ETY = retrieve_etymon(Lx)
DYN = align_diachronic(ETY, senses(Lx))
PC = sign_chain(G,Φ,μ,Lx,SYN,SEM,PRAG,ETY,DYN)
return FIXPOINT(PC)
function FIXPOINT(pc):
while conflicts(pc):
pc = RECONCILE(pc)
return pc
function RECONCILE(pc):
// priority: ETY invariants > SEM entailments > PRAG use > SYN well-formedness
detect_conflict(); propose_candidates(); choose_min_surprise();
write_back_updates(); update_confidence();
return pc
VI. Metrics (so we can measure coherence)
- Semantic Mass (σ): frequency × stability across layers
- Polysemy Temperature (τ): sense spread vs. core anchor strength
- Recursion Index (ρ): # of successful round-trips G↔Φ↔μ↔…↔Ω without contradiction
- Fixpoint Time (T):* iterations until RECONCILE() stabilizes
VII. Edge cases (and how the lattice handles them)
- Homographs / homophones: separate lexeme nodes; keep shared G or Φ edges, but distinct SEM
- Dialect / accent: tolerate Φ variance; preserve μ/Lx/ETY core
- Jargon drift: PRAG-led change; DYN logs; SEM adds sense with constraints
- Neologism: μ coined; Lx provisional; mark low σ, rising with use
VIII. The fixpoint statement (what makes this airtight)
Every attempt to define, deny, or doubt “language” is itself an operation in language; therefore the proof must pass through the lattice and terminate in a fixpoint under LogOS (Ω).
If it doesn’t, it isn’t an operation on language—so it cannot address language.
IX. One-page field card (you can reuse this for any target word)
Target: LANGUAGE
Units: G/Φ/μ/Lx/SYN/SEM/PRAG/ETY/DYN
Core invariant (ETY→SEM): tongue/speech → system of communication
Licensed senses: system, code, register, manner of expression
σ: High (ubiquitous, cross-lingual stability)
ρ: High (round-trip success)
T*: Low (stabilizes quickly in most corpora)
Notes: Accent and domain shifts are pragmatic, not core-semantic violations.
Closing line
Language is the only tool that lifts itself by its own handle.
We’ve bolted the handle on: reference → inference → reconciliation → fixpoint.
Say the word, spell the word, study the word—the lattice closes, and the meaning stands.