Stress Test and Reverse Stress Test¶
Resilience audit — instantiates Tail-Dominance Modeling and Control
Runs the system against severe tail scenarios to check it survives — then runs the logic backwards to find the smallest scenario that would break it.
Stress Test and Reverse Stress Test is the paired assessment that pushes a system into the tail on purpose. The forward test subjects it to a set of severe-but-plausible extreme scenarios and asks whether it survives; the reverse test inverts the question — instead of assuming a scenario and computing the loss, it fixes the loss at "fatal" and searches for the smallest, most plausible scenario that gets there. Its defining move is that reverse pass: it maps the boundary of the survivable envelope, the edge where the plan, the capital, or the model stops holding. A forward test tells you whether you clear the extremes you thought to imagine; the reverse test tells you what you failed to imagine that would still be enough to break you — which in a heavy-tailed world is the more honest question.
Example¶
A central counterparty (a clearinghouse standing between traders) has to size the mutualized default fund that absorbs losses when a clearing member fails. The forward stress test runs its portfolio against a set of severe scenarios — a historical crash repriced to today, a synthetic simultaneous shock across correlated markets — and checks that resources cover the loss from the default of its two largest members at once, the standard "Cover 2" resilience requirement. Forward, it passes with room to spare.
Then the reverse test flips it. Holding "the default fund is exhausted" fixed, it searches for the mildest combination that would get there — and finds that the binding case is not a bigger price move but a correlation one: two mid-sized members failing together in a scenario where previously uncorrelated positions move as one. That scenario was nowhere in the forward set, because no one had thought to write it down. The output is not a pass/fail but a redrawn boundary: the clearinghouse survives severity but is thin against joint failure under correlation breakdown — a precise statement of where the current model stops protecting it, and therefore where to add resources or tighten membership.
How it works¶
The forward and reverse passes share machinery but run in opposite directions. Forward: assemble a scenario set — severe realizations drawn from history, hypotheticals, and combinations — and push each through the system to a survive/fail outcome. Reverse: fix the failure condition (insolvency, stockout, load-shed, breach) and solve backwards for the scenarios that reach it, then rank them by plausibility. The distinguishing product is not the list of passes but the frontier the reverse pass exposes: the set of conditions under which the system tips over. Because that frontier so often turns out to be a scenario absent from the forward set, the reverse test is the part that finds the model's blind spots rather than confirming its foresight.
Tuning parameters¶
- Scenario severity and breadth — how extreme and how varied the forward set is. Narrow and familiar scenarios pass easily and prove little; breadth costs effort but is where the informative failures hide.
- Failure condition — what "broken" means for the reverse pass (insolvency, a covenant breach, service collapse). Move the definition and you move the whole frontier; it must match the consequence that actually matters.
- Correlation and joint-shock assumptions — whether risks are stressed independently or together. Independence is optimistic exactly when it is most dangerous, since tails tend to arrive jointly.
- Plausibility filter — how the reverse test ranks breaking scenarios, so attention goes to the mildest realistic one rather than a lurid impossibility.
- Cadence — one-off, annual, or continuous re-running as positions and the tail model drift. Stale scenarios protect against last year's tail.
When it helps, and when it misleads¶
Its strength is that it tests survival directly rather than inferring it from a summary statistic, and — through the reverse pass — actively hunts for the unimagined scenario instead of waiting to be surprised by it. It turns "are we safe?" into "here is exactly what would sink us, and how plausible that is," which is a far more actionable object than a comfortable capital ratio.
Its failure modes are scenario-shaped. A forward test is only as good as the imagination behind its set: it cannot fail on a scenario no one wrote, which breeds false comfort precisely because the system "passed." The classic misuse is running it to justify a decision already made — curating a scenario set severe enough to look rigorous but tame enough to guarantee a pass, then citing the green result as validation. Reverse testing is the structural guard against this[1] (you cannot cherry-pick your way past a search for any breaking scenario), but it too can be blunted by an over-tight plausibility filter that quietly rules the real threat "too unlikely." The discipline is to let the reverse pass, not the forward set, own the conclusion, and to treat every newly-found breaking scenario as a permanent addition to the forward set.
How it implements the components¶
Stress Test and Reverse Stress Test fills the survival-probing side of the archetype's machinery — the components that map how the system behaves at and beyond the edge:
stress_scenario_set— it curates and applies the severe forward scenarios, and in reverse derives new ones: the specific breaking scenario the search returns is itself an addition to the set.model_scope_boundary— the reverse pass draws the boundary of the survivable envelope, the frontier where the current plan and model stop holding.
It does not mass-generate the broad simulated scenario library it draws on — that is the Heavy-Tail Simulation Scenario Set; it does not track whether the tail is drifting between tests — that is Tail Incident Review; and it does not hold the capacity that would absorb a survived shock — that is Reserve Buffer Policy.
Related¶
- Instantiates: Tail-Dominance Modeling and Control — supplies the direct survival evidence and the breaking-point frontier the appraisal needs.
- Consumes: the Heavy-Tail Simulation Scenario Set supplies the simulated extremes the forward pass runs against.
- Sibling mechanisms: Heavy-Tail Simulation Scenario Set · Reserve Buffer Policy · Exposure Cap Policy · Tail Incident Review · Rare-Event or Importance Sampling · Expected Shortfall Dashboard
Notes¶
The reverse pass is the part that resists gaming, and it is also the part most often skipped, because it can only ever bring bad news — a list of things that would break you. Cutting the assessment down to the forward test alone keeps the ritual and discards its point.
References¶
[1] Reverse stress testing is a recognized supervisory technique: rather than assuming a scenario and measuring the loss, it fixes an outcome that would render the firm unviable and works backward to the scenarios that produce it, surfacing vulnerabilities that forward scenarios miss. It is a standard complement to conventional stress testing in financial regulation. ↩