Definition
Plurality
In COMSOC, Plurality is a voting rule where every voter gives one point to their most preferred alternative and no points to all other alternatives.
Let
be the set of alternatives, and let
be a preference profile. The plurality score of an alternative is
Plurality returns the alternatives with maximum plurality score:
Mechanism
First-place counting
Plurality only reads the first position of each ranking. If a voter ranks
then receives one plurality point, while , , and receive none from that voter.
Example
Course profile
In the lecture profile, the voters rank the four alternatives as follows:
voters ranking first-ranked alternative Hence
Since has the highest plurality score, is the unique plurality winner.
Properties
Uses little preference information
Plurality is simple, but it ignores all information below the first position. This makes it easy to compute, but it can be sensitive to strategic behaviour because lower-ranked comparisons do not affect the score.
Polynomial-time winner determination
To determine whether a given alternative is a plurality winner, compute the plurality score of every alternative and compare with the maximum score.
Thus plurality winner determination is solvable in polynomial time.