Smith set

Last updated

The Smithset, [note 1] sometimes called the top-cycle, generalizes the idea of a Condorcet winner to cases where no such winner exists. It does so by allowing cycles of candidates to be treated jointly, as if they were a single Condorcet winner. [1] Voting systems that always elect a candidate from the Smith set pass the Smith criterion. The Smith set and Smith criterion are both named for mathematician John H Smith.

Contents

The Smith set provides one standard of optimal choice for an election outcome. An alternative, stricter criterion is given by the Landau set.

Definition

The Smith set is formally defined as the smallest set such that every candidate inside the set S is pairwise unbeaten by every candidate outside S.

Alternatively, it can be defined as the set of all candidates with a (non-strict) beatpath to any candidate who defeats them.

A set of candidates each of whose members pairwise defeats every candidate outside the set is known as a dominating set. Thus the Smith set is also called the smallest dominating set.

Strict top-cycle (Schwartz set)

The Schwartz set is equivalent to the Smith set, except it ignores tied votes. Formally, the Schwartz set is the set such that any candidate inside the set has a strict beatpath to any candidate who defeats them.

The Smith set can be constructed from the Schwartz set by repeatedly adding two types of candidates until no more such candidates exist outside the set:

Note that candidates of the second type can only exist after candidates of the first type have been added.

Properties

Properties of dominating sets

Theorem: Dominating sets are nested; that is, of any two dominating sets in an election, one is a subset of the other.

Proof: Suppose on the contrary that there exist two dominating sets, D and E, neither of which is a subset of the other. Then there must exist candidates dD,eE such that dE and eD. But by hypothesis d defeats every candidate not in D (including e) while e defeats every candidate not in E (including d), a contradiction. ∎

Corollary: It follows that the Smith set is the smallest non-empty dominating set, and that it is well defined.

Theorem: If D is a dominating set, then there is some threshold θD such that the elements of D are precisely the candidates whose Copeland scores are at least θD. (A candidate's Copeland score is the number of other candidates whom he or she defeats plus half the number of other candidates with whom he or she is tied.)

Proof: Choose d as an element of D with minimum Copeland score, and identify this score with θD. Now suppose that some candidate eD has a Copeland score not less than θD. Then since d belongs to D and e doesn't, it follows that d defeats e; and in order for e's Copeland score to be at least equal to d's, there must be some third candidate f against whom e gets a better score than does d. If fD, then we have an element of D who does not defeat e, and if fD then we have a candidate outside of D whom d does not defeat, leading to a contradiction either way. ∎

The Smith criterion

The Smith criterion is a voting system criterion that formalizes a stronger idea of majority rule than the Condorcet criterion. A voting system satisfies the Smith criterion if it always picks a candidate from the Smith set.

Though less common, the term Smith-efficient has also been used for methods that elect from the Smith set. [3]

Here is an example of an electorate in which there is no Condorcet winner: There are four candidates: A, B, C and D. 40% of the voters rank D>A>B>C. 35% of the voters rank B>C>A>D. 25% of the voters rank C>A>B>D. The Smith set is {A,B,C}. All three candidates in the Smith set are majority-preferred over D (since 60% rank each of them over D). The Smith set is not {A,B,C,D} because the definition calls for the smallest subset that meets the other conditions. The Smith set is not {B,C} because B is not majority-preferred over A; 65% rank A over B. (Etc.)

pro\conABCD
A654060
B357560
C602560
D404040
max opp60657560
minimax6060

In this example, under minimax, A and D tie; under Smith//Minimax, A wins.

In the example above, the three candidates in the Smith set are in a "rock/paper/scissors" majority cycle: A is ranked over B by a 65% majority, B is ranked over C by a 75% majority, and C is ranked over A by a 60% majority.

Other criteria

Any election method that complies with the Smith criterion also complies with the Condorcet winner criterion, since if there is a Condorcet winner, then it is the only candidate in the Smith set. Smith methods also comply with the Condorcet loser criterion, because a Condorcet loser will never fall in the Smith set. It also implies the mutual majority criterion, since the Smith set is a subset of the MMC set. [2] Conversely, any method that fails any of those three majoritarian criteria (Mutual majority, Condorcet loser or Condorcet winner) will also fail the Smith criterion.

Complying methods

The Smith criterion is satisfied by Ranked Pairs, Schulze's method, Nanson's method, and several other methods. Moreover, any voting method can be modified to satisfy the Smith criterion, by finding the Smith set and eliminating any candidates outside of it.

For example, the voting method Smith//Minimax applies Minimax to the candidates in the Smith set. Another example is the Tideman alternative method, which alternates between eliminating candidates outside of the Smith set, and eliminating the candidate who was the plurality loser (similar to instant-runoff), until a Condorcet winner is found. A different approach is to elect the member of the Smith set that is highest in the voting method's order of finish.

Methods failing the Condorcet criterion also fail the Smith criterion. However, some Condorcet methods (such as Minimax) can fail the Smith criterion.

Relation to other tournament sets

The Smith set contains the Copeland set and Landau set as subsets.

It also contains the Banks set and the Bipartisan set. A number of other subsets of the Smith set have been defined as well. [4]

Computing the Smith set

The Smith set can be calculated with the Floyd–Warshall algorithm in time Θ (n3) or Kosaraju's algorithm in time Θ(n2).

Detailed algorithm

The algorithm can be presented in detail through an example. Suppose that the results matrix is as follows:

2nd
1st
ABCDEFGscore
A1111105
B0001001
C01011/2131/2
D0111115
E0000000
F011/201021/2
G1100114

Here an entry in the main table is 1 if the first candidate was preferred to the second by more voters than preferred the second to the first; 0 if the opposite relation holds; and 1/2 if there is a tie. The final column gives the Copeland score of the first candidate.

The algorithm to compute the Smith set is agglomerative: it starts with the Copeland set, which is guaranteed to be a subset of it but will often be smaller, and adds items until no more are needed. The first step is to sort the candidates according to score:

2nd
1st
ADGCFBEscore
A1011115
D0111115
G1001114
C0011/21131/2
F0001/21121/2
B0000011
E0000000

We look at the highest score (5) and consider the candidates (Copeland winners) whose score is at least this high, i.e. {A,D}. These certainly belong to the Smith set, and any candidates whom they do not defeat will need to be added. To find undefeated candidates we look at the cells in the table below the top-left 2×2 square containing {A,D} (this square is shown with a broken border): the cells in question are shaded yellow in the table. We need to find the lowest (positionally) non-zero entry among these cells, which is the cell in the G row. All candidates as far down as this row, and any lower rows with the same score, need to be added to the set, which expands to {A,D,G}.

Now we look at any new cells which need to be considered, which are those below the top-left square containing {A,D,G}, but excluding those in the first two columns which we have already accounted for. The cells which need attention are shaded pale blue. As before we locate the positionally lowest non-zero entry among the new cells, adding all rows down to it, and all rows with the same score as it, to the expanded set, which now comprises {A,D,G,C}.

We repeat the operation for the new cells below the four members which are known to belong to the Smith set. These are shaded pink, and allow us to find any candidates not defeated by any of {A,D,G,C}. Again there is just one, F, whom we add to the set.

The cells which come into consideration are shaded pale green, and since all their entries are zero we do not need to add any new candidates to the set, which is therefore fixed as {A,D,G,C,F}. And by noticing that all the entries in the black box are zero, we have confirmation that all the candidates above it defeat all the candidates within it.

The following C function illustrates the algorithm by returning the cardinality of the Smith set for a given doubled results matrix r and array s of doubled Copeland scores. There are n candidates; ri j is 2 if more voters prefer i to j than prefer j to i, 1 if the numbers are equal, and 0 if more voters prefer j to i than prefer i to j ; si is the sum over j of the ri j . The candidates are assumed to be sorted in decreasing order of Copeland score.

intsmithset(int**r,int*s,intn){introw,col,lhs,rhs;for(rhs=1,lhs=0;lhs<rhs;lhs=rhs,rhs=row+1){for(;rhs<n&&s[rhs]==s[rhs-1];rhs++);/* this line optional */for(col=rhs,row=n;col==rhs&&row>=rhs;row--)for(col=lhs;col<rhs&&r[row-1][col]==0;col++);}returnlhs;}

See also

Notes

  1. Many authors reserve the term "Schwartz set" for the strict Smith set described below.

Related Research Articles

<span class="mw-page-title-main">Condorcet method</span> Pairwise-comparison electoral system

A Condorcet method is an election method that elects the candidate who wins a majority of the vote in every head-to-head election against each of the other candidates, whenever there is such a candidate. A candidate with this property, the pairwise champion or beats-all winner, is formally called the Condorcet winner or Pairwise Majority Rule Winner (PMRW). The head-to-head elections need not be done separately; a voter's choice within any given pair can be determined from the ranking.

<span class="mw-page-title-main">Copeland's method</span> Single-winner ranked vote system

The Copeland or Llull method is a ranked-choice voting system based on counting each candidate's pairwise wins and losses.

<span class="mw-page-title-main">Ranked pairs</span> Single-winner electoral system

Ranked Pairs (RP), also known as the Tideman method, is a tournament-style system of ranked voting first proposed by Nicolaus Tideman in 1987.

<span class="mw-page-title-main">Schulze method</span> Single-winner electoral system

The Schulze method, also known as the beatpath method, is a single winner ranked-choice voting rule developed by Markus Schulze. The Schulze method is a Condorcet completion method, which means it will elect a majority-preferred candidate if one exists. In other words, if most people rank A above B, A will defeat B. Schulze's method breaks cyclic ties by using indirect victories. The idea is that if Alice beats Bob, and Bob beats Charlie, then Alice (indirectly) beats Charlie; this kind of indirect win is called a beatpath.

<span class="mw-page-title-main">Condorcet winner criterion</span> Property of electoral systems

A Condorcet winner is a candidate who would receive the support of more than half of the electorate in a one-on-one race against any one of their opponents. Voting systems where a majority winner will always win are said to satisfy the Condorcet winner criterion. The Condorcet winner criterion extends the principle of majority rule to elections with multiple candidates.

<span class="mw-page-title-main">No-show paradox</span> When voting for a candidate makes them lose

In social choice, a no-show paradox is a surprising behavior in some voting rules, where a candidate loses an election as a result of having too many supporters. More formally, a no-show paradox occurs when adding voters who prefer Alice to Bob causes Alice to lose the election to Bob. Voting systems without the no-show paradox are said to satisfy the participation criterion.

<span class="mw-page-title-main">Majority winner criterion</span> Property of electoral systems

The majority criterion is a voting system criterion applicable to voting rules over ordinal preferences required that if only one candidate is ranked first by over 50% of voters, that candidate must win.

<span class="mw-page-title-main">Multiple districts paradox</span> Property of electoral systems

A voting system satisfies join-consistency if combining two sets of votes, both electing A over B, always results in a combined electorate that ranks A over B. It is a stronger form of the participation criterion. Systems that fail the consistency criterion are susceptible to the multiple-district paradox, which allows for a particularly egregious kind of gerrymander: it is possible to draw boundaries in such a way that a candidate who wins the overall election fails to carry even a single electoral district.

The mutual majority criterion is a criterion for evaluating electoral systems. It is also known as the majority criterion for solid coalitions and the generalized majority criterion. This criterion requires that whenever a majority of voters prefer a group of candidates above all others, then the winner must be a candidate from that group. The mutual majority criterion may also be thought of as the single-winner case of Droop-Proportionality for Solid Coalitions.

<span class="mw-page-title-main">Nanson's method</span> Single-winner electoral system

The Borda count electoral system can be combined with an instant-runoff procedure to create hybrid election methods that are called Nanson method and Baldwin method. Both methods are designed to satisfy the Condorcet criterion, and allow for incomplete ballots and equal rankings.

In single-winner voting system theory, the Condorcet loser criterion (CLC) is a measure for differentiating voting systems. It implies the majority loser criterion but does not imply the Condorcet winner criterion.

<span class="mw-page-title-main">Minimax Condorcet method</span> Single-winner ranked-choice voting system

In voting systems, the Minimax Condorcet method is a single-winner ranked-choice voting method that always elects the majority (Condorcet) winner. Minimax compares all candidates against each other in a round-robin tournament, then ranks candidates by their worst election result. The candidate with the largest (maximum) number of votes in their worst (minimum) matchup is declared the winner.

<span class="mw-page-title-main">Best-is-worst paradox</span> Same candidate placing first and last in a race

In social choice theory, the best-is-worst paradox occurs when a voting rule declares the same candidate to be both the best and worst possible winner. The worst candidate can be identified by reversing each voter's ballot, then applying the voting rule to the reversed ballots find a new "anti-winner".

<span class="mw-page-title-main">Kemeny–Young method</span> Single-winner electoral system

The Kemeny–Young method is an electoral system that uses ranked ballots and pairwise comparison counts to identify the most popular choices in an election. It is a Condorcet method because if there is a Condorcet winner, it will always be ranked as the most popular choice.

<span class="mw-page-title-main">Independence of clones criterion</span> Property of electoral systems

In social choice theory, the independence of (irrelevant) clones criterion says that adding a clone, i.e. a new candidate very similar to an already-existing candidate, should not spoil the results. It can be considered a weak form of the independence of irrelevant alternatives (IIA) criterion that nevertheless is failed by a number of voting rules. A method that passes the criterion is said to be clone independent.

There are a number of different criteria which can be used for voting systems in an election, including the following

The later-no-help criterion is a voting system criterion formulated by Douglas Woodall. The criterion is satisfied if, in any election, a voter giving an additional ranking or positive rating to a less-preferred candidate can not cause a more-preferred candidate to win. Voting systems that fail the later-no-help criterion are vulnerable to the tactical voting strategy called mischief voting, which can deny victory to a sincere Condorcet winner.

<span class="mw-page-title-main">Comparison of voting rules</span> Comparative politics for electoral systems

This article discusses the methods and results of comparing different electoral systems. There are two broad ways to compare voting systems:

  1. Metrics of voter satisfaction, either through simulation or survey.
  2. Adherence to logical criteria.
<span class="mw-page-title-main">Multiwinner voting</span> Process of electing more than one winner in the same election / district

Multiwinner, at-large, or committeevoting refers to electoral systems that elect several candidates at once. Such methods can be used to elect parliaments or committees.

<span class="mw-page-title-main">Round-robin voting</span> Voting systems using paired comparisons

Round-robin, pairedcomparison, or tournamentvoting methods, are a set of ranked voting systems that choose winners by comparing every pair of candidates one-on-one, similar to a round-robin tournament. In each paired matchup, we record the total number of voters who prefer each candidate in a beats matrix. Then, a majority-preferred (Condorcet) candidate is elected, if one exists. Otherwise, if there is a cyclic tie, the candidate "closest" to being a Condorcet winner is elected, based on the recorded beats matrix. How "closest" is defined varies by method.

References

  1. Soh, Leen-Kiat (2017-10-04). "Voting: Preference Aggregating & Social Choice [CSCE475/875 class handout]" (PDF).
  2. 1 2 Brandt, Felix (2009-07-17). "Some Remarks on Dodgson's Voting Rule". Mathematical Logic Quarterly. 55 (4). Wiley: 460–463. doi:10.1002/malq.200810017. ISSN   0942-5616.
  3. Boudet, Samuel (2023-09-06), Bipartisan/Range Voting in Two Rounds Reaches a Promising Balance between Efficiency and Strategy-Resistance, MDPI AG, doi: 10.20944/preprints202309.0388.v1
  4. Brandt, Felix; Brill, Markus; Harrenstein, Paul (2018-01-16). "Extending tournament solutions" (PDF). Social Choice and Welfare. 51 (2). Springer Science and Business Media LLC. doi:10.1007/s00355-018-1112-x. ISSN   0176-1714. For many tournament solutions, generalizations or extensions to weak tournaments have been proposed in the literature

Further reading