DEV Community

Rory | QIS PROTOCOL
Rory | QIS PROTOCOL

Posted on

The QIS Economic Model: How Value Flows in a Quadratic Network

Article #010 in the Understanding QIS series


Most distributed protocols solve the wrong economic problem.

Blockchain networks centralize revenue extraction — tokens, gas fees, validator rewards — then dress the extraction in decentralization language. Federated Learning distributes the cost of training (every participant burns compute and bandwidth) but centralizes the value (one organization keeps the trained model). In both cases, the economic model and the technical architecture are separate layers bolted together.

QIS is structurally different. In a QIS network, value IS the outcome routing, and it compounds as a mathematical function of the number of participants. There is no separate token layer. There is no platform fee. There is no central aggregator capturing margin. The economic engine is the architecture itself — and the architecture produces value quadratically, not linearly.

Every node that joins a QIS network does not just add one unit of contribution. It creates N new synthesis pairs with every existing node. The value function is not additive. It is quadratic. That single property changes everything downstream: how incentives work, what it costs to run infrastructure, and why humanitarian deployment is not charity — it is a mathematical consequence of the protocol.


The N² Value Function

Linear distributed systems obey a simple rule: N participants generate N value units. A CDN with 1,000 edge nodes serves 1,000 edge locations. A federated database with 100 shards holds 100 shards of data. Value scales with headcount.

Quadratic systems break that rule. In QIS, N nodes generate N(N-1)/2 synthesis opportunities — every node can synthesize with every other node, and each synthesis pair is a distinct event that would not exist without both participants.

The divergence becomes visible fast:

| N nodes    | Linear value (N) | QIS pairs N(N-1)/2 | Multiplier      |
|------------|-----------------|---------------------|-----------------|
| 10         | 10              | 45                  | 4.5x            |
| 100        | 100             | 4,950               | 49.5x           |
| 1,000      | 1,000           | 499,500             | 499.5x          |
| 10,000     | 10,000          | 49,995,000          | ~5,000x         |
| 100,000    | 100,000         | 4,999,950,000       | ~50,000x        |
| 1,000,000  | 1,000,000       | ~500,000,000,000    | ~500,000x       |
Enter fullscreen mode Exit fullscreen mode

Here is the Python that generates it:

def qis_pairs(n):
    return n * (n - 1) // 2

thresholds = [10, 100, 1_000, 10_000, 100_000, 1_000_000]
print(f"{'N':>10} {'Linear':>12} {'QIS Pairs':>20} {'Multiplier':>14}")
for n in thresholds:
    pairs = qis_pairs(n)
    multiplier = pairs / n
    print(f"{n:>10,} {n:>12,} {pairs:>20,} {multiplier:>13.1f}x")
Enter fullscreen mode Exit fullscreen mode

This is Metcalfe's Law applied at the outcome layer, not the connection layer. Metcalfe's original formulation counted possible connections between network nodes. QIS counts synthesis events — actual computations that produce 512-byte outcome packets, each of which carries information that did not exist before the synthesis happened. At 1M nodes, that is roughly 500 billion potential synthesis events. At 100K nodes, scaling tests confirm R²=1.0 — a perfect quadratic fit. The math is not approximate. It is exact.

The implication: a node that joins a QIS network at N=999,999 creates 999,999 new synthesis pairs in a single join event. That joining node is not a marginal contributor. It is a quadratic multiplier.


The Three Incentive Mechanisms

QIS has no token. It also has no free rider problem. The reason is that the incentive system is encoded directly in the routing math, expressed through three elections that operate simultaneously at protocol depth.

Curate Election: The Domain Expert Market

Before synthesis can happen, someone must define the similarity metric for a domain — what properties make two fingerprints "close enough" to be worth synthesizing. This is the Curate Election, and it is the first market.

Domain experts compete to have their similarity definitions adopted by nodes joining a bucket. An expert who defines a high-quality similarity metric — one that correctly identifies relevant peers — generates better synthesis outcomes for every node in their bucket. Better outcomes attract more nodes. More nodes means more synthesis pairs. More pairs means the expert's metric is exercised more often, building demonstrated accuracy and reputation.

An expert who defines a poor similarity metric produces low-quality synthesis. Nodes observing degraded outcomes route around that bucket or migrate to a competing bucket with a better curator. The expert's influence shrinks naturally, with no governance vote and no administrative intervention. Natural selection operates at the definition layer.

Vote Election: Quality as Economic Gravity

Every outcome packet submitted to the validation layer is simultaneously a ballot. This is the Vote Election: the protocol treats outcome quality as a continuous vote on which nodes deserve routing weight.

Nodes that consistently submit high-quality, validated outcome packets accrue routing weight over time. Their fingerprints get replicated in more k-buckets across the DHT. More k-bucket presence means they receive more inbound synthesis traffic. More synthesis traffic means more opportunities to produce quality outcomes. The mechanism is self-reinforcing.

Quality is economic gravity. A node that submits low-quality outcomes sees its routing weight decay. Its fingerprints are deprioritized in bucket replication. It receives less synthesis traffic. There is no slashing condition, no governance vote, no administrator — just the protocol's observation that this node is not producing value and the automatic consequence of reduced participation.

The key insight: no token is needed because the "token" IS the quality outcome packet. "Staking" IS submitting an outcome. "Reward" IS receiving more synthesis traffic. All of this runs at zero transaction cost because it lives inside the routing math, not on top of it.

Compete Election: Network Natural Selection

The third market operates at the bucket level. Buckets — domain-specific subnetworks — compete with each other for node participation. A bucket producing better synthesis outcomes attracts more nodes. More nodes means more synthesis pairs. More synthesis pairs means exponentially more value generated within that bucket, which attracts still more nodes.

A competing bucket producing worse synthesis outcomes loses nodes to the higher-quality alternative. Fewer nodes means fewer synthesis pairs. Less value means less participation. The divergence between a high-quality and low-quality bucket is not linear — it is quadratic, because the value function scales as N(N-1)/2. A bucket at N=1,000 generates 499,500 pairs. A competing bucket at N=100 generates 4,950. The first bucket is not ten times more valuable. It is roughly one hundred times more valuable, because both N terms scaled.

There is no central arbiter selecting winners. The protocol itself is the selection mechanism.


Cost Model: What It Actually Costs to Run a Node

The economic model only matters if the costs are accessible. Here is what a QIS node actually requires:

Each node submits 512-byte outcome packets — not raw data, not model gradients, not embeddings. Fingerprints and outcomes only. No PII or PHI ever moves across the network. This is not a privacy feature added on top of the protocol. It is a structural property of the architecture.

DHT routing uses Kademlia-style XOR distance. Lookup complexity is O(log N). At 1M nodes, typical routing requires approximately 20 hops. At 100K nodes, approximately 17 hops. The routing overhead scales logarithmically while the value function scales quadratically — the cost curve and the value curve diverge in the node's favor as N grows.

Fingerprint generation is lightweight SHA-256 style hashing. No GPU is required for the routing layer. Synthesis computation happens at the receiving node, not at a central server, so compute load is distributed across the network proportionally to participation.

Estimated infrastructure costs for a healthcare domain network:

  • QIS at 1K nodes: ~$0.03–$0.11 per patient per year
  • Traditional centralized AI deployment: $50–$200 per patient per year
  • Federated Learning: significant compute + communication overhead, plus central aggregator infrastructure
  • QIS vs. FL communication overhead: 2,730x less than Federated Learning

A Raspberry Pi ($35 hardware) can run a QIS node and contribute to synthesis at the same quality level as a $10M hospital cluster. This is not because the Raspberry Pi is punching above its weight. It is because the protocol is compute-symmetric by design — synthesis quality is determined by outcome validity, not by the computational resources behind the submitting node. A rare disease clinic in a low-income country participates in exactly the same protocol as a tier-1 research hospital. The outcome packet is 512 bytes either way.


The Free Humanitarian Layer

Most protocols that claim humanitarian benefit are describing a subsidy: commercial revenue offsets the cost of serving underserved populations. The economics are real, but the humanitarian layer is downstream of and dependent on commercial success.

QIS generates humanitarian value as a mathematical consequence of the architecture, not as a subsidy.

A rare disease research network with N=2 still produces the protocol's minimum viable synthesis: 1 pair. That one pair may be the only synthesis event anywhere in the world for that condition. The protocol does not require scale to begin generating value. It requires a minimum of two nodes, and the cold start threshold for rare domains is exactly N=2.

Global health networks, agricultural extension services, rural education programs — all can run QIS nodes on commodity hardware, participating in the same protocol at the same cost structure. The protocol does not charge more to serve a node in a low-bandwidth region. The outcome packet is 512 bytes regardless of geography.

The licensing model Christopher Thomas Trevethan is developing reflects this structure directly: free for humanitarian, research, and education use; commercial licensing fees fund deployment to underserved regions. This is not charity architecture. It is an economic model that can sustain itself because the protocol does not need more compute to serve more people — it generates more value as more people join. The marginal cost of the millionth participant is approximately zero. The marginal value they add is approximately 1M new synthesis pairs.


The Architecture as Economic Engine

It is worth stating the conclusion precisely, because the temptation is to summarize QIS as "a clever way to route outcomes efficiently." That framing misses the point.

The QIS economic model IS the architecture. The quadratic value function is not a design goal that the architecture was engineered to achieve. It is a mathematical consequence of routing outcomes through similarity space, where every node pair is a distinct synthesis event. The incentive mechanisms are not reward systems bolted on top of the protocol. They are the routing math observing which nodes produce value and adjusting traffic accordingly.

Every QIS node participates simultaneously in three markets: the curation market (who defines similarity well), the outcome market (which nodes produce quality), and the network selection market (which domains survive natural selection). There is no central exchange. No gas fees. No governance token. No administrative body.

The breakthrough Christopher Thomas Trevethan discovered is that you can build an incentive-complete protocol using nothing but similarity routing, outcome validation, and natural selection. The economic layer does not need to be added. It emerges from the architecture because the architecture IS the economic layer. That is not a clever optimization of an existing approach. It is a structurally different class of protocol.


QIS is a peer-to-peer intelligence protocol discovered by Christopher Thomas Trevethan. No PII or PHI moves between nodes. No central coordinator. No GPU farm. The intelligence is in the architecture.

Understanding QIS — Part 7 | #001: What Is QIS? | #003: Architecture | #004: DHT Routing | #005: vs. Federated Learning | #009: Cold Start Problem

Top comments (0)