Linearization-Meaning Mismatch¶
Core Idea¶
Multi-dimensional content — a 2D layout, a dependency DAG, a parallel option set — forced through a serial channel is collapsed to a 1D ordering whose principle does not match the one the consumer reasons by. The result is technically complete but functionally useless: the right pieces in the wrong order.
How would you explain it like I'm…
Right Pieces, Wrong Order
Flattened the Wrong Way
Wrong-Principle Ordering
Broad Use¶
- Screen-reader accessibility: a laid-out page read aloud in DOM order may not match the visual reading order, rendering it inaccessible.
- Aviation and surgical checklists: a numbered list enforces top-down sequence; when the task has parallel prerequisites, it becomes a hazard.
- Curriculum design: chapters linearised by editorial convenience while the learner reasons by prerequisite-dependency (a DAG).
- Presentations: a deck ordered "by team" presented to an audience reasoning "by decision."
- Build systems: a Makefile's authoring order versus the required topological order of the dependency DAG.
- API documentation: alphabetical reference order versus task-flow order.
Clarity¶
Separates failures usually blamed on "bad design" or "user error" into a structurally diagnosed family — the linearization principle was wrong for the consumer's reasoning principle — and makes visible that every serial presentation, including unexamined defaults, is a linearization commitment.
Manages Complexity¶
Compresses a sprawl of substrate-specific failures into one diagnostic family with five shared moves: re-author the order, expose multiple linearizations, recover the dropped dimension via metadata, raise the channel's dimensionality, or provide random-access tools.
Abstract Reasoning¶
Trains a reasoner to interrogate any serial delivery with fixed questions — what ordering principle was chosen, what principle does the consumer reason by, and what dimensions were lost — so the match-or-mismatch becomes a determinate quantity rather than a matter of taste.
Knowledge Transfer¶
- Build systems to curricula: the topological-sort discipline (a DAG needs a topological ordering) transfers cleanly to prerequisite-based instructional sequencing.
- Accessibility to authoring: "DOM order is one linearization, visual order another, requiring reconciliation" transfers to all document authoring.
- Presentations to legal briefs: by-decision structure transfers to liability-element order over chronology.
Example¶
A documentation site organised by service, each section alphabetised by API call, defeats a new engineer attempting "issue a refund" — the content is fully present but scattered across twelve services; the consumer reasons by task flow, so the fix is a parallel task-oriented navigation that re-linearises the same content.
Relationships to Other Abstractions¶
Current abstraction Linearization-Meaning Mismatch Prime
Parents (2) — more general patterns this builds on
-
Linearization-Meaning Mismatch is a kind of Representational Structure Mismatch Prime
Linearization-Meaning Mismatch is the species of representational structure mismatch in which a multi-relational source is projected into one serial order whose principle differs from the consumer's reasoning order.
-
Linearization-Meaning Mismatch is a kind of Sequencing Prime
This prime is the specific MISMATCH failure-mode of order in serial delivery — order-as-failure where sequencing is order-as-existence.
Children (1) — more specific cases that build on this
-
Focus-Order Failure Domain-specific is a decomposition of Linearization-Meaning Mismatch
Focus-Order Failure is the interface-accessibility application of Linearization-Meaning Mismatch in which DOM or tabindex order conflicts with semantic task order.
Hierarchy paths (4) — routes to 4 parentless roots
- Linearization-Meaning Mismatch → Representational Structure Mismatch → Representation → Abstraction
- Linearization-Meaning Mismatch → Sequencing → Dependency
- Linearization-Meaning Mismatch → Sequencing → Optimization
- Linearization-Meaning Mismatch → Sequencing → Time
Not to Be Confused With¶
- Linearization-Meaning Mismatch is not Linearity because this prime concerns projecting multi-dimensional content onto the line of a serial stream, whereas linearity is the algebraic property of additive, proportional composition.
- Linearization-Meaning Mismatch is not Sequencing because this prime is order-as-failure (the principle mismatches the consumer), whereas sequencing is order-as-existence (that an order exists at all).
- Linearization-Meaning Mismatch is not Framing because this prime concerns sequencing content already selected, whereas framing is the choice of what content to present and how to slant it.