26 Condorcet Consistent Voting Methods
A voting method is Condorcet consistent if it always selects only the Condorcet winner whenever one exists. In this section, we introduce three voting methods that satisfy this property. These methods elect the same winner when a Condorcet winner exists but may choose different winners when there is no Condorcet winner.
26.1 Copeland
Say that the win-loss record for a candidate
Any candidate with the largest win-loss record is a Copeland winner.
Consider the following election that produces the majority graph on the right:
To find the Copeland winners, calculate the win-loss records of each candidate:
- The win-loss record of
is since is majority preferred to and both and are majority preferred to . - The win-loss record of
is since is majority preferred to both and , and is majority preferred to . - The win-loss record of
is since is majority preferred to both and , and is majority preferred to . - The win-loss record of
is since is majority preferred to and both and are majority preferred to .
Since
26.2 Minimax
Consider the following margin graph for the top three candidates from the 2007 Glasgow City Council election (see https://github.com/voting-tools/election-analysis/blob/main/glasgow_govan_2007.ipynb for a detailed analysis of this election):
All candidates are tied according to Copeland, as each candidate’s win-loss record is 0. However, if we must select a single winner based on pairwise comparisons, Dornan clearly stands out as the best choice. Dornan has both the smallest head-to-head loss of 21 to Hunter and the largest head-to-head win of 602 over Flanagan.
To transform this observation into a voting method, we need to address two key questions:
- What should we prioritize if no single candidate has both the smallest head-to-head loss and the largest head-to-head win—should we focus on minimizing losses or maximizing wins?
- In elections with more than three candidates, a candidate may have multiple losses. How should we aggregate these losses to determine the winner?
The Minimax voting method addresses these questions as follows by focusing on identifying candidates that minimize their largest loss. It selects a winner as follows:
- For each candidate, identify their largest head-to-head loss in the pairwise comparisons against every other candidate.
- A candidate with the smallest largest loss is declared a Minimax winner.
Note that constructing the margin graph for the election is the most effective way to identify the Minimax winner. To illustrate, consider the following margin graph for an election with four candidates, where the largest loss for each candidate is highlighted:
To find the Minimax winner, we identify the largest head-to-head loss for each candidate:
loses to by a margin of 3, so its largest loss is 3. loses to by a margin of 5, so its largest loss is 5. loses to by a margin of 1 and to by a margin of 3, so its largest loss is 3. loses to by a margin of 1 and to by a margin of 1, so its largest loss is 1.
Since
This example also highlights the difference between Minimax and Copeland. The Copeland winners are
26.3 Split Cycle
Consider the following margin graph for an election with four candidates:
In this election,
Split Cycle is a voting method that combines the strengths of both Minimax and Copeland. To determine the Split Cycle winners, follow these steps:
- In each majority cycle, identify the wins with the smallest margin in that cycle.
- After completing step 1 for all cycles, discard the identified wins. All remaining wins count as defeats.
- The candidates that are not defeated by any other candidate are the Split Cycle winners.
In the margin graph above, there is one majority cycle:
The resulting graph is shown below, where each edge from one candidate to another is labeled with a
Since