Editing
Evolutionary Game Theory
(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 Hawk-Dove Game' (Finding the ESS):''' <syntaxhighlight lang="python"> def simulate_generation(p_hawks, v=50, c=100): """ V = Value of resource, C = Cost of injury Shows how hawk/dove frequencies change. """ p_doves = 1 - p_hawks # Payoff Matrix: # Hawk vs Hawk: (V-C)/2 # Hawk vs Dove: V # Dove vs Hawk: 0 # Dove vs Dove: V/2 fitness_hawk = p_hawks * ((v-c)/2) + p_doves * v fitness_dove = p_hawks * 0 + p_doves * (v/2) # If Hawk fitness is higher, p_hawks grows in next gen return { "Hawk Fitness": fitness_hawk, "Dove Fitness": fitness_dove, "Trend": "More Hawks" if fitness_hawk > fitness_dove else "More Doves" } # If Hawks are rare (10%): print(f"Rare Hawks: {simulate_generation(0.1)}") # If Hawks are common (90%): print(f"Common Hawks: {simulate_generation(0.9)}") # The ESS is where Hawk Fitness == Dove Fitness. </syntaxhighlight> ; Evolutionary Landmarks : '''The Evolution of Cooperation (1981)''' โ Robert Axelrod's tournament that proved "Tit-for-Tat" is the most successful long-term strategy in a competitive world. : '''The Selfish Gene (1976)''' โ Richard Dawkins's book that popularized the idea that "Genes," not "Individuals," are the true players in the game of life. : '''Bacterial 'Cheating'''' โ Scientists have seen bacteria "Evolve" to be selfish, but then "Evolve" to cooperate again when the selfish ones kill the whole colony. : '''Human Fairness''' โ Evolutionary game theory explains why humans have an "Instinct" for fairnessโit's a strategy that helped our ancestors survive in small tribes. </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