Sensor Fusion Uncertainty Calculator
Calculate the fused position uncertainty when combining two sensor modalities — and see quantitatively why multi-sensor fusion always outperforms any single sensor alone.
⚙️ Input Parameters
Sensor A
GPS urban: 2–10m
Relative confidence
Sensor B
LiDAR map-match: 0.02–0.1m
Increase to trust B more
📊 Results
Enter the uncertainty (σ) of two sensors to see how fusion reduces total position uncertainty compared to either sensor alone.
Fused Uncertainty (1σ)
—m
Sensor A variance (σ²_A)—
Sensor B variance (σ²_B)—
Improvement vs Sensor A alone—
Improvement vs Sensor B alone—
Effective weight on Sensor B—
Why Sensor Fusion Reduces Uncertainty Below Any Single Sensor
What This Calculates
Weighted least squares fusion weights each sensor’s contribution inversely proportional to its variance — low uncertainty sensors get high weight. The fused result is always more accurate than any single sensor alone — mathematically guaranteed. This is the measurement update step inside every Kalman filter, in scalar form.
When to Use It
- Quantifying benefit of adding a second sensor to your stack
- Setting initial Kalman filter measurement noise matrices (R)
- Justifying multi-sensor cost in safety case or project proposal
- Evaluating what happens when one sensor degrades (raise its σ)
- Understanding why BEV fusion outperforms late fusion
Formula
σ²_fused = 1/(w_A/σ²_A + w_B/σ²_B)
σ_fused = √(σ²_fused)Effective weight on B:
= (w_B/σ²_B) × σ²_fused × 100%Improvement vs A:
= (1 – σ_fused/σ_A) × 100%
