Editing
Behavioral Economics
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}} Behavioral Economics is a method of economic analysis that applies psychological insights into human behavior to explain economic decision-making. While classical economics assumes a "Rational Agent" (Homo Economicus) who makes consistent, self-interested, and perfectly calculated choices, behavioral economics recognizes that real humans have limited willpower, are influenced by social norms, and use mental shortcuts that lead to systematic biases. By bridging the gap between psychology and economics, this field provides a more realistic framework for understanding market behavior, consumer choice, and the effectiveness of public policy. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Behavioral Economics''' β The study of psychological, social, cognitive, and emotional factors on economic decisions. * '''Nudge''' β A subtle change in choice architecture that steers people toward a better decision without restricting options. * '''Heuristic''' β A mental shortcut used to make quick, often efficient, but sometimes biased decisions. * '''Anchoring''' β Relying too heavily on an initial piece of information (the "anchor") when making judgments. * '''Loss Aversion''' β The tendency to feel the pain of a loss twice as strongly as the joy of an equivalent gain. * '''Framing Effect''' β How the presentation of information (e.g., "90% lean" vs "10% fat") influences choice. * '''Endowment Effect''' β Valuing something more highly simply because you own it. * '''Sunk Cost Fallacy''' β Continuing to invest in a losing project because of past investments that cannot be recovered. * '''Confirmation Bias''' β Seeking out information that confirms our existing beliefs while ignoring contradictory evidence. * '''Hyperbolic Discounting''' β The tendency to prefer smaller, immediate rewards over larger, delayed ones. * '''Bounded Rationality''' β The idea that our ability to make rational decisions is limited by our cognitive capacity and time. * '''Choice Architecture''' β The design of different ways in which choices can be presented to consumers. * '''Status Quo Bias''' β The preference for the current state of affairs and resistance to change. * '''Mental Accounting''' β Treating money differently based on its source or intended use (e.g., "gift" money vs. "salary"). </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Behavioral economics challenges the "perfect" world of classical models. '''System 1 and System 2''': Proposed by Daniel Kahneman. System 1 is fast, instinctive, and emotional (intuition). System 2 is slower, more deliberative, and logical. Most economic models assume we use System 2, but in reality, we often rely on System 1, which leads to predictable biases. '''Reference Points''': We don't judge wealth in absolute terms but relative to a reference point (usually our current state or a social peer). This explains why a person with $1M can feel "poor" in a neighborhood of billionaires. '''Social Preferences''': Humans are not purely selfish. We care about fairness, reciprocity, and social standing. This is demonstrated in the "Ultimatum Game," where people often reject "free money" if they feel the offer is insultingly unfair. '''Intertemporal Choice''': We struggle with consistency over time. Our "present self" wants the donut, while our "future self" wants the health. Classical models assume we have a constant discount rate; behavioral models use "hyperbolic discounting" to explain why we procrastinate and fail to save for retirement. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Implementing a Nudge (Default Effect):''' <syntaxhighlight lang="python"> def simulate_enrollment(population_size, default_option='out'): """ Demonstrates the power of defaults in a retirement plan. 'out': Employees must manually join (Opt-in). 'in': Employees are automatically joined (Opt-out). """ import random enrollment_count = 0 # Inertia factor: probability a person does nothing inertia = 0.7 for _ in range(population_size): did_nothing = random.random() < inertia if default_option == 'in': if did_nothing: enrollment_count += 1 else: # Active choice: some might still leave if random.random() > 0.1: enrollment_count += 1 else: # default is out if did_nothing: pass else: # Active choice: some might join if random.random() < 0.3: enrollment_count += 1 return (enrollment_count / population_size) * 100 print(f"Enrollment rate (Opt-in): {simulate_enrollment(1000, 'out'):.1f}%") print(f"Enrollment rate (Opt-out): {simulate_enrollment(1000, 'in'):.1f}%") # The 'Nudge' of changing the default dramatically increases the savings rate. </syntaxhighlight> ; Practical Applications : '''Finance''' β "Save More Tomorrow" (SHeP) programs that commit future raises to savings. : '''Public Health''' β Placing healthy food at eye level in cafeterias. : '''Environmental Policy''' β Making "green" energy the default for new utility customers. : '''Marketing''' β Using "decoy" options to make a target product look like a better deal. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Classical vs. Behavioral Economics ! Concept !! Classical (Econ) !! Behavioral (Human) |- | Goal || Maximize utility || Satisfice (find "good enough") |- | Information || Perfect & complete || Limited & filtered |- | Time || Consistent discounting || Impulsive / Procrastinating |- | Self-Interest || Purely selfish || Fair & social |- | Errors || Random noise || Systematic and predictable |} '''The Endowment Effect''': Why is it so hard to sell your old car for its "fair" market price? Once you own something, it becomes part of your identity. This creates a "gap" between what a buyer is willing to pay and what a seller is willing to accept, which can cause markets to freeze. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating behavioral insights: # '''Replicability''': Some famous behavioral effects have struggled to replicate in larger studies. # '''Welfare Impacts''': Are "nudges" manipulative (paternalism), or do they help people achieve their own goals? # '''Market Forces''': Do these biases disappear in competitive markets where "irrational" players lose money? # '''Cultural Variation''': Are these biases universal, or are they specific to "WEIRD" (Western, Educated, Industrialized, Rich, Democratic) societies? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Directions: # '''Personalized Nudging''': Using AI to tailor interventions to an individual's specific psychological profile. # '''Neuroeconomics''': Mapping the brain's reward circuits (the striatum) to understand the "valuation" of choices in real-time. # '''Behavioral Finance 2.0''': Designing "guardrails" for retail investors in high-volatility environments like crypto. # '''Boosting vs. Nudging''': Teaching people "heuristics" that actually work (Gigerenzer) rather than just steering them via defaults. [[Category:Economics]] [[Category:Psychology]] [[Category:Behavioral 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