Rent Division
Setting
We want to faily distribute rooms and rents amongst roommates.
Roommates (players):
: rent price for the whole apartment
; player βs value for room such that
The sum of the rents across all rooms must be equal to the rent of the apartment, otherwise you donβt think the apartment is worth it (and if your value is more, youβlll end up paying more per room, so. you should just scale everything down to reach a sum of )
And then, siimlar to auctions, our mechanism needs to determine 2 things:
Who gets what? In this case, a room allocation , i.e., each player should be assigned a room.
Who pays what? Rent division such that where is rent for room (and so, the player assigned to room must pay ).
Note that we canβt just auction off the rooms one by one, because then players might not be truthful, and it might not lead to an envy-free allocation (and it wouldnβt even maximize utility).
Also, note that the requirement that means that players canβt encode views such as βI prefer room 1, but canβt afford to pay more than $500 for itβ. And it also does not take into account that some players might have more disposable income than others, i.e,. some might be willing to pay more for their favorite rooms such that (but this is not allowed).
Envy-Free Outcome
In this context of rent division, the definition of envy-free is basically the same, but it needs to take into account the price that each person is paying. That is, each player should think βI do not prefer your room for the price youβre being charged, to my room for the price iβm being charged.β
Another easier way to look at it is that: you would not want to change your position for anyone elseβs position (which is what envy-free means even in english).
More concretely, if the outcome is then, for all , we must have: . Note that we assume players have a quasilinear utility function (i.e., getting $x gives you the same marginal utility no matter how much money you currently have).
EF Allocation
Itβs natural to ask: does an EF allocation even exist??
And it turns out that the answer is YES, and can be efficiently computed. But such an EF allocation is not unique.
In fact, this algorithm is an example of a provably fair solution β this means that given the outcome, if anyone objects, you can easily prove / convince him that heβs wrong (in an economic sense, he wouldnβt be better off swapping places with anyone else).
Also, this mechanism guarantees efficiency in the economic sense (Pareto optimality) β it is impossible to find another assignment of rooms to players that benefits a roommate without making another player worse off.
The general framework for coming up with an EF allocation is a 2 step procedure:
Deciding who gets what, i.e., room assignment
Compute a socially optimal allocation of players to rooms, by using weighted-MCBM (Maximum Cardinality Bipartite Matching) β this step that can have multiple room assignments that all yield the same social welfare.
Decide who pays what, i.e,. rent division.
Find an EF price vector using linear programming β you have a set of constraints and you want to maximize a function
Both weighted-MCBM and LP can be solved in polynomial time.
Beyond EF
Butβ¦ in some cases, even EF is not enough (pun intended). What we mean by this is that EF is not enough to for the division to feel βfairβ. So, we want to capture some other notions of fairness too.
Consider the following example:
Itβs pretty clear who gets what, but what if Alice pays the entire rent of $3000? This is still envy-free (since Alice wouldn't envy anyone because she has value = 0 for the other two rooms, and of course, Bob and Claire are more than happy with this since they don't have to pay for anything). Butβ¦ it still feels like Bob and Claire are much happier than Alice in this scenario (both of them have utility = 2000, and Alice has utility = 0).
Note that at this point, the rooms have already been allocated, and weβre only trying to play around with how much rent each person pays to make it as βevenβ as possible.
So, we want the playersβ utilities to be βclose to each otherβ, while also satisfying EF (of course, we donβt want to lose the very nice EF property β weβre trying to make it even stronger). There are two similar ways we can quantify this:
Equitability (under EF constraint): Define to be the maximum difference in the utilities of any 2 players under the rent division . Then, weβre trying to find to minimize such that is EF. This is sort of trying to distribute the utility as equitably as possible.
Maximin (under EF constraint): Basically egalitarian, trying to maximize the minimum utility of any player. Formally, and then weβre trying to find to maximize such that is EF. So, the least happy person should be as happy as possible.
Luckily for usβ¦
Under EF-constraints, there is a unique maximin price vector, and it is also equitable
which means that we donβt have to choose between the two notions of fairness β we can have both satisfied simultaneously!
However, note that there exists equitable price vectors that are not maximin. (For , they are equivalent though).
And it turns out that humans do care about equitability / maximin in addition to just envy-freeness, as demonstrated by a study conducted by spliddit.org
Last updated