Editing
Social Choice 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 Borda Count' (Calculating a winner from ranks):''' <syntaxhighlight lang="python"> def calculate_borda_winner(votes): """ 1st place = 2 pts, 2nd = 1 pt, 3rd = 0 pts """ scores = {'A': 0, 'B': 0, 'C': 0} for vote in votes: scores[vote[0]] += 2 # 1st choice scores[vote[1]] += 1 # 2nd choice # 3rd choice gets 0 return scores # 3 Voters: v1 = ['A', 'B', 'C'] v2 = ['B', 'C', 'A'] v3 = ['C', 'B', 'A'] print(f"Borda Scores: {calculate_borda_winner([v1, v2, v3])}") # Result: B wins (4 pts) even though A, B, and C each had # one '1st place' vote. B wins because they were everyone's 2nd choice. </syntaxhighlight> ; Voting Landmarks : '''The 2000 US Election''' β A classic example of the "Spoiler Effect" (IIA violation), where Ralph Nader's presence potentially changed the outcome between Bush and Gore. : '''Nobel Prize (1972)''' β Kenneth Arrow won the Nobel for proving that "Perfect Democracy" is mathematically impossible. : '''Alaska & Maine''' β The first US states to adopt "Ranked Choice Voting" to try to fix some of the flaws of the standard system. : '''The Jury Theorem''' β Condorcet's positive theory: a group of people is more likely to be right than a single expert, provided each person is at least 51% likely to be right. </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