RSN Collapse: When Your Quality Signal Becomes Noise

This is Part 10 of our 16-week series on Context Degradation—the hidden failure modes that break AI systems before anyone notices. The Foundation of Context Quality
Throughout this series, we've described context degradation in terms of three components:
R (Relevant): Task-pertinent information S (Superfluous): Accurate but task-irrelevant information N (Noise): Incorrect or corrupted information
Every failure mode we've covered depends on being able to distinguish these components. POISONING is high N. DISTRACTION is high S. HALLUCINATION is high confidence despite low reliability.
But what happens when R, S, and N become indistinguishable?
The Measurement Breaks
RSN COLLAPSE is unique among our failure modes: it's not a failure in the AI system itself, but a failure in our ability to measure context quality.
When RSN collapse occurs:
Relevant content projects to similar representations as noise Superfluous content can't be distinguished from signal The decomposition produces uninformative values Every input looks the same
The certificate tuple becomes useless. The quality signal has itself become noise.
Why Does This Happen?
RSN collapse can occur for several reasons:
1. Embedding saturation
When embedding spaces become saturated, different concepts map to similar regions. "Important contract clause" and "random boilerplate" end up as neighbors.
2. Domain mismatch
Decomposition models trained on one domain applied to another. What counts as "noise" in medical text doesn't match "noise" in legal text.
3. Adversarial inputs
Deliberately crafted content that confuses the decomposition. Noise dressed up as signal.
4. Representation degeneracy
The underlying representation learning has failed (as in posterior collapse or mode collapse from previous weeks).
5. Scale collapse
At extreme scales, statistical properties converge. Everything looks average.
The Meta-Failure
RSN collapse is a meta-failure: a failure of the failure detection system.
If you can't tell R from S from N, you can't detect:
POISONING (because you can't identify N) DISTRACTION (because you can't identify S) CONFUSION (because you can't identify the compound state) HALLUCINATION (because you can't measure reliability against relevance)
The entire framework of context quality measurement fails.
This is why RSN collapse is in our taxonomy: you need to be able to detect when your detection system has failed.
How To Detect the Undetectable
Detecting RSN collapse requires monitoring the decomposition itself:
Inter-component variance: R, S, and N should have different distributions. If they converge, collapse is occurring.
Cross-correlation: R shouldn't correlate with N. If they start correlating, the decomposition is failing.
Calibration checks: Known-good samples (verified R) and known-bad samples (verified N) should separate cleanly. If they don't, recalibrate.
Entropy of decomposition: A healthy decomposition produces varied outputs. Uniform outputs suggest collapse.
Practical Implications
RSN collapse rarely happens suddenly. More often, it degrades gradually:
Decomposition accuracy: 95% → 90% → 85% → 70% At some point, the decomposition is worse than guessing
Organizations using context quality measurement need to monitor their monitors:
Calibration datasets: Maintain labeled examples where R, S, N are known Periodic validation: Test decomposition accuracy against calibration data Drift detection: Track decomposition metrics over time Fallback policies: Know what to do when decomposition fails
The Deeper Issue: Quis Custodiet?
"Who watches the watchmen?"
Any measurement system can fail. Any quality signal can degrade. Any detector can be fooled.
RSN collapse forces us to confront this recursion: if we're measuring context quality, we need to measure the quality of our measurement.
This isn't infinite regress—it's defense in depth:
Level 0: The AI system Level 1: Context quality measurement (the certificate) Level 2: Measurement quality validation (RSN collapse detection) Level 3: Periodic human audit of the whole stack
Each level catches failures the previous level might miss.
When RSN Collapse Is Likely
Certain conditions increase RSN collapse risk:
New domains: Applying decomposition models to domains not in training data
Adversarial environments: When users or attackers actively try to fool the system
Extreme scale: Processing content at scales where statistical regularities dominate
Long deployment: Models degrade over time as the world drifts
Mixed modalities: Combining text, code, images with single decomposition approach
Mitigation Strategies
Domain-specific calibration: Train decomposition models on domain-specific data
Ensemble approaches: Use multiple decomposition methods; collapse in one may not affect others
Confidence intervals: Report uncertainty in decomposition, not just point estimates
Human-in-the-loop: For high-stakes decisions, require human verification when decomposition confidence is low
Regular…