Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Mathematical Foundations
Mathematical Foundations

Information Theory for Sensor Selection

Which diagnostics to trust, place, or prioritize is an information question; entropy and mutual information quantify how much each sensor tells the twin.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Measuring information

Not all diagnostics are equally informative about the states the twin needs. Information theory quantifies this: entropy measures uncertainty in a quantity, and mutual information measures how much observing a sensor reduces uncertainty about the state. These let the stack rank, place, and prioritize diagnostics on a principled basis rather than by intuition.

text
Entropy and mutual information:

  H(X)   = - sum p(x) log p(x)            (uncertainty in X)
  I(X;Y) = H(X) - H(X|Y)                  (info Y gives about X)
         = KL( p(x,y) || p(x)p(y) )

Gaussian case (state x, measurement y):
  I(x;y) = 0.5 * log( det(P_prior) / det(P_post) )

Optimal experiment design

Choosing a sensor set to maximize information about the state is Bayesian optimal experiment design. Common criteria come from the posterior covariance: D-optimality maximizes the information determinant, A-optimality minimizes total posterior variance. These connect directly to the observability Gramian - sensors are chosen to make safety-critical states strongly observable.

python
# greedy D-optimal sensor selection (schematic)
selected = []
for _ in range(budget):
    best = argmax_over_candidates(
        lambda s: logdet(info_matrix(selected + [s])))
    selected.append(best)     # add sensor with most added information
# maximizes reduction in posterior uncertainty

Use across the stack

Mutual information ranks which sensors most reduce uncertainty in shape, current, or plug potential, guiding both diagnostic placement and how the estimator weights channels. It also drives active learning: the twin proposes the measurement or scenario that would most reduce model uncertainty. On the burner, information analysis exposes how little the sparse, extrapolative diagnostic picture constrains the state - reinforcing, not hiding, the regime caveat.

Information theory ties the estimation and optimization layers together: it decides where to look, and observability decides whether what is seen is enough - both feeding the twin's honest account of what it does and does not know.

Content reviewed August 2026 · design-and-simulation stage