Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Computer Science Coding Language: - Python ( functions, basic and advanced Python operations, file handling, and error handling.) Here, for example, the value of agent

Computer Science

Coding Language: - Python ( functions, basic and advanced Python operations, file handling, and error handling.)

image text in transcribedimage text in transcribedHere, for example, the value of agent 5 for alternative 2 is 0.950928. You can access the same table in the voting.xlsx file. A screenshot of the .xlsx file is below.

image text in transcribed

image text in transcribedimage text in transcribed

Continuous Assessment Task 3 - Voting Rules Background: In this assignment you will design and implement several voting rules. In a voting setting, we have a set of n agents and a set of m alternatives. Every agent has a preference ordering > where a means that the agent prefers alternative a to alternative B. A preference profile is a set of n preference orderings, one for every agent. For example, if we have a voting setting with 4 agents and 4 alternatives, one possible preference profile could be the following: Agent 1:a >7> B> 8 Agent 2: a Boy Agent 3:7 Brass Agent 4: 8 >a> > A voting rule is a function that takes as input the preferences of a set of agents and outputs a winning alternative. Consider the following voting rules: Voting Rules: Dictatorship: An agent is selected, and the winner is the alternative that this agent ranks first. For example, if the preference ordering of the selected agent is a >7>B> 8, then the winner is alternative a. Plurality: The winner is the alternative that appears the most times in the first position of the agents' preference orderings. In the case of a tie, use a tie-breaking rule to select a single winner. Veto: Every agent assigns 0 points to the alternative that they rank in the last place of their preference orderings, and 1 point to every other alternative. The winner is the alternative with the most number of points. In the case of a tie, use a tie-breaking rule to select a single winner. Borda: Every agent assigns a score of 0 to the their least-preferred alternative (the one at the bottom of the preference ranking), a score of 1 to the second least-preferred alternative, ..., and a score of m - 1 to their favourite alternative. In other words, the alternative ranked at position j receives a score of m - j. The winner is the alternative with the highest score. In the case of a tie, use a tie-breaking rule to select a single winner. Harmonic: Every agent assigns a score of th to the their least-preferred alternative (the one at the bottom of the preference ranking), a score of mi to the second least-preferred alternative, ... , and a score of 1 to their favourite alternative. In other words, the alternative ranked at position j receives a score of 3. The winner is the alternative with the highest score. In the case of a tie, use a tie-breaking rule to select a single winner. Single Transferable Vote (STV): The voting rule works in rounds. In each round, the alternatives that appear the least frequently in the first position of agents' rankings are removed, and the process is repeated. When the final set of alternatives is removed (one or possibly more), then this last set is the set of possible winners. If there are more than one, a tie-breaking rule is used to select a single winner. m-1 Example: Consider the preference profile of the example above. In the first round alternative (\delta is removed) and we get the following new preference profile: Agent 1: a >y>B Agent 2: a > B> Agent 3:7 > B>a Agent 4: Bay In the second round, bothy and B are removed. In the third round, a is removed, and a is the winner. Tie-Breaking Rules: We will consider the following three tie-breaking rules. Here, we assume that the alternatives are represented by integers. max: Among the possible winning alternatives, select the one with the highest number. min: Among the possible winning alternatives, select the one with the lowest number. agent i: Among the possible winning alternatives, select the one that agent i ranks the highest in his/her preference ordering. Objective: Task 1: Implement a function called generatePreferences(values) which inputs a set of numerical values that the agents have for the different alternatives and outputs a preference profile. In particular: The input values to the generatePreferences function is a worksheet corresponding to an xlsx file. Note: By worksheet, it is meant what we have seen as a worksheet in class, meaning an openpyxl worksheet. Note that the input to the function should not be an xlsx file or a workbook. The rows of the file correspond to agents and the columns correspond to alternatives. The value of a cell i, jis a numerical value that signifies how happy the agent would be if that alternative were to be selected. We refer to that value as the valuation of the agent. An example of such a worksheet is the following: 0.296178 0.559323 0.59096 0.555108 0.836279 0.793427 0.434362 0.455792 0.51958 0.344285 0.950928 1.509148 0.033033 0.770423 0.731606 0.543484 0.871996 0.700621 0.758968 0.770423 0.767473 0.396021 0.852851 0.659306 A B C D 1 0.296178 0.434362 0.033033 0.758968 2 0.559323 0.455792 0.770423 0.770423 3 0.59096 0.51958 0.731606 0.767473 4 0.555108 0.344285 0.543484 0.396021 5 0.836279 0.950928 0.871996 0.852851 6 0.793427 1.509148 0.700621 0.659306 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 Sheet1 Ready The output (the return) of the generate Preferences function is a dictionary where the keys {1,2,...,n} are the agents and the values are lists that correspond to the preference orderings of those agents. In particular, a value is a list of numbers [x, y, z, ... ) denoting that the agent prefers x to y, y to z and so on. These lists have to be consistent with the valuations that are given as input the following sense: . If the valuation of an agent for alternative j is larger than the valuation for alternative k, then j should appear before k in the list. . If the valuation of an agent for alternative j is the same as the valuation for alternative k, then j should appear before k in the list if j>k, and otherwise k should appear before in the list. In other words, in case of ties in the numerical values, alternatives with larger indices are considered to be more preferred by the agent. . For the table above, the corresponding dictionary would then be: { 1: [4, 2, 1, 3], 2: [4, 3, 1, 2], 3: [4, 3, 1, 2], 4:[1, 3, 4, 21, 5:[2, 3, 4, 1] 6: [2, 1, 3, 4] } Task 2: Implement the following functions: dictatorship(preference Profile, agent) -> int The function should input a preference profile represented by a dictionary as described above and an integer corresponding to an agent. The return of the function should be the winner according to the Dictatorship rule described above. The function should include error handling in case the inputted integer does not correspond to an agent (but not necessarily if it is not an integer). scoringRule(preferences, scoreVector, tieBreak): -> int The function should input a preference profile represented by a dictionary as described above. a score vector of length m, i.e., equal to the number of alternatives, i.e., a list of length m containing positive floating numbers. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). For every agent, the function assigns the highest score in the scoring vector to the most preferred alternative of the agent, the second highest score to the second most preferred alternative of the agent and so on, and the lowest score to the least preferred alternative of the agent. In the end, it returns the alternative with the highest total score, using the tie-breaking option to distinguish between alternatives with the same score. The function should contain error-handling code for the case when the length of the scoring vector is not m. In that case, the message "Incorrect input" should be printed and the function should return False. plurality (preferences, tieBreak) -> int The function should input . a preference profile represented by a dictionary as described above. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the winner of the Plurality rule as described above, using the tie-breaking option to distinguish between possible winners. veto (preferences, tieBreak) -> int The function should input . a preference profile represented by a dictionary as described above. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the winner of the Veto rule as described above, using the tie-breaking option to distinguish between possible winners. borda (preferences, tieBreak) -> int The function should input a preference profile represented by a dictionary as described above. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the winner of the Borda rule as described above, using the tie-breaking option to distinguish between possible winners. harmonic (preferences, tieBreak) -> int The function should input a preference profile represented by a dictionary as described above. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the winner of the Harmonic rule as described above, using the tie-breaking option to distinguish between possible winners. STV (preferences, tieBreak) -> int The function should input a preference profile represented by a dictionary as described above. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the winner of the Single Transferable Vote rule as described above, using the tie-breaking option to distinguish between possible winners. rangeVoting (values, tieBreak) -> int The function should input a worksheet corresponding to an xlsx file, see Task 1 for the details. an option for the tie-breaking among possible winners (see section "Tie-Breaking" below). The function should return the alternative that has the maximum sum of valuations, i.e., the maximum sum of numerical values in the xlsx file, using the tie-breaking option to distinguish between possible winners. Tie-breaking: For the tieBreak input of these functions, the possible options are the following: tieBreak = "max". In that case the max tie-breaking rule should be applied (see above). tieBreak = "min". In that case the min tie-breaking rule should be applied (see above). . tieBreak is an integer between 1 and n: In that case the agent i rule should be applied, with i being the inputted integer (see above). The function should include error handling in case the inputted integer does not correspond to an agent

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Databases Object Oriented Deductive Hypermedia Technologies

Authors: Kamran Parsaye, Mark Chignell, Setrag Khoshafian, Harry Wong

1st Edition

0471503452, 978-0471503453

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago