Editing
Availability and Representativeness
(section)
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!
== <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;">
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)
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