Inconsistent Shared Model¶
Core Idea¶
An inconsistent shared model is the pattern in which two or more subsystems hold mutually incompatible models of the same external state. Each model is internally consistent and defensibly derived; the inference channels never cross, so the inconsistency is structurally invisible until a forcing event requires both models to ground one joint action — at which point the cost lands all at once.
How would you explain it like I'm…
Two Different Maps
Both Sure, Both Different
Hidden Until It Collides
Broad Use¶
- Distributed computing: split-brain failures (two leaders after a partition) and divergent replicas under eventual consistency.
- Sensor fusion: a vehicle's lidar and camera disagree about an object; aviation's disagreeing airspeed or attitude sensors.
- Multi-database systems: a warehouse and an operational store report different numbers until a regulator forces reconciliation.
- Organizations: sales-and-operations disconnect discovered only at a quarterly shortfall; pre-crisis intelligence-sharing failures.
- Cognitive science: bilateral hemispheric disconnect, each hemisphere internally consistent until a motor command needs both.
- Public health: epidemiology and clinical-care models with different transmission parameters, surfacing at policy formulation.
Clarity¶
Separates one subsystem is wrong (an epistemic gap) and different objectives (a value clash) from the symmetric case where both hold defensible models and only forced comparison reveals the divergence.
Manages Complexity¶
Collapses the \(N(N-1)/2\) pairwise disagreements into three system-level rates — each model's update frequency, the coupling rate, and the forcing-event distribution — so exposure can be reasoned about without inspecting any model's contents.
Abstract Reasoning¶
Lets a proposed architecture be ranked by inconsistency exposure before it is built, and recognizes that the danger is not the inconsistency itself but the forcing event that requires reconciliation under time pressure.
Knowledge Transfer¶
- Distributed databases: anti-entropy between replicas is the same move as scheduled deconfliction calls between intelligence agencies.
- Clinical informatics: a master allergy list plus admission reconciliation plus a divergence warning mirrors single-source-of-truth and observability moves from distributed systems.
- Reconciliation protocols: vector clocks, two-phase commit, and CRDTs map onto quarterly sales-and-operations meetings.
Example¶
A hospital network running three EHR systems holds three internally-consistent allergy lists on uncoupled channels; the inconsistency is invisible until a prescription — the forcing event — requires the joint model, and the contraindicated drug is ordered.
Relationships to Other Abstractions¶
Current abstraction Inconsistent Shared Model Prime
Parents (1) — more general patterns this builds on
-
Inconsistent Shared Model is part of Representation Prime
Inconsistent Shared Model contains two or more representations of one referent whose individually coherent contents cannot jointly be true.
Children (1) — more specific cases that build on this
-
S&OP Disconnect Domain-specific is a kind of Inconsistent Shared Model
S&OP Disconnect is the multi-function operations-planning instance of subsystems persisting with incompatible models of one shared external state.
Hierarchy path (1) — routes to 1 parentless root
- Inconsistent Shared Model → Representation → Abstraction
Not to Be Confused With¶
- Inconsistent Shared Model is not Information Asymmetry because asymmetry is the case where one party simply knows more (fixed by transferring information), whereas this is the symmetric case where neither subsystem is more informed and the remedy is a comparison channel.
- Inconsistent Shared Model is not Coordination because coordination is the achievement of aligned joint action (and consensus protocols are its machinery), whereas this is the prior pathology those mechanisms exist to address — the state where no comparison is happening at all.
- Inconsistent Shared Model is not Confounding because confounding is a spurious association from an unmeasured common cause inside a single inference, whereas this involves multiple defensible inferences over different data that disagree about a shared referent.