Condorcet Criterion

In the earlier post, we saw how the plurality method of voting works. In the plurality method, the choice with the most first preference votes is declared the winner. In the example, the library won the election event (with 66 out of 150 first-choice votes), although it did not get a majority.

# Voters412513263015
1st ChoiceLLFFCC
2nd ChoiceFC LCFL
3rd ChoiceCFCLLF

Condorcet criterion

If there is a winner in this case that wins every one-to-one comparison, we call it a Condorcet winner. Let’s find out who the Condorcet winner is in the earlier example.

Step 1: Ignore the one not in the comparison
Step 2: Add all votes of each
Step 3: The one that has the most votes is the winner of the matchup

L vs F

# Voters412513263015
1st ChoiceLLFF
2nd ChoiceFLFL
3rd ChoiceFLLF

L is preferred over F by 41 + 25 + 15 = 81 votes
F is preferred over L by 13 + 26 + 30 = 69 votes
L wins the matchup

C vs F

# Voters412513263015
1st ChoiceFFCC
2nd ChoiceFC CF
3rd ChoiceCFCF

C = 25 + 30 + 15 = 70
F = 41 + 13 + 26 = 80
F wins

L vs C

# Voters412513263015
1st ChoiceLLCC
2nd ChoiceC LCL
3rd ChoiceCCLL

L = 41 + 25 + 13 = 79
C = 26 + 30 + 15 = 71
L wins

Since L wins both its one-to-one comparisons, it becomes the Condorcet winner.