---
title: Uncertainty Externalization Overview
url: https://www.emergentmind.com/topics/uncertainty-externalization
type: topic
---

# Uncertainty Externalization Overview

Searching arXiv for the cited papers and topic-specific references to ground the article.
arxiv_search(query="\"Unpacking uncertainty in the modelling process for energy policy making\" OR \"LLMs Should Express Uncertainty Explicitly\" OR \"Understanding Reasoning in LLMs through Strategic Information Allocation under Uncertainty\" OR \"Confidence Laundering in Agent Systems\" OR \"Not All Uncertainty Is Equal\" OR \"Uncertainty Modeling for SysML v2\" OR \"Fighting Uncertainty with Uncertainty\" OR \"Market making by an FX dealer\"", max_results=10)
Uncertainty externalization denotes a family of operations in which uncertainty is displaced from one locus of analysis or control to another rather than eliminated. In energy-policy modelling, it refers to pushing assumptions, value judgments, and gaps in knowledge outside the formal analysis, thereby creating an “excess of certainty” around particular policy options [2111.00782]. In recent LLM work, the same expression is used in an almost opposite sense: latent uncertainty is made explicit as a trainable interface for abstention, retrieval, verification, and intervention [2604.05306]. Related literatures use the term for preserving uncertainty across agent handoffs through latent carriers [2606.20662], encoding uncertainty as first-class structure in SysML v2 [2602.21641], transferring inventory risk from an FX dealer’s book to the inter-dealer market [2112.02269], or introducing randomness into the decision rule itself through “Randoptimization” [1601.04043]. Across these uses, the central question is not whether uncertainty exists, but whether it is hidden, exposed, propagated, or operationalized at the decision interface.

## 1. Domain-specific meanings

The term has no single universal definition across arXiv literatures. Instead, it names several distinct interface phenomena.

| Domain | Meaning of uncertainty externalization | Representative paper |
|---|---|---|
| Energy policy modelling | Uncertainty is pushed outside formal analysis | [2111.00782] |
| LLM inference | Uncertainty is expressed explicitly for control | [2604.05306] |
| LLM reasoning | Latent uncertainty is verbalized as epistemic information | [2603.15500] |
| Agent systems | Fragility is preserved across handoffs via latent carriers | [2606.20662] |
| MBSE / SysML v2 | Uncertainty is modeled explicitly in system structure | [2602.21641] |
| Decision theory / operations | Randomness is introduced into the policy itself | [1601.04043] |
| FX market making | Inventory risk is transferred to the market | [2112.02269] |

In the energy-modelling literature, externalization is a pathology: “black-box” models, single cost-optimal pathways, and reliance on a single model or indicator suppress deep uncertainty and close off alternatives [2111.00782]. In LLM interface design, by contrast, externalization is treated as a design goal: uncertainty should be a first-class, trainable interface that the model exposes explicitly to downstream controllers [2604.05306]. In agent systems, the emphasis shifts from local estimation to uncertainty-preserving interface design, because uncertainty propagates only when it survives the handoff between components [2606.20662].

This suggests that the common denominator is representational location. What changes across fields is whether moving uncertainty outward is regarded as loss, preservation, or deliberate control.

## 2. Energy-policy modelling and the critique of false certainty

In “Unpacking uncertainty in the modelling process for energy policy making” [2111.00782], uncertainty externalization is defined as the tendency of energy-system modelling to generate crisp scenarios or single “best-estimate” indicators while leaving unexamined assumptions, institutional choices, contested framings, and non-quantifiable uncertainties outside the formal analysis. The paper locates this problem in Post-Normal Science, where facts are uncertain, stakes are high, values are disputed and decisions are urgent. Externalization manifests as “black-box” models, fixation on one or two cost-optimal pathways, neglect of qualitative or “deep” uncertainties, and reliance on a single model or indicator for major policy commitments.

The proposed remedies are three reflexive-modelling methodologies. NUSAP decomposes a quantity into Numeral, Unit, Spread, Assessment, and Pedigree. Its pedigree component scores each assumption against proxy representation, empirical basis, methodological rigour, validation, and theoretical understanding. In matrix form, if \(P\) is the pedigree matrix, an aggregate score may be written as
\[
\mathrm{pedigreeScore}_i=\sum_{j=1}^5 w_j P_{ij}.
\]
Diagnostic diagrams then place each assumption on a two-axis scatter plot with pedigree on the horizontal axis and sensitivity on the vertical axis. The “Danger zone” is \(Q4\): high sensitivity and poor pedigree. Sensitivity auditing extends beyond technical UA & SA to interrogate framing, scope-definition, rhetoric of numbers, hidden value judgments, and governance assumptions. Its mathematical hook is the first-order Sobol’ index
\[
S_i=\mathrm{Var}_{X_i}[E(Y\mid X_i)]/\mathrm{Var}(Y).
\]

The four detailed case studies show how these methods recapture uncertainty that conventional modelling had externalized. In the ExternE case, a transdisciplinary workshop identified 30 assumptions, reduced them to six critical ones, and found that all six received weak aggregate pedigree. In ESME, BioRES and CCSmbr lay in \(Q4\), implying high influence on total system cost but very weak pedigree. In the NETs-in-IAMs case, Vaughan & Gough’s 18-expert workshop found that almost all NETs parameters sat in the \(Q4\) danger zone. In the Ecological Footprint case, the seven-point auditing checklist exposed omitted sink functions, hidden technical coefficients, absent error bars, and no published uncertainty or sensitivity analysis.

The significance of this literature is methodological rather than merely computational. It treats uncertainty as partly epistemic, value-laden, and institutional, so quality assurance requires workshops, pedigree matrices, diagnostic plots, and sensitivity auditing rather than only tighter confidence intervals.

## 3. Explicit uncertainty in LLMs: global confidence and local signals

“LLMs Should Express Uncertainty Explicitly” reframes uncertainty as an interface for control rather than a latent quantity estimated post hoc [2604.05306]. It distinguishes two decision problems. Outcome uncertainty—“Should I trust this final answer?”—is addressed by a global scalar. Process uncertainty—“Am I hitting a fragile step in my chain-of-thought?”—is addressed by local signals during generation. The global interface appends a decimal confidence token \(c\in[0,1]\) after generating a reasoning trajectory \(z_{1:T}\) and an answer \(\hat y\), with
\[
c \approx \Pr(Y=1\mid h_{1:T}),\qquad Y=\mathbf1\{\hat y=\text{gold}\}.
\]
The local interface allows the model to emit the literal token “\<uncertain\>” during reasoning, with
\[
a_t=\begin{cases}
1 & \text{emit “\<uncertain\>” at step }t,\\
0 & \text{otherwise.}
\end{cases}
\]

Both interfaces are learned through a light post-training stage using a variant of GRPO. The idealized update is
\[
\pi_{\theta'}(z\mid x)\propto \pi_\theta(z\mid x)\exp(\eta\,r(z;x)).
\]
For verbalized confidence,
\[
r_{\rm verbal}(z;x)=
\begin{cases}
+p(z) & \text{if answer is correct},\\
-p(z) & \text{if answer is wrong},
\end{cases}
\]
which rewards justified confidence and penalizes over-confident errors. For “\<uncertain\>”, the reward order is
\[
r(\text{correct, no-emit})>r(\text{correct, emit})>r(\text{wrong, emit})>r(\text{wrong, no-emit}),
\]
implemented as \([5.0,\,3.5,\,0.0,\,-2.0]\).

The reported effects are large. On 2WikiMultihopQA, verbalized confidence changes accuracy from \(0.345\to0.358\), ECE from \(0.383\to0.049\), Brier from \(0.504\to0.166\), NLL from \(4.987\to0.498\), and the over-confidence gap from \(+0.523\to+0.045\); wrong answers with \(c>0.7\) drop from \(88.5\%\) to \(3.2\%\) [2604.05306]. In Adaptive RAG aggregated over five datasets, Verbal-Calibrate reaches EM/F1 \(=41.6/50.5\) at \(48.1\%\) retrieval, while Uncertain-Calibrate reaches \(40.9/48.1\) at \(61.4\%\) retrieval. Mechanistically, the verbal interface concentrates token-level KL divergence almost exclusively at the final confidence digit and preserves layer geometry, whereas the special-token interface induces progressive late-layer CKA drop to \(0.85\), indicating a broader reorganization.

A complementary theoretical account is given in “Understanding Reasoning in LLMs through Strategic Information Allocation under Uncertainty” [2603.15500]. That paper decomposes reasoning into procedural information and epistemic verbalization. If \(Z_t\) is a latent internal variable, then making it verbalized and therefore conditionable yields
\[
I(Y;Z_t\mid s_{t-1})>0 \Longrightarrow H(Y\mid s_{t-1},Z_t)<H(Y\mid s_{t-1}).
\]
The paper further argues that purely procedural reasoning can become informationally stagnant, whereas sporadic epistemic verbalization can ensure continued information acquisition. Empirically, masking epistemic tokens in top-performers drops accuracy by \(25\%\) and \(19\%\); removing all epistemic verbalization from high-quality procedural traces degrades Qwen3-14B base from \(60\%\to13.3\%\) pass@1 on AIME24.

A frequent misconception is that uncertainty expression is merely a stylistic overlay. These two papers argue the opposite: explicit uncertainty can alter calibration, retrieval control, and the internal routing of computation.

## 4. Propagation across interfaces: agent handoffs and model-based systems engineering

In multi-step agent systems, the central problem is not only whether uncertainty exists locally, but whether it is preserved at component boundaries. “Confidence Laundering in Agent Systems: Why Uncertainty Needs a Latent Carrier” defines uncertain decision handoff as the transfer of an intermediate decision made under uncertainty [2606.20662]. If \(\pi_t\in\Delta(\mathcal Y)\) is an upstream distribution over possible artifacts and the interface applies a deterministic commitment map
\[
\Phi:\Delta(\mathcal Y)\to\mathcal Y,\qquad x_t=\Phi(\pi_t),
\]
then distinct epistemic states can collapse to the same \(x_t\). Downstream components receive a procedurally valid artifact but lose access to its fragility. That failure mode is called confidence laundering. The proposed remedy is a latent uncertainty carrier \(u_t:=\ell(h_t)\), attached to the committed artifact through an augmented handoff
\[
\Psi:\pi_t\mapsto (x_t,u_t).
\]
In HotpotQA web-search experiments, latent carriers achieve AUROC \(0.874\) in binary uncertainty detection, versus \(0.667\) with scalar scores and \(0.618\) with answer-only.

A structurally analogous agenda appears in “Uncertainty Modeling for SysML v2” [2602.21641]. There, uncertainty is externalized into explicit model constructs by incorporating the PSUM metamodel into SysML v2. The core stereotypes include \(\mathsf{BeliefStatement}\), \(\mathsf{IndeterminacySource}\), \(\mathsf{IndeterminacySpecification}\), \(\mathsf{Uncertainty}\), \(\mathsf{UncertaintyTopic}\), and \(\mathsf{Effect}\). Uncertainty carries attributes such as \(u\_kind\), \(u\_nature\in\{\mathrm{ale},\mathrm{epi}\}\), \(u\_reducibility\), and \(u\_pattern\). Propagation is represented by explicit references from uncertainties to effects, so downstream consequences remain traceable rather than implicit. The extension was validated on seven publicly available SysML v2 models totaling 3,685 lines of model and over 1,000 elements.

The common significance is interface preservation. In agent systems, preservation requires a latent carrier attached to decision handoffs. In MBSE, preservation requires stereotypes, constraints, measurements, and effect links. In both cases, uncertainty becomes actionable only when it is retained in a form that downstream processes can consume.

## 5. Externalization as controlled transfer: randomized policies and hedging

A different tradition treats uncertainty externalization as a deliberate control strategy. In “Fighting Uncertainty with Uncertainty: A Baby Step,” Kashyap calls this “Randoptimization” [1601.04043]. The idea is to choose a randomized policy rather than a single deterministic action, thereby pushing some randomness into the decision-maker’s own control. In the benchmark news-vendor problem, deterministic profit under order quantity \(Q\) is
\[
\Pi(Q,D)=p\,\min\{Q,D\}-c\,Q,
\]
with classical optimizer
\[
Q^*=F^{-1}\!\Bigl(1-\frac{c}{p}\Bigr).
\]
Randoptimization instead draws \(Q\sim G\), yielding
\[
E[\Pi]=p\,E[\min(Q,D)]-c\,E[Q].
\]
A sufficient condition for randomized performance to match or exceed the deterministic optimum is
\[
E[Q]+E[D]-E[\max(Q,D)] \ge \int_0^{Q^*}F(t)\,dt.
\]
Under the simplifying constraint \(E[Q]=Q^*\), Kashyap gives an additional bound on how spread-out \(G\) may be. The paper sketches applications to school admissions, job-candidate selection, journal submissions, stock picking, and monetary policy.

In FX market making, externalization has a more literal market meaning. “Market making by an FX dealer: tiers, pricing ladders and hedging rates for optimal risk control” defines internalization as absorbing client flow imbalances on-book and using price-skewing to attract offsetting trades, whereas externalization means trading in the inter-dealer segment to immediately hedge inventory [2112.02269]. The dealer controls bid/ask skews and an external execution rate \(v_t\). The reference price follows
\[
dS_t=\sigma S_t\,dW_t+k\,v_t S_t\,dt.
\]
With execution cost \(L(v)=\eta v^2+\phi |v|\), the optimal hedging rate is
\[
v^*(p)=\mathrm{sign}(p)\max(0,|p|-\phi)/(2\eta),
\]
where \(p=\partial_q\theta(t,q_t)+kq_t\). If \(|p|\le\phi\), then \(v^*=0\): pure internalization. For a realistic EURUSD top-tier bank, the paper reports \(\sigma\approx50\) bps/\(\sqrt{\text{day}}\), \(\lambda\approx1{,}800\) day\(^{-1}\), \(\eta=10^{-5}\) bps·day per M€, \(\phi=0.1\) bps, \(k=5\cdot10^{-3}\) bps per M€, and \(\gamma\approx2\cdot10^{-3}\) bps\(^{-1}\) per M€; under these parameters, the dealer fully internalizes for \(|q|\lesssim20\)–\(30\) M€ and internalizes about \(80\%\) of flow.

These two literatures use the same word for distinct mechanisms. Randoptimization externalizes environmental uncertainty into a controlled sampling distribution. FX hedging externalizes inventory risk to the broader market. In both cases, uncertainty is not removed; it is transferred into a mechanism with explicit design parameters.

## 6. Granularity, verification, and the limits of visibility

Making uncertainty visible does not guarantee that downstream actors will use it well. “Not All Uncertainty Is Equal: How Uncertainty Granularity Shapes Human Verification in LLM-Assisted Decision Making” studies output-level, relation-level, and token-level uncertainty displays in a between-subjects study with \(N=192\) [2605.28571]. Token-level uncertainty is computed from next-token distributions, for example through per-token entropy
\[
H_t=-\sum_{v\in V} p_t(v)\log p_t(v),
\]
or through \(U_t=1-\exp(\ell_t)\), where \(\ell_t=\log p_t(w_t)\). Relation-level uncertainty assigns a score \(u_j\in[0,1]\) or \(0\)–\(100\%\) to each reasoning step or claim. Output-level uncertainty provides a single scalar \(u_{\text{out}}\) for the entire response.

The behavioral effects differ sharply by granularity. Agreement with AI is Baseline \(M=0.674\), UQ-Token \(M=0.730\), UQ-Relation \(M=0.669\), and UQ-Output \(M=0.657\); UQ-Token exceeds Baseline with \(OR=1.62, p\le .05\). Confidence in one’s own answers decreases under UQ-Output and UQ-Relation but not under UQ-Token. Relation-level uncertainty reduces external verification: link clicks fall from Baseline \(0.557\) to \(0.318\) with \(OR=0.42, p<.05\), and web searches fall from \(0.342\) to \(0.247\) with \(OR=0.81, p<.05\). Task accuracy and completion time show no reliable differences.

The result is a direct caution against an intuitive but overgeneral claim: more detailed uncertainty cues are not necessarily more responsible. Token-level heatmaps can increase agreement with the AI, whereas relation-level cues can steer users away from independent fact-checking. This suggests that uncertainty externalization must be evaluated not only by calibration metrics or representational fidelity, but also by the behavioral pathways it induces in verification, oversight, and intervention.

Across these literatures, the decisive issue is therefore not visibility alone. The consequential properties are whether uncertainty is retained at the right interface, encoded at the right granularity, and matched to an action that can actually use it.

Source: https://www.emergentmind.com/topics/uncertainty-externalization