Andromeda
Note

Redundancy

Definition

Redundancy is the intentional duplication of critical components or functions of a system with the intention of increasing reliability, usually as a fail-safe. It is the opposite of Serial Reliability.

Why It Matters

Redundancy is the only insurance against the “statistical certainty” of failure. In any complex system, something will break. Without redundancy, a single broken valve or line of code is a “death blow.” It is the architectural acceptance of imperfection that allows for the extreme reliability of high-stakes systems like rockets and aircraft.

Core Concepts

  • Parallel Reliability: Rsys=1(1R1)(1R2)(1Rn)R_{sys} = 1 - (1 - R_1) \cdot (1 - R_2) \cdot \dots \cdot (1 - R_n).
  • How to read: “The quantity R sys equals one minus the product from i equals one to n of the quantity one minus R i.”
    • Meaning / when to use: For n independent parallel (redundant) components, the system fails only if all fail. This is the reliability formula for active or passive redundancy. Dramatically higher than any single component. Use for calculating required redundancy to meet a target system reliability.
  • Active Redundancy: All components operate simultaneously.
  • Passive Redundancy: Backup components activated only when primary fails.
  • Dissimilar Redundancy: Using different types of components to avoid common-mode failure.

Connected Concepts