Editing
Confirmation Bias
(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 Confirmation Filter' (Simulating a social media feed):''' <syntaxhighlight lang="python"> def simulate_feed(user_belief, new_posts): """ Shows how we 'Accept' or 'Reject' info based on bias. """ feed_quality = 0 accepted_info = [] for post in new_posts: # If the post matches the belief, we 'Like' it and believe it if post['slant'] == user_belief: accepted_info.append(post['text']) feed_quality += 1 else: # If it contradicts, we ignore it or get angry pass return { "User Viewpoint": user_belief, "Information Consumed": len(accepted_info), "Bias Strength": f"{feed_quality} confirmations added" } posts = [ {'slant': 'A', 'text': 'Fact supporting A'}, {'slant': 'B', 'text': 'Fact supporting B'}, {'slant': 'A', 'text': 'Another point for A'}, ] # User who likes A sees a very different world than User B print(simulate_feed('A', posts)) </syntaxhighlight> ; Bias Landmarks : '''The 'Wason Selection' Task''' β A famous logic puzzle where 90% of people fail because they try to "Confirm" a rule instead of "Falsifying" it. : '''Scientific Peer Review''' β A system designed specifically to combat confirmation bias by forcing scientists to have their work checked by rivals. : '''Investigative Journalism''' β The practice of "Checking your own bias" before publishing a story to ensure you aren't just seeing what you want to see. : '''The Challenger Disaster''' β A tragic example where engineers ignored "Warning Signs" of failure because they were focused on "Confirming" that the launch was safe. </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