Availability Heuristic
Judging how likely or common something is by how easily examples come to mind, not by actual frequency.
Availability Heuristic is estimating the probability or frequency of something by how easily instances of it come to mind, rather than by counting. Recall ease is driven by recency, vividness, and personal exposure — none of which track actual base rate — so the heuristic is fast and usually good enough, and systematically wrong exactly where those three diverge from reality.
The canonical illustration is that people rate death by shark attack as more likely than death by falling furniture, because shark attacks make the news and furniture deaths don't — the heuristic is sampling from "what got reported to me," which is a different population than "what actually happens." The engineering version: the last outage you personally debugged feels like the most likely cause of the next one, because it's vivid and recent, even when logs show it accounts for a small fraction of incidents. An on-call rotation that "always" gets paged for the same kind of alert is really a Base Rate Fallacy plus availability working together — the loud, memorable pages dominate memory even if a quieter class of failure is actually more frequent.
Availability also drives estimation in the other direction: a task feels quick to estimate because a similar-sounding task once was quick, ignoring how many similar-sounding tasks were painful and simply didn't stick in memory the same way. This is one root of chronically optimistic scheduling — the easily-recalled cases aren't a random sample of past cases, they're the sample that happened to be memorable.
The corrective is the same move Fermi Estimation makes explicit: force yourself to actually estimate a rate or count rather than reach for the first example that surfaces, and prefer a log query or incident tracker's real tally over a gut sense built from whichever incidents happened to be dramatic.
See also5
Base Rate Fallacy
judging a specific case from vivid evidence while discounting how common the categories actually are.
Method18 connections
Fermi Estimation
Reaching a defensible order-of-magnitude answer by decomposing a question into estimable factors.
Method23 connections
Anchoring Effect
A stated number pulls subsequent estimates toward it, regardless of relevance.
Method35 connections
Confirmation Bias
The tendency to search for, interpret, and recall evidence in ways that favor what you already believe.
Method12 connections
Selection Bias
A sample distorted because inclusion in it was never random.
Method16 connections
Related2
Nearby in the graph rather than deliberately chosen. Looser, sometimes surprising.
Linked from4
- Availability CascadeMeaning & Society
Repetition of a claim raises its perceived truth and prominence, and the perceived prominence drives further repetition.
- Confirmation BiasMethod
The tendency to search for, interpret, and recall evidence in ways that favor what you already believe.
- Hofstadter's LawMethod
A task always takes longer than expected, even when you plan for it to take longer than expected.
- Illusory Truth EffectMethod
A claim feels more true the more times you've heard it, independent of any evidence for it.