| A jointPolitics andEconomics series |
| Social choice andelectoral systems |
|---|
By results of combination By mechanism of combination By ballot type |
TheSchulze method (/ˈʃʊltsə/), also known as thebeatpath method, is asingle winnerranked-choice voting rule developed by Markus Schulze. The Schulze method is aCondorcet completion method, which means it will elect amajority-preferred candidate if one exists. In other words, if most people rankA aboveB,A will defeatB (whenever this is possible). Schulze's method breakscyclic ties by using indirect victories. The idea is that ifAlice beats Bob, and Bob beats Charlie, then Alice (indirectly) beats Charlie; this kind of indirect win is called a "beatpath".
The Schulze method is used by several organizations includingDebian,Ubuntu,Gentoo,Pirate Party political parties andmany others. It was also used byWikimedia prior to their adoption ofscore voting.

Schulze's method usesranked ballots with equal ratings allowed. There are two common (equivalent) descriptions of Schulze's method.
The idea behind Schulze's method is that ifAlice defeats Bob, and Bob beats Charlie, then Alice "indirectly" defeats Charlie. These chained sequences of "beats" are called 'beatpaths'.
Every beatpath is assigned a particularstrength. The strength of a single-step beatpath from Alice to Bob is just the number of voters who rank Alice over Bob. For a longer beatpath, consisting of multiple beats, a beatpath is as strong as its weakest link (i.e. the beat with the smallest number of winning votes).
We say Alice has a "beatpath-win" over Bob if her strongest beatpath to Bob is stronger than Bob's strongest beatpath to Alice (or if Bob has no beatpath to Alice). The winner is any candidate who is not beaten by any other candidate via a beatpath-win.
This definition of a beatpath-win istransitive: in other words, if Alice has a beatpath-win over Bob, and Bob has a beatpath-win over Charlie, Alice has a beatpath-win over Charlie.[1]: §4.1 As a result, the Schulze method is aCondorcet method, providing a full extension of themajority rule to any set of ballots.
The Schulze winner can also be constructed iteratively, using a defeat-dropping method:
The winner is the only candidate left at the end of the procedure.
In the following example 45 voters rank 5 candidates.
| Number of voters | Order of preference |
|---|---|
| 5 | ACBED |
| 5 | ADECB |
| 8 | BEDAC |
| 3 | CABED |
| 7 | CAEBD |
| 2 | CBADE |
| 7 | DCEBA |
| 8 | EBADC |
The pairwise preferences have to be computed first. For example, when comparingA andB pairwise, there are5+5+3+7=20 voters who preferA toB, and8+2+7+8=25 voters who preferB toA. So and. The full set of pairwise preferences is:

| 20 | 26 | 30 | 22 | ||
| 25 | 16 | 33 | 18 | ||
| 19 | 29 | 17 | 24 | ||
| 15 | 12 | 28 | 14 | ||
| 23 | 27 | 21 | 31 |
The cells for d[X, Y] have a light green background if d[X, Y] > d[Y, X], otherwise the background is light red. There is no undisputed winner by only looking at the pairwise differences here.
Now the strongest paths have to be identified. To help visualize the strongest paths, the set of pairwise preferences is depicted in the diagram on the right in the form of adirected graph. An arrow from the node representing a candidate X to the one representing a candidate Y is labelled with d[X, Y]. To avoid cluttering the diagram, an arrow has only been drawn from X to Y when d[X, Y] > d[Y, X] (i.e. the table cells with light green background), omitting the one in the opposite direction (the table cells with light red background).
One example of computing the strongest path strength is p[B, D] = 33: the strongest path from B to D is the direct path (B, D) which has strength 33. But when computing p[A, C], the strongest path from A to C is not the direct path (A, C) of strength 26, rather the strongest path is the indirect path (A, D, C) which has strength min(30, 28) = 28. Thestrength of a path is the strength of its weakest link.
For each pair of candidates X and Y, the following table shows the strongest path from candidate X to candidate Y in red, with the weakest link underlined.
| 28 | 28 | 30 | 24 | ||
| 25 | 28 | 33 | 24 | ||
| 25 | 29 | 29 | 24 | ||
| 25 | 28 | 28 | 24 | ||
| 25 | 28 | 28 | 31 |
Now the output of the Schulze method can be determined. For example, when comparingA andB, since, for the Schulze method candidateA isbetter than candidateB. Another example is that, so candidate E isbetter than candidate D. Continuing in this way, the result is that the Schulze ranking is, andE wins. In other words,E wins since for every other candidate X.
Computation of the strongest path strengths is thewidest path problem. It is a variation of theall-pairs shortest path problem and it can be solved via a variant of theFloyd–Warshall algorithm. The followingpseudocode illustrates the algorithm.
# Input: d[i,j], the number of voters who prefer candidate i to candidate j.# Output: p[i,j], the strength of the strongest path from candidate i to candidate j.for i from 1 to C for j from 1 to C if i ≠ j then p[i,j] := d[i,j] - d[j,i]for k from 1 to C for i from 1 to C if i ≠ k then for j from 1 to C if j ≠ k and j ≠ i then p[i,j] := max (p[i,j], min (p[i,k], p[k,j]))
This algorithm isefficient and hasrunning timeO(C3) whereC is the number of candidates.
When allowing users to have ties in their preferences, the outcome of the Schulze method naturally depends on how these ties are interpreted in defining d[*,*]. Two natural choices are that d[A, B] represents either the number of voters who strictly prefer A to B (A>B), or themargin of (voters with A>B) minus (voters with B>A). But no matter how theds are defined, the Schulze ranking has no cycles, and assuming theds are unique it has no ties.[2]
Although ties in the Schulze ranking are unlikely, they are possible. Schulze's original paper recommended breaking ties byrandom ballot.[2]
There is another alternative way todemonstrate the winner of the Schulze method. This method is equivalent to the others described here, but the presentation is optimized for the significance of steps beingvisually apparent as a human goes through it, not for computation.
Here is a margins table made from the above example. Note the change of order used for demonstration purposes.
| E | A | C | B | D | |
|---|---|---|---|---|---|
| E | 1 | −3 | 9 | 17 | |
| A | −1 | 7 | −5 | 15 | |
| C | 3 | −7 | 13 | −11 | |
| B | −9 | 5 | −13 | 21 | |
| D | −17 | −15 | 11 | −21 |
The first drop (A's loss to E by 1 vote) does not help shrink the Schwartz set.
| E | A | C | B | D | |
|---|---|---|---|---|---|
| E | 1 | −3 | 9 | 17 | |
| A | −1 | 7 | −5 | 15 | |
| C | 3 | −7 | 13 | −11 | |
| B | −9 | 5 | −13 | 21 | |
| D | −17 | −15 | 11 | −21 |
So we get straight to the second drop (E's loss to C by 3 votes), and that shows us the winner, E, with its clear row.
| E | A | C | B | D | |
|---|---|---|---|---|---|
| E | 1 | −3 | 9 | 17 | |
| A | −1 | 7 | −5 | 15 | |
| C | 3 | −7 | 13 | −11 | |
| B | −9 | 5 | −13 | 21 | |
| D | −17 | −15 | 11 | −21 |
This method can also be used to calculate a result, if the table is remade in such a way that one can conveniently and reliably rearrange the order of the candidates on both the row and the column, with the same order used on both at all times.
The Schulze method satisfies the following criteria:
Since the Schulze method satisfies the Condorcet criterion, it automatically fails the following criteria:
Likewise, since the Schulze method is not adictatorship and is aranked voting system (notrated),Arrow's Theorem implies it failsindependence of irrelevant alternatives, meaning it can be vulnerable to thespoiler effect in some rare circumstances. The Schulze method also failsPeyton Young's criterion ofLocal Independence of Irrelevant Alternatives.
The following table compares the Schulze method with other single-winner election methods:
Criterion Method | Majority winner | Majority loser | Mutual majority | Condorcet winner | Condorcet loser | Smith | Smith-IIA | IIA/LIIA | Cloneproof | Monotone | Consistency | Participation | Reversal symmetry | Homogeneity | Later-no-harm | Later-no-help | No favorite betrayal | Ballot type |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| First-past-the-post | Yes | No | No | No | No | No | No | No | No | Yes | Yes | Yes | No | Yes | Yes | Yes | No | Single mark |
| Anti-plurality | No | Yes | No | No | No | No | No | No | No | Yes | Yes | Yes | No | Yes | No | No | Yes | Single mark |
| Two round system | Yes | Yes | No | No | Yes | No | No | No | No | No | No | No | Yes | Yes | Yes | No | Single mark | |
| Instant-runoff | Yes | Yes | Yes | No | Yes | No | No | No | Yes | No | No | No | No | Yes | Yes | Yes | No | Ranking |
| Coombs | Yes | Yes | Yes | No | Yes | No | No | No | No | No | No | No | Yes | No | No | Yes | Ranking | |
| Nanson | Yes | Yes | Yes | Yes | Yes | Yes | No | No | No | No | No | No | Yes | No | No | No | Ranking | |
| Baldwin | Yes | Yes | Yes | Yes | Yes | Yes | No | No | No | No | No | No | No | No | No | No | Ranking | |
| Tideman alternative | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | No | No | No | No | No | No | No | Ranking | |
| Minimax | Yes | No | No | Yes | No | No | No | No | No | Yes | No | No | No | No | No | No | Ranking | |
| Copeland | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No | Yes | No | No | No | No | No | Ranking | ||
| Black | Yes | Yes | No | Yes | Yes | No | No | No | No | Yes | No | No | Yes | Yes | No | No | No | Ranking |
| Kemeny | Yes | Yes | Yes | Yes | Yes | Yes | Yes | LIIA Only | No | Yes | No | No | Yes | Yes | No | No | No | Ranking |
| Ranked pairs | Yes | Yes | Yes | Yes | Yes | Yes | Yes | LIIA Only | Yes | Yes | No | No | Yes | Yes | No | No | No | Ranking |
| Schulze | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | No | No | Yes | Yes | No | No | No | Ranking |
| Borda | No | Yes | No | No | Yes | No | No | No | No | Yes | Yes | Yes | Yes | Yes | No | Yes | No | Ranking |
| Bucklin | Yes | Yes | Yes | No | No | No | No | No | No | Yes | No | No | No | Yes | No | Yes | No | Ranking |
| Approval | Yes | No | No | No | No | No | No | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Approvals |
| Majority Judgement | No | No | No | No | No | No | No | Yes | Yes | Yes | No | No | Yes | No | Yes | Yes | Scores | |
| Score | No | No | No | No | No | No | No | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Scores |
| STAR | No | Yes | No | No | Yes | No | No | No | No | Yes | No | No | No | No | No | No | Scores | |
| Quadratic | No | No | No | No | No | No | No | No | No | Yes | Yes | N/A | N/A | No | Credits | |||
| Random ballot | No | No | No | No | No | No | No | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Single mark | ||
| Sortition | No | No | No | No | No | No | No | Yes | No | Yes | Yes | N/A | Yes | Yes | Yes | None | ||
| Table Notes |
| |||||||||||||||||
Ranked pairs is anotherCondorcet method which is very similar to Schulze's rule, and typically produces the same outcome. There are slight differences, however. The main difference between the beatpath method andranked pairs is that Schulze retains behavior closer tominimax. Say that theminimax score of a setX of candidates is the strength of the strongest pairwise win of a candidate A ∉X against a candidate B ∈X. Then the Schulze method, but not ranked pairs, guarantees the winner is always a candidate of the set with minimum minimax score.[2]: §4.8 This is the sense in which the Schulze method minimizes the largest majority that has to be reversed when determining the winner.
On the other hand, Ranked Pairs minimizes the largest majority that has to be reversed to determine the order of finish.[5] In other words, when Ranked Pairs and the Schulze method produce different orders of finish, for the majorities on which the two orders of finish disagree, the Schulze order reverses a larger majority than the Ranked Pairs order.
The Schulze method was developed by Markus Schulze in 1997. It was first discussed in public mailing lists in 1997–1998[6] and in 2000.[7] In 2011, Schulze published the method in the academic journalSocial Choice and Welfare.[2]

The Schulze method is used by the city ofSilla, Spain for all referendums.[8][9][10][11] It is also used by the cities ofTurin andSan Donà di Piave in Italy and by theLondon Borough of Southwark through their use of the WeGovNow platform, which in turn uses theLiquidFeedback decision tool.[12][13]
Schulze was adopted by thePirate Party of Sweden (2009),[14] and thePirate Party of Germany (2010).[15] TheBoise, Idaho chapter of theDemocratic Socialists of America in February chose this method for their first special election held in March 2018.[16]
It is used by theInstitute of Electrical and Electronics Engineers, by theAssociation for Computing Machinery, and byUSENIX[citation needed] through their use of the HotCRP decision tool.[jargon]
Organizations which currently use the Schulze method include:
In 2008, Camps et. al devised a method that, while ranking candidates in the same order of finish as Schulze, also provides ratings indicating the candidates' relative strength of victory.[90]
S'utilitzarà el sistema de recompte Schulze perquè és un sistema de vot preferencial que compleix amb el criteri de Condorcet, la qual cosa permet identificar l'opció que, comparada amb qualsevol de les altres, és preferida per la majoria absoluta dels votants[The Schulze counting system will be used because it is a preferential voting system that complies with the Condorcet criterion, which makes it possible to identify the option that, compared to any other option, is preferred by the absolute majority of voters]
S'utilitzarà el sistema de recompte Schulze perquè és un sistema de vot preferencial que compleix amb el criteri de Condorcet, la qual cosa permet identificar l'opció que, comparada amb qualsevol de les altres, és preferida per la majoria absoluta dels votants.[The Schulze counting system will be used because it is a preferential voting system that complies with the Condorcet criterion, which makes it possible to identify the option that, compared to any of the others, is preferred by the absolute majority of voters.]
Ha sido un rotundo éxito organizativo que repetiremos y que se gestó desde meses antes, desarrollando un know-how propio y siendo pioneros en la aplicación del sistema de recuento Condorcet-Schulze para las preguntas con respuesta de ordenación preferencial. Logramos un récord impresionante de participación que pulverizó todas las marcas existentes en procesos similares en municipios españoles (la media usual ronda el 10% de participación mientras que en Silla alcanzamos el 27%).[It has been a resounding organizational success that we will repeat, developed over months with our own know-how, and pioneering the application of the Condorcet-Schulze counting system for questions with preferential ranking responses. We achieved an impressive participation record that shattered all existing benchmarks in similar processes in Spanish municipalities (the usual average is around 10% participation, while in Silla, we reached 27%).]
WeGovNow! … is an OpenStreetMap based E-Government solution to be validated and evaluated in London Southwark (UK), Turin (Italy) and San Donà di Piave (Metropolitan City of Venice, Italy)
To determine the winner from a set of alternatives, LiquidFeedback implements Clone-Proof Schwartz Sequential Dropping, known as the Schulze Method.