# AOS4 - A2021: Robust MAVT tutorial * Performance table |Alternative | Dimension 1 | Dimension 2 | Dimension 3| |---|---|---|---| | $x_1$ | 10 | 50 | 70 | | $x_2$ | 34 | 56 | 84 | | $x_3$ | 40 | 90 | 45 | | $x_4$ | 30 | 10 | 70 | | $x_5$ | 60 | 80 | 45 | | $x_6$ | 49 | 56 | 54 | | $x_7$ | 84 | 12 | 45 | | $x_8$ | 20 | 40 | 78 | | $x_9$ | 50 | 80 | 30 | | $x_{10}$| 12 | 98 | 12 | | $x_{11}$| 39 | 65 | 50 | |$x_{12}$| 10 | 78 | 32 | * Preference model: Weighted Sum... again! $g_w(x) = w_1.g_1(x) + w_2.g_2(x) + w_3.g_3(x)$ with $w_1 + w_2 + w_3 = 1$ et $w_i \ge 0$, $i \in\{ 1,2,3\}$. * Preference information: $PI = \{PI_1, PI_2, PI_3, PI_4\}$ $PI_1$: "$x_1$ is at least as attractive than $x_4$", $PI_2$: "$x_5$ is not worse than $x_3$, $PI_3$: "$x_2$ is at least as good as $x_6$", $PI_4$: "None of the three dimensions can contribute more than half the total score" * Questions 1. Draw the *parameter space* $(w_1, w_2)$ 2. In this parameter space, draw each constraint $PI_j, j \in\{ 1,2,3,4\}$ 3. Draw the line $x_5 \sim x_2$. Is $x_5$ necessarily/possibly/impossibly preferred to $x_2$? 4. Find the coordinates $w^\star_k$ of the vertices $A_k, k\in\{ 1,2,3,4,5\}$ of the polygon $\Omega_{PI}$ 5. Show that $x$ is necessarily preferred to $y$ iff $x$ is preferred to $y$ for all $w_k, k\in\{ 1,2,3,4,5\}$ 6. Write a program that takes as an input a list $X=[x_1,...,x_n]$ of performance vectors in $[0,100]^3$, a set of preference statements $PI \subset X^2$ and returns the binary relation over $X$ traducing necessary preference. It could rely on solving a LP with objective function $\max g_w(x) - g_w(y)$.