Editing
Anchoring and Framing
(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 Anchoring Effect' (Negotiating a Salary):''' <syntaxhighlight lang="python"> def simulate_negotiation(initial_anchor, actual_value): """ Shows how the first number mentioned 'Pulls' the final result. """ # Simple model: Final result is the average of value and anchor final_price = (initial_anchor + actual_value) / 2 impact = ((final_price / actual_value) - 1) * 100 return { "Anchor": initial_anchor, "Actual Value": actual_value, "Final Agreed": round(final_price, 2), "Bias Impact": f"{impact:+.1f}%" } # High anchor (Asking for too much) high = simulate_negotiation(100000, 80000) print(f"High Anchor Result: {high['Final Agreed']} ({high['Bias Impact']})") # Low anchor (The boss offers first) low = simulate_negotiation(60000, 80000) print(f"Low Anchor Result: {low['Final Agreed']} ({low['Bias Impact']})") </syntaxhighlight> ; Context Landmarks : '''Menu Engineering''' β Restaurants place an "Extremely Expensive" item at the top of the menu to act as an anchor, making the other dishes seem reasonably priced. : '''Charity Donations''' β When a website asks for "$50, $100, $500," they are anchoring you toward a higher donation than if they left the box empty. : '''Product Labels''' β "Save 50%" is a framing trick; it focuses your mind on the "Gain" (saving) rather than the "Loss" (spending the other 50%). : '''Gas Stations''' β Charging more for credit is seen as a "Penalty," but giving a "Cash Discount" is seen as a "Reward." Most stations use the discount frame because customers hate penalties. </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