Editing
The Cold War
(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 Prisoner's Dilemma in Nuclear Strategy:''' <syntaxhighlight lang="python"> def nuclear_game(choice_a, choice_b): """ Simulates the logic of the arms race. Choices: 'disarm' or 'build' """ # Payoff: (Survival/Security Score) payoffs = { ('disarm', 'disarm'): (10, 10), # Peace (High score) ('build', 'disarm'): (15, -10), # Dominance for A, Vulnerability for B ('disarm', 'build'): (-10, 15), # Vulnerability for A, Dominance for B ('build', 'build'): (0, 0) # MAD / Tension (Low score) } return payoffs[(choice_a, choice_b)] # The "Rational" choice for each side individually is to 'build', # because it avoids the -10 outcome. This leads to both choosing 'build' (Nash Equilibrium), # resulting in (0, 0) instead of the socially optimal (10, 10). print(f"Outcome of mutual distrust: {nuclear_game('build', 'build')}") </syntaxhighlight> ; Turning Points : '''1948: Berlin Airlift''' β The first major confrontation of the Cold War. : '''1950-53: Korean War''' β The first major proxy war. : '''1957: Sputnik''' β Start of the Space Race. : '''1962: Cuban Missile Crisis''' β The peak of nuclear tension. : '''1969: Moon Landing''' β US victory in the Space Race. : '''1989: Fall of the Berlin Wall''' β The symbolic end. </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