Design decisions so they work even if some things go wrong
Ask: does this plan require everything to go right? If so, redesign it.
Why it works
Complex plans with multiple sequential dependencies are highly sensitive to single-point failures — when any step goes wrong, the whole plan fails. Redesigning so that the acceptable outcome is achievable even if some components fail is the structural form of margin of safety. This is distinct from planning for failure; it is designing for robustness so failure of parts does not equal failure of the whole.
How to do it
- Map the dependencies in your plan: which steps must succeed for the outcome to work?
- Identify single points of failure — any step where one bad outcome ruins everything.
- Redesign to create fallbacks or redundancies at single-point failures.
- Accept a slightly lower expected upside in exchange for a substantially higher floor.
Evidence
Engineering reliability theory formalizes this: series systems fail when any component fails, while parallel/redundant systems tolerate component failure. The principle that reducing single points of failure increases system reliability is mathematically well established. (mechanistic)
Redundancy adds cost and complexity; the optimal level of redundancy depends on the probability and cost of failure, which are often hard to estimate in non-engineering contexts.
Common mistake
Adding a plan B that is only reachable if plan A partially succeeds — true robustness means the fallback works even when the primary path fails completely.
Practice this with IX Coach
7 days free, then $40/month (~$1.30/day).
More practices for Margin of Safety
- Estimate conservatively and act on the conservative number
When uncertain, use a pessimistic estimate as your working assumption — not your best guess.
- Build in slack — time, money, and energy buffers
Never plan to use 100% of your resources; leave a buffer for what you did not anticipate.
- Discount your estimate to create a margin
If you think something is worth X, only commit at a meaningful discount to X.
- Protect the downside before chasing the upside
Ask what the worst realistic outcome is and ensure you can survive it before evaluating the upside.
- Name the assumptions that must hold for the plan to work
Every plan rests on assumptions — list them and ask how likely each one is.
Related concepts
- Thinking, Fast and Slow, Made Usable
Two systems, the biases they create, and when to slow down
- Circle of Competence
Know what you know, know what you do not know, and act accordingly
- Second-Order Thinking: And Then What?
Tracing consequences of consequences, the way Howard Marks does
- Inversion: Solve Problems Backward
Munger’s “avoid stupidity” discipline, applied to real decisions