Single Fault vs Multiple Faults (Decision Tree)
Why this matters
A useful rule of thumb says most problems trace to one fault. But "usually one" is not "always one," and the calls that go sideways are the ones where a tech fixes the single fault they assumed and the system still does not work, or fixes one part while a second hidden fault takes the new part right back out. Knowing when to expect one fault and when to dig for more is what separates a clean repair from a callback.
Start here: assume one, but stay suspicious
Begin every diagnosis with the single-fault assumption because it is true most of the time and it keeps you focused. One root cause often produces several symptoms at once, which fools people into thinking there are many problems when there is really one. So first ask: could a single fault explain everything I am seeing?
If one cause explains all symptoms
When several complaints all trace upstream to one component, you have a single fault with multiple symptoms. Classic shape: one failed part starves or disables everything downstream of it, so three "separate" problems are really one. Fix the root, and every symptom clears together. Confirm by checking that all symptoms resolve from the one repair. If they do, you are done.
If symptoms do not share a common cause
If you map the symptoms back and they do not converge on one component, you likely have more than one fault. Signs of multiple independent faults:
- Two symptoms in parts of the system that do not feed each other.
- A repair that clearly fixed one thing while another problem stayed exactly the same.
- Failures with different signatures (one heat-related, one moisture-related) that no single cause ties together.
When the symptoms refuse to collapse into one story, stop forcing them. Diagnose each independently.
The cascade trap: one fault that caused another
The hardest case is a chain reaction: one fault damaged a second component. If you replace a part and the new one fails quickly, the part you replaced was a victim, not the cause. Something upstream is destroying it. Ask:
- What could make this component fail this way? (Overload, wrong supply, blocked flow, overheating.)
- Is that upstream condition still present?
You must find and fix the causing fault, or you will keep feeding new parts into the same meat grinder. This is why diagnosis does not end at the failed part - it ends at why the part failed.
The masking trap: one fault hiding another
A single fault can stop the system so completely that a second fault never gets a chance to show. If, after a solid repair, a brand-new symptom appears that was not there before, you probably uncovered a second fault that the first one was masking. This is not your repair breaking something; it is the system finally running far enough to expose the next problem. Diagnose it as a fresh fault.
How to work it cleanly
- List every symptom before fixing anything.
- Try to trace them all to one cause. If they fit, fix it and confirm all clear.
- If they do not fit, treat them as separate faults and isolate each.
- After any repair, re-test the whole system, not just the part you touched.
- If a new part fails fast, hunt upstream for the cause.
- If a new symptom appears, treat it as a newly exposed fault.
A note on probability
Multiple simultaneous unrelated faults are genuinely uncommon, so do not invent a second fault to avoid admitting your first diagnosis was wrong. But a cause-and-effect chain (one fault causing or masking another) is common. The difference: unrelated faults are coincidence and rare; chained faults are physics and routine.
References
- Trade-standard cascade-failure and root-cause analysis practice.
- Reliability-engineering guidance on common-cause versus independent failures.
- See related: Root Cause vs Symptom Fix, Diagnose Before You Replace.