Confirmation Bias
The tendency to search for, interpret, and recall evidence in ways that favor what you already believe.
Confirmation Bias is the tendency to seek out, weight, and remember evidence that supports a belief you already hold, while discounting or forgetting evidence against it. It is not a failure of intelligence — highly capable reasoners are often better at it, because they're more skilled at constructing a case for a conclusion they've already reached.
The bias shows up most dangerously at the search stage, before any weighing happens at all. A debugger who suspects the database drops one query into a console, sees a slow number, and stops — never running the query that would have implicated the network instead. The problem isn't that they misjudged the evidence; it's that they only went looking for evidence of one kind. This is why Falsifiability matters as a discipline rather than a philosophy-class abstraction: the useful question isn't "what would confirm my theory" but "what observation would force me to abandon it," and then going and making that observation.
Confirmation bias compounds with Anchoring Effect — the first hypothesis anyone proposes in an incident channel becomes the lens everyone else's search runs through — and with Motte and Bailey, where a belief under threat retreats to a defensible version rather than being tested against the strong version anyone actually acted on. Code Review has its own flavor: a reviewer who already trusts an author reads the diff looking for reasons it's fine, and a reviewer who doesn't trust them reads the same diff looking for reasons it's broken. Neither is reading the diff.
The practical countermeasure is cheap and specific: before accepting an explanation, write down one observation that would disprove it, then go check that observation before checking the ones that would confirm it. This single reordering — falsify first — does more work than any amount of "staying open-minded."
See also5
Falsifiability
A claim is only worth something if you know what observation would refute it.
Method46 connections
Anchoring Effect
A stated number pulls subsequent estimates toward it, regardless of relevance.
Method35 connections
Motte and Bailey
Defending a modest claim while trading on a bolder one made under the same name.
Method13 connections
Ground Truth
The measurement that arbitrates, as opposed to the artifact that merely reports.
Method95 connections
Base Rate Fallacy
judging a specific case from vivid evidence while discounting how common the categories actually are.
Method18 connections
Related2
Nearby in the graph rather than deliberately chosen. Looser, sometimes surprising.
Linked from5
- Availability HeuristicMethod
Judging how likely or common something is by how easily examples come to mind, not by actual frequency.
- Dunning-Kruger EffectMethod
Low skill removes the very ability needed to recognize low skill, inflating self-assessment most at the bottom.
- Filter BubbleMeaning & Society
A personalization system narrows what a person sees to what they already agree with, without their choosing it.
- Illusory Truth EffectMethod
A claim feels more true the more times you've heard it, independent of any evidence for it.
- Occam's RazorMethod
Prefer the explanation with fewer assumptions, not the one that is simplest to state.