Editing
Heuristics and Biases
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Heuristics and Biases is the "Study of the Shortcuts"βthe investigation of the "Mental Rules of Thumb" (Heuristics) that the "Human Brain" uses to "Make Fast Decisions" and the "Systematic Errors" (Biases) that "Result" from them. While "Logic" (see Article 111) is "Slow," **Heuristics** are "Fast." From "Anchoring" and "Availability" to "Representativeness" and the "Confirmation Bias," this field explores the "Architecture of Error." It is the science of "Cognitive Economy," explaining why we "Fear" "Sharks" more than "Cars"βand how our "Intuition" "Fails" in a "Complex, Modern World." </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Heuristic''' β A "Mental Shortcut" that allows for "Fast," "Frugal" decision-making (e.g., 'If it's expensive, it must be good'). * '''Cognitive Bias''' β A "Systematic Deviation" from "Rationality" in "Judgment" (A 'Predictable Error'). * '''Anchoring''' β The "Bias" where people "Rely Too Heavily" on the "First Piece of Information" (The 'Anchor') they receive (e.g., 'The first price mentioned in a negotiation'). * '''Availability Heuristic''' β The "Bias" where people "Estimate Probability" based on "How Easily" an "Example" comes to "Mind" (e.g., 'Fearing plane crashes because they are on the news'). * '''Representativeness Heuristic''' β "Judging" the "Likelihood" of an event based on "How Well it Matches" a "Stereotype" (e.g., 'The Linda Problem'). * '''Confirmation Bias''' β The "Tendency" to "Seek Out," "Interpret," and "Remember" information that "Supports" our "Existing Beliefs." * '''Hindsight Bias''' β The "Tendency" to "Believe" that an event was "Predictable" "After it has Happened" ('I knew it all along'). * '''Overconfidence Bias''' β The "Tendency" to "Overestimate" our "Knowledge," "Ability," and "Precision." * '''Sunk Cost Fallacy''' β The "Bias" where we "Continue" an "Activity" (like 'Watching a bad movie') because we have already "Invested" "Time or Money" in it. * '''Dunning-Kruger Effect''' β The "Bias" where "Incompetent People" "Believe they are Experts," while "Experts" "Underestimate" their "Relative Skill." </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Heuristics and biases are understood through '''Speed''' and '''Mismatch'''. '''1. The "Efficient" Brain (System 1)''': Why do we have "Biases" at all? * (See Article 616). **System 1** is "Always On." * It must "Make Decisions" in "Milliseconds" to "Keep us Alive." * **Heuristics** are "Good Enough" for **95% of Life.** * If you see "Movement" in the "Grass," you don't "Calculate Probability"βyou **"Run."** * "Bias" is the "Price" of **"Speed."** '''2. The "Modern" Mismatch (Evolution)''': Why do we fear "The Wrong Things"? * Our "Brain" evolved in the **"Savanna"** (see Article 571). * In the Savanna, **"Availability"** (What you saw recently) was a "Great Way" to "Learn about Danger." * In the **"Modern World"**, "The News" (see Article 542) "Floods" our brain with "Rare Disasters." * Our "Savanna Brain" thinks these "Rare Events" are "Everywhere." * We have **"Primitive Software"** running on **"High-Tech Hardware."** '''3. The "Anchor" of the Mind (Comparison)''': The "Relativity" of Value. * If a "Shirt" costs **$100**, you think it's "Expensive." * If you see a **$500** shirt first, and then the **$100** shirt is "On Sale," you think it's a **"Bargain."** * The "Brain" is **"Terrible"** at "Absolute Measurement" but **"Great"** at "Comparison." * "Marketers" use this "Anchor" to "Control" your "Perception of Value." '''The 'Linda Problem' ''': A classic experiment. "Linda is 31, outspoken, and concerned with social justice." People were asked if it's more likely that: (A) Linda is a Bank Teller, or (B) Linda is a Bank Teller **and** active in the Feminist Movement. Most chose (B), even though (A) **must** be more likely (since B is a subset of A). It proved that "Narrative" (Representativeness) "Trumps" "Math" in the human mind. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Anchoring Effect' (Predicting 'Valuation'):''' <syntaxhighlight lang="python"> def estimate_value_with_anchor(true_value, anchor_value, susceptibility_pct): """ Shows how 'Irrelevant Numbers' pull our estimates. """ # Estimate is pulled toward the anchor pull_strength = susceptibility_pct / 100 estimated_value = true_value + (anchor_value - true_value) * pull_strength error = abs(estimated_value - true_value) return f"ESTIMATED VALUE: ${round(estimated_value, 2)}. (Error due to Anchor: ${round(error, 2)})." # Case: Estimating the price of a house ($500k) after seeing a 'High Anchor' ($800k) print(estimate_value_with_anchor(500000, 800000, 30)) </syntaxhighlight> ; Heuristic Landmarks : '''The 'Availability' of Fear''' β Why people are "Afraid of Sharks" (1 death/year) but not "Ladders" (300 deaths/year): because "Sharks" make for "Better Movies." : '''The 'Halo Effect' ''' β The "Bias" where we "Assume" that because someone is "Good-looking" or "Famous," they are also "Smart" or "Kind." : '''Self-Serving Bias''' β The "Tendency" to "Take Credit" for "Success" but "Blame the Environment" for "Failure." : '''The 'Planning Fallacy' ''' β The "Bias" where we "Underestimate" "How Long" a task will take (e.g. 'Every construction project ever'). </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Heuristic vs. Algorithm ! Feature !! Heuristic (The Shortcut) !! Algorithm (The Logic) |- | Speed || "Instant / Intuitive" || "Slow / Calculated" |- | Accuracy || "Variable / Error-prone" || "Precise / Consistent" |- | Effort || "Low / Automatic" || "High / Conscious" |- | Best For || "Survival / Socializing" || "Science / Math / Finance" |- | Analogy || A 'Hunch' || A 'Calculator' |} '''The Concept of "De-biasing"''': Analyzing "The Cure." Can we "Stop" being biased? Research shows that **"Knowing"** about a bias "Hardly Helps." You cannot "Turn Off" System 1. The only "Cure" is **"Checklists"** and **"External Systems"** (see Article 602) that "Force" you to use **"System 2."** "Don't trust your brain; trust your process." </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating Heuristics and Biases: # '''Rationality''': Is "Bias" "Truly Irrational"? (Is it 'Rational' to 'Save Time' even if you make 'Small Errors'?). # '''Justice''': (See Article 560). How do "Heuristics" lead to "Stereotyping" and "Systemic Racism"? # '''Politics''': How does "Confirmation Bias" create "Echo Chambers" (see Article 542) and "Polarization"? # '''Impact''': Why do "Doctors" and "Judges" make "Predictable Errors" based on the "Time of Day"? (The 'Noise' problem). </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''The 'Bias-Correction' HUD''': AR glasses that "Highlight" "Anchors" and "Confirmation Bias" in "Real-Time" during a "Meeting." # '''Personal 'Logic' AI-Partner''': (See Article 08). An AI that "Monitors your Thoughts" and "Interrupts" when you are "Falling" for a "Heuristic." # '''Global 'Evidence' Markets''': A "Platform" that "Rewards" people for "Finding Information" that **"Contradicts"** their "Beliefs," "Fighting" "Confirmation Bias." # '''Automated 'Hindsight' Log''': A "Digital Journal" that "Records" your "Actual Predictions" before an event, "Preventing" your "Brain" from "Rewriting History" after. [[Category:Arts]] [[Category:Science]] [[Category:Psychology]] [[Category:Behavioral Economics]] [[Category:Decision Science]] [[Category:Philosophy]] [[Category:Logic]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information