Editing
Availability and Representativeness
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}} Availability and Representativeness are two of the most powerful "Mental Shortcuts" (Heuristics) the human brain uses to make quick decisions. Discovered by psychologists Daniel Kahneman and Amos Tversky, these heuristics help us navigate a complex world without overthinking every detail. However, they also lead to predictable errors in judgment. By understanding how our brains prioritize "Memorable" or "Typical" information, we can learn to spot our own biases and make more rational choices in finance, health, and daily life. </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 or "rule of thumb" used to solve problems quickly. * '''Availability Heuristic''' — The tendency to judge the likelihood of an event based on how easily examples come to mind. * '''Representativeness Heuristic''' — The tendency to judge the probability of an event based on how well it matches our "Prototype" or "Stereotype" of that event. * '''Base Rate Neglect''' — Ignoring general statistical information in favor of specific, vivid anecdotes. * '''Salience''' — The quality of being particularly noticeable or important; salient events are more "available" in memory. * '''Conjunction Fallacy''' — The mistaken belief that two specific conditions are more likely than a single general one (The "Linda Problem"). * '''Sample Size Neglect''' — The failure to realize that small samples are more likely to have extreme or unrepresentative results. * '''Cognitive Bias''' — A systematic pattern of deviation from norm or rationality in judgment. * '''Daniel Kahneman & Amos Tversky''' — The pioneers of behavioral economics who mapped these heuristics. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Availability and Representativeness are understood through '''Memory Recall''' and '''Pattern Matching'''. '''1. The Availability Heuristic (Memory)''': Your brain asks: "Can I think of an example of this?" * If it's easy to remember (because it was on the news or it was scary), your brain thinks it happens all the time. * '''Example''': People are often more afraid of shark attacks (vivid and scary) than falling out of bed (boring), even though falling out of bed is statistically much more dangerous. '''2. The Representativeness Heuristic (Prototypes)''': Your brain asks: "Does this look like what I expect?" * We judge people and events based on how well they fit a "Stereotype" rather than looking at the actual math. * '''Example''': If you meet a tall, athletic person, you might assume they play basketball. This is representativeness—they fit your "Prototype" of a basketball player. '''3. Why We Use Them''': * '''Speed''': Evolutionarily, it was better to run from a "Representatively Scary" bush than to do a statistical analysis of whether a tiger was actually there. * '''Efficiency''': Our brains have limited energy. Heuristics save "Computing Power" for the most important tasks. '''The Linda Problem''': This is the most famous experiment in representativeness. Participants are told "Linda" is interested in social justice and philosophy. They are then 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 people pick B, even though B is statistically impossible to be more likely than A (since B is a subset of A). </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Availability Bias' (Judging risk based on recent news):''' <syntaxhighlight lang="python"> def estimate_risk(recent_news_mentions, actual_base_rate): """ Shows how 'Availability' (News) warps our perception of 'Risk'. """ # Heuristic impact: If news mentions are high, perceived risk increases perceived_risk = actual_base_rate * (1 + (recent_news_mentions * 2)) return { "Actual Risk": f"{actual_base_rate * 100:.4f}%", "Perceived Risk": f"{perceived_risk * 100:.4f}%", "Error Factor": f"{perceived_risk / actual_base_rate:.1f}x higher" } # Shark attacks: Very rare, but high news coverage sharks = estimate_risk(recent_news_mentions=10, actual_base_rate=0.000001) print(f"Shark Attack Bias: {sharks['Error Factor']}") # Flu: Common, but low news coverage flu = estimate_risk(recent_news_mentions=0.1, actual_base_rate=0.10) print(f"Flu Bias: {flu['Error Factor']}") </syntaxhighlight> ; Heuristic Landmarks : '''Thinking, Fast and Slow''' → Daniel Kahneman's best-selling book explaining "System 1" (Fast, heuristic) vs "System 2" (Slow, logical) thinking. : '''The 1970s Studies''' → The original experiments that proved people are "Predictably Irrational." : '''Lottery Sales''' → A classic application of the availability heuristic; people buy tickets because they see "Vivid Winners" on TV, ignoring the "Invisible Millions" of losers. : '''Medical Diagnosis''' → Doctors can fall into the representativeness trap by assuming a patient has a "Classic" disease while ignoring a more likely but "Non-typical" one. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Availability vs. Representativeness ! Feature !! Availability !! Representativeness |- | Question Asked || "Is it easy to remember?" || "Does it fit the pattern?" |- | Source of Error || Recent / Vivid / Emotional events || Stereotypes / Prototypes |- | Mathematical Failure || Ignored Frequency || Ignored Base Rates |- | Real-World Example || Fearing planes after a crash || Assuming a quiet person is a librarian |} '''The Concept of "Base Rate Neglect"''': Analyzing why we ignore the "Big Picture" statistics in favor of a "Good Story" is the key to mastering heuristics. Even experts fall for this: a doctor might see a "Typical" symptom of a rare disease and forget that the common disease is 1,000 times more likely. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating heuristics: # '''Survival Value''': Are these shortcuts still helpful in the 21st century? (Sometimes, but often they cause errors in modern environments like the stock market). # '''Ethics''': Does the representativeness heuristic fuel social prejudice and racism? (Yes—it is the psychological engine of stereotyping). # '''Correction''': Can we "Think our way out" of these biases? (Kahneman suggests it is very difficult; we need "System 2" check-lists to help). # '''Complexity''': Does the brain have other heuristics we haven't discovered yet? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''De-biasing Software''': AI assistants that watch our decision-making and alert us when we are using a "Lazy" heuristic. # '''Choice Architecture''': Designing public spaces and websites (Nudges) that account for human heuristics to help people save more money or eat healthier. # '''Algorithmic Fairness''': Ensuring that AI models don't "Learn" human representativeness biases (Stereotypes) from training data. # '''Heuristic-Inspired AI''': Building "Fast-thinking" AI that can make 80% correct decisions with 1% of the energy cost of a full neural network. [[Category:Psychology]] [[Category:Behavioral Economics]] [[Category:Cognitive Science]] </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