OR gate: $Q_{top}= 1 - \prod_i(1-Q_i)$
AND gate: $Q_{top}= \prod_i Q_i$
Birnbaum importance: $I_B^{(i)}= \dfrac{\partial Q_{top}}{\partial Q_i}$
Fussell-Vesely importance: $FV_i = \dfrac{Q_i \cdot I_B^{(i)}}{Q_{top}}$
Build fault trees with AND/OR gates and calculate minimal cut sets, top event probability, and Birnbaum/FV importance measures in real time. Safety analysis support tool compliant with IEC 61508.
OR gate: $Q_{top}= 1 - \prod_i(1-Q_i)$
AND gate: $Q_{top}= \prod_i Q_i$
Birnbaum importance: $I_B^{(i)}= \dfrac{\partial Q_{top}}{\partial Q_i}$
Fussell-Vesely importance: $FV_i = \dfrac{Q_i \cdot I_B^{(i)}}{Q_{top}}$
The core of FTA is calculating the probability of the Top Event ($Q_{top}$) based on the probabilities of basic events ($Q_i$) and the logic gates connecting them. For independent events, the formulas are:
$$Q_{top}^{OR}= 1 - \prod_{i=1}^{n}(1-Q_i)$$This is for an OR gate, where any input event causes the output. The product $\prod(1-Q_i)$ is the probability that none of the events happen, so one minus that gives the probability at least one happens.
For an AND gate, all input events must occur for the output to occur.
$$Q_{top}^{AND}= \prod_{i=1}^{n}Q_i$$Here, $Q_i$ is the failure probability of basic event $i$. The Birnbaum Importance Measure $I_B^{(i)}$ quantifies the sensitivity of the top event probability to changes in a basic event's reliability. It's the partial derivative of the system failure probability with respect to the component's failure probability.
$$I_B^{(i)}= \frac{\partial Q_{top}}{\partial Q_i}$$A high Birnbaum value means that component is a major leverage point for improving system safety.
Automotive Functional Safety (ISO 26262): Engineers use FTA to determine the Automotive Safety Integrity Level (ASIL) for systems like braking or steering. By modeling fault trees, they can prove that the probability of a hazardous event is below the required threshold, such as 10⁻⁸ failures per hour for the most severe ASIL D.
Aerospace & Defense (MIL-STD-1629A): This military standard formalizes FTA for aircraft and weapon systems. A classic case is analyzing the failure conditions for a flight control computer, identifying which combinations of sensor and processor faults could lead to loss of control.
Process Industry Safety (PHA - Process Hazard Analysis): In chemical plants, FTA models scenarios like reactor overpressure. An AND gate might combine "Pressure Relief Valve Stuck" and "High Temperature Alarm Failure" to find if sufficient independent protection layers exist to prevent an explosion.
Nuclear Power Plant Safety: Probabilistic Risk Assessment (PRA) relies heavily on FTA to quantify core damage frequency. It helps answer questions like, "What is the probability that both the main cooling and the emergency core cooling systems fail simultaneously?"
First, the assumption that "a low probability means it's okay" is dangerous. For example, if you have five basic events each with a probability of 0.001 (1 in 1000) connected by an AND gate, the top event probability becomes $0.001^5 = 10^{-15}$, which is extremely small. However, if these are connected by an OR gate, the probability jumps to approximately 0.005. Misunderstanding the gate logic can lead to underestimating risk, so be careful.
Next, consider the basis for setting basic event probabilities. Don't just move sliders arbitrarily; set them based on real data (failure rate databases, your company's maintenance records) or expert judgment. Using "0.1 for now because I'm not sure" will make the resulting importance measures unrealistic. When data is lacking, a practical approach is to run simulations using three-point estimates (optimistic/most likely/pessimistic) to see the range of possible outcomes.
Finally, note that "minimal cut sets" are not necessarily "physically independent failure paths". For instance, "power loss" and "software freeze" are different basic events, but they could occur simultaneously due to a common cause (e.g., a lightning surge). An FTA that doesn't consider this "common cause failure" underestimates reality. When you look at the cut set list from the simulator, get into the habit of questioning, "Are these truly independent?"