Distributed Voting: Difference between revisions

From electowiki
Content added Content deleted
No edit summary
(Managing votes without 0 points, managing tie during the count, about Equal Vote)
Line 19: Line 19:
The remaining candidates are the winners. The sum of the points of the remaining candidates indicates the % of victory.
The remaining candidates are the winners. The sum of the points of the remaining candidates indicates the % of victory.


==Procedure specification==
===Example normalization of a vote===

===Example normalization of a single vote===


Given an initial vote of this type, with candidates A,B,C,D,E:
Given an initial vote of this type, with candidates A,B,C,D,E:


A[0], B[1], C[3], D[6], E[90]
A[0] B[1] C[3] D[6] E[90] : E is removed

E is eliminated:

A[0], B[10], C[30], D[60]


A[0] B[10] C[30] D[60] : D is removed
D is eliminated:


A[0], B[25], C[75]
A[0] B[25] C[75] : C is removed


A[0] B[100]
C is eliminated:

A[0], B[100]


===Normalization of the vote===
===Normalization of the vote===
Line 59: Line 55:
===Managing votes with 0 points===
===Managing votes with 0 points===


If the only candidate (C) with points is eliminated from a vote (A[0], B[0], C[100]), you can proceed in 2 ways:
If the only candidate C with points is eliminated from a vote like this A[0] B[0] C[100], you can proceed in 2 ways:


# The vote is excluded from the count (A[0], B[0]).
# The vote is excluded from the count: A[0] B[0].
# The points are divided equally between the remaining candidates with 0 points (A[50], B[50]).
# The points are divided equally between the remaining candidates with 0 points: A[50] B[50].


Using procedure 2 you get a vote that:
Using procedure 2 you get a vote that:
Line 71: Line 67:


For the reasons indicated above, it’s strongly discouraged to use procedure 2.
For the reasons indicated above, it’s strongly discouraged to use procedure 2.

===Managing votes without 0 points===

If the only candidate C with 0 points is eliminated from a vote like this A[80] B[20] C[0], there are 2 forms that the vote can take:

# honest form: A[80] B[20]
# tactical form: A[100] B[0]

It's recommended to use the honest form, also because the vote from the beginning may not have candidates with 0 points (possible case).

===Managing tie during the count===

Cases of parity can occur during counting, as in the following example:

* Vote 1: A[50] B[25] C[25]
* Vote 2: A[50] B[25] C[25]
* Sum of votes: A[100] B[50] C[50]

In this case, the worst candidate is both B and C so you have to eliminate them simultaneously. The amount of points to be redistributed will be the sum of the points that had B and C (100 in the example).

==Other properties==


===Simplified voting writing===
===Simplified voting writing===
Line 91: Line 108:


The complexity in writing the vote adapts to the voter, and it’s also noted that, if 101 or 99 points are mistakenly distributed, the vote will still be valid.
The complexity in writing the vote adapts to the voter, and it’s also noted that, if 101 or 99 points are mistakenly distributed, the vote will still be valid.

===About Equal Vote===

Given a score with points distributed in the following order: A[50] B[30] C[15] D[5] E[0]

you can always get a counter-balancing by exchanging the order of the points: A[0] B[5] C[15] D[30] E[50]

Applying the count only considering the 2 votes defined above, you will always obtain equality between the two candidates to the extremes of the vote (in this example, equality between A and E).

These 2 votes in the end support only 2 candidates out of the initial 5, so adding those 2 votes to a tally with other votes, can change the results of the tally.


==Forum Debate==
==Forum Debate==

Revision as of 15:43, 18 May 2020

Distributed Voting (DV) is a Single-Winner and Multi-Winner Cumulative voting system.

Procedure

DV procedure
DV procedure

Voting

Each voter has 100 points to distribute among the candidates according to his preferences.

All candidates in the vote have 0 points by default.

Counting the votes

  1. The point for each candidate are summed and the one with the lowest sum is eliminated.
  2. In each individual vote, the points of the eliminated candidate are removed and the vote is normalized, so that it has 100 points again.

By repeating the process from the beginning, a candidate is eliminate each time.

The remaining candidates are the winners. The sum of the points of the remaining candidates indicates the % of victory.

Procedure specification

Example normalization of a single vote

Given an initial vote of this type, with candidates A,B,C,D,E:

A[0] B[1] C[3] D[6] E[90] : E is removed

A[0] B[10] C[30] D[60] : D is removed

A[0] B[25] C[75] : C is removed

A[0] B[100]

Normalization of the vote

e := value of the candidate eliminated from the vote.

v0 := old value of candidate X.

v1 := new value of candidate X.

Failed to parse (unknown function "\begin{equation}"): {\displaystyle \begin{equation} v1=\frac{v0}{1-\frac{e}{100}} \end{equation}}

In an electronic system it’s possible to divide by 100 all the points present in the initial votes, and use the following simplified formula throughout the counting process:

Failed to parse (unknown function "\begin{equation}"): {\displaystyle \begin{equation} v1=\frac{v0}{1-e} \end{equation}}

During counting, points can be represented in decimal form.

Managing votes with 0 points

If the only candidate C with points is eliminated from a vote like this A[0] B[0] C[100], you can proceed in 2 ways:

  1. The vote is excluded from the count: A[0] B[0].
  2. The points are divided equally between the remaining candidates with 0 points: A[50] B[50].

Using procedure 2 you get a vote that:

  • cannot affect the victory of candidates who received the same points.
  • reduces the distance between the candidates present in it, and this can affect a possible process of assigning seats.
  • it can be considered not in accordance with the interests of the voter who, to those remaining candidates, had not awarded points.

For the reasons indicated above, it’s strongly discouraged to use procedure 2.

Managing votes without 0 points

If the only candidate C with 0 points is eliminated from a vote like this A[80] B[20] C[0], there are 2 forms that the vote can take:

  1. honest form: A[80] B[20]
  2. tactical form: A[100] B[0]

It's recommended to use the honest form, also because the vote from the beginning may not have candidates with 0 points (possible case).

Managing tie during the count

Cases of parity can occur during counting, as in the following example:

  • Vote 1: A[50] B[25] C[25]
  • Vote 2: A[50] B[25] C[25]
  • Sum of votes: A[100] B[50] C[50]

In this case, the worst candidate is both B and C so you have to eliminate them simultaneously. The amount of points to be redistributed will be the sum of the points that had B and C (100 in the example).

Other properties

Simplified voting writing

To make the writing of the vote more comprehensible and simple, the voter can be left with almost complete freedom in the use of numerical values or only X.

Before the counting process, the grades will be normalized to 100-point grades, where the Xs are considered as equal weight values.

Examples of how a vote can be written by the voter and subsequently, in the counting, converted into 100 points:

X,0,0,0,0        →        100,0,0,0,0

X,X,X,X,0       →        25,25,25,25,0

4,3,2,1,0         →        40,30,20,10,0

40,6,3,1,0       →        80,12,6,2,0

101,0,0,0,0     →        100,0,0,0,0

The complexity in writing the vote adapts to the voter, and it’s also noted that, if 101 or 99 points are mistakenly distributed, the vote will still be valid.

About Equal Vote

Given a score with points distributed in the following order: A[50] B[30] C[15] D[5] E[0]

you can always get a counter-balancing by exchanging the order of the points: A[0] B[5] C[15] D[30] E[50]

Applying the count only considering the 2 votes defined above, you will always obtain equality between the two candidates to the extremes of the vote (in this example, equality between A and E).

These 2 votes in the end support only 2 candidates out of the initial 5, so adding those 2 votes to a tally with other votes, can change the results of the tally.

Forum Debate

  • "Sequential Elimination systems". The Center for Election Science. 2020-01-27. Retrieved 2020-02-19.
  • "Best single-winner Voting System (in full honest context)". The Center for Election Science. 2020-01-29. Retrieved 2020-02-19.
  • "Distributed Voting (DV) vs Range Voting (RV)". The Center for Election Science. 2020-05-12. Retrieved 2020-05-15.