Editing
Game Theory
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}} Game Theory is the mathematical study of strategic interaction among rational decision-makers. It provides a formal framework for analyzing situations where the outcome for one individual depends not only on their own choices but also on the choices of others. Developed mid-20th century by mathematicians like John von Neumann and John Nash, game theory has become essential in economics, evolutionary biology, political science, and artificial intelligence. Whether modeling a price war between companies, an arms race between nations, or the evolution of altruism in nature, game theory reveals the deep logic of cooperation and competition. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Game Theory''' β The study of mathematical models of strategic interaction. * '''Player''' β A decision-maker in a game. * '''Strategy''' β A complete plan of action for a player in a game. * '''Payoff''' β The reward or outcome a player receives at the end of a game. * '''Nash Equilibrium''' β A state in which no player can improve their payoff by unilaterally changing their strategy. * '''Zero-Sum Game''' β A situation in which one person's gain is exactly equal to another's loss. * '''Prisoner's Dilemma''' β A standard example of a game that shows why two rational individuals might not cooperate, even if it appears in their best interest to do so. * '''Dominant Strategy''' β A strategy that is better for a player regardless of what the other players do. * '''Sequential Game''' β A game where players take turns (e.g., Chess). * '''Simultaneous Game''' β A game where players make decisions at the same time (e.g., Rock-Paper-Scissors). * '''Information Set''' β What a player knows about the state of the game and others' moves. * '''Mixed Strategy''' β A strategy where a player chooses their action randomly based on certain probabilities. * '''Evolutionary Stable Strategy (ESS)''' β A strategy that, if adopted by a population, cannot be invaded by a rare alternative strategy. * '''Mechanism Design''' β "Reverse game theory": creating rules/incentives to achieve a desired outcome. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Game theory shifts the focus from "what is the best for me?" to "what is the best for me, ''given'' what you are likely to do?" '''The Nash Equilibrium''': The most important concept in the field. John Nash proved that in any game with a finite number of players and strategies, there exists at least one equilibrium. In this state, the players are in a "stalemate" where no one wants to move first. This doesn't mean the outcome is ''good'' (as seen in the Prisoner's Dilemma), only that it is stable. '''Cooperation vs. Defection''': Game theory explains why cooperation is hard but possible. * '''One-Shot Games''': Often lead to defection (cheating) because there is no penalty. * '''Iterated Games''': If players interact repeatedly, they can use "Tit-for-Tat" strategiesβcooperating initially and then mimicking the other player's previous move. This builds trust and punishes cheating. '''Common Archetypes''': * '''The Stag Hunt''': A game of coordination. We both catch the deer if we work together; if one of us chases a rabbit, we both go home with less. * '''Chicken''': A game of brinkmanship. If neither swerves, we both crash. If one swerves, they are the "chicken." * '''Matching Pennies''': A zero-sum game with no stable pure strategy, requiring mixed strategies (unpredictability). </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Simulating the Prisoner's Dilemma Tournament:''' <syntaxhighlight lang="python"> def play_round(strat_a, strat_b, history_a, history_b): """ Returns (payoff_a, payoff_b) for a single round. 'C' = Cooperate, 'D' = Defect """ move_a = strat_a(history_b) move_b = strat_b(history_a) payoffs = { ('C', 'C'): (3, 3), # Reward for mutual cooperation ('C', 'D'): (0, 5), # Sucker's payoff / Temptation ('D', 'C'): (5, 0), # Temptation / Sucker's payoff ('D', 'D'): (1, 1) # Punishment for mutual defection } return move_a, move_b, payoffs[(move_a, move_b)] # Strategies def always_defect(opponent_history): return 'D' def tit_for_tat(opponent_history): if not opponent_history: return 'C' return opponent_history[-1] # Tournament history_a, history_b = [], [] total_a, total_b = 0, 0 for _ in range(5): ma, mb, (pa, pb) = play_round(always_defect, tit_for_tat, history_a, history_b) history_a.append(ma); history_b.append(mb) total_a += pa; total_b += pb print(f"Total Scores - Defector: {total_a}, Tit-for-Tat: {total_b}") # Tit-for-Tat is 'nice' but 'provocable'βit forces cooperation in the long run. </syntaxhighlight> ; Areas of Impact : '''Biology''' β Explaining why animals don't always fight to the death (Hawk-Dove game). : '''Business''' β Pricing strategies in an oligopoly (Coca-Cola vs. Pepsi). : '''Diplomacy''' β Designing nuclear treaties and trade agreements. : '''Computer Science''' β Analyzing congestion in networks (selfish routing). </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Strategic Situations ! Game !! Incentive !! Outcome |- | Coordination (Stag Hunt) || Mutual benefit || High trust = High reward |- | Competition (Zero-Sum) || Direct conflict || One wins, one loses |- | Dilemma (Prisoner's) || Individual temptation || Mutual loss if untrusting |- | Brinkmanship (Chicken) || Forcing the other to yield || Extreme risk for both |} '''The Tragedy of the Commons''': A multi-player prisoner's dilemma. If every farmer grazes one extra cow on the public land, everyone's profit goes up slightly. But if ''everyone'' does it, the land is overgrazed and everyone's cows die. Game theory suggests that without regulation or social norms (shaming), rational individuals will inevitably destroy a shared resource. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating game models: # '''Predictive power''': Do real people actually reach the Nash Equilibrium in a lab? (Often they are more cooperative than theory suggests). # '''Computational complexity''': Some equilibria are so hard to calculate that it's unlikely real-world agents could find them (P vs NP in game theory). # '''Assumptions of Rationality''': How does the model change if we assume players are emotional or have limited processing power? # '''Incentive Alignment''': Does the mechanism actually produce the desired social outcome? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future of Strategic Logic: # '''Algorithmic Game Theory''': Designing auctions (like Google Ads or 5G spectrum) that are resistant to manipulation. # '''Multi-Agent Reinforcement Learning (MARL)''': Training AI agents to cooperate or compete in complex environments (e.g., self-driving cars merging in traffic). # '''Blockchain Governance''': Using game theory (cryptoeconomics) to ensure that a decentralized network remains secure without a central authority. # '''Global Cooperation''': Modeling and solving the "Global Commons" problem of climate change. [[Category:Economics]] [[Category:Mathematics]] [[Category:Logic]] </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