Calculate total resistance with error propagation using both RSS (statistical) and worst-case methods.
Series: Rtotal = R₁ + R₂
Parallel: Rtotal = (R₁ × R₂)/(R₁ + R₂)
RSS (Root Sum Square): Assumes errors are independent and random.
Δf = √(Σ(∂f/∂xᵢ · Δxᵢ)²)
Worst-Case: Assumes all errors add in the same direction (most conservative).
Δf = Σ|∂f/∂xᵢ · Δxᵢ|
Use RSS for typical production tolerances. Use worst-case for critical designs.